Page 49 of 96 FirstFirst ... 39474849505159 ... LastLast
Results 481 to 490 of 955
  1. #481
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Posts
    79
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    [Sorry if this is a dumb question, but the only feeds I am familiar with are breakfast, lunch and dinner. ]

    I have an affiliate program and today an affiliate asked me to supply him a datafeed. Is this the mod that I need in order to do that?

  2. #482
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by countrycharm View Post
    I installed this Module a while back and have not being keeping up with the thread since I have had no problems with it until today. Sorry about being lazy. Thank you for the fix.
    Very sorry that does not allow for the issuance of an updated version

  3. #483

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by wtashby View Post
    After posting this error, I decided to search this thread, post by post. I saw where this issue has been addressed more than ANY other issue concerning this mod.
    The so called answer has been that there are blank spaces, or rogue carraige returns, or empty expansive sub-space in the delta quadrant.

    Looking at all of the files in the MOST RECENTLY available release, every one has been updated with
    PHP Code:
    // EOF 
    in order to eleviate the extra empty space problem. All of the other answers have been ambigous at best.

    However, non of this has yet to solve the issue for a lot of us, (me,me,me ). I have not seen where one single person that posted this problem has posted that it was resolved.

    Someone out there has had this problem and MUST have fixed it. Someone out there MUST know the answer. Could that someone Please post the Real answer here?

    Andrew, I love all the mods of yours that I use, and I wan't to use this one very much. I know I'll love it too, once I can get it working. So please, I am asking you, Please help us fix this problem once and for all, completely, and clearly, so no one else will ever have to go through this again.

    Thanks,

    Tom
    Quote Originally Posted by a_berezin View Post
    Hi Tom,
    I can not help you because I can not reproduce the error. At all stores, which I serve, no such problems.
    If you give me access to ftp, only then can I help you.
    Quote Originally Posted by wtashby View Post
    Thanks Andrew. Sent you a PM with that info.
    Quote Originally Posted by a_berezin View Post
    Remove 2 spaces from the bottom file includes/languages/english/extra_definitions/silverfish/centercolumn_footer_defines.php
    And now no error.
    Quote Originally Posted by wtashby View Post
    Andrew, you are a GENIUS!!!

    This is why I love using your mods.

    Thank you very much for your help.

    Hi Andrew and Tom, and others who like to help :) Please guide me, i am facing the same problem as Tom mentioned above. I also tried to find centercolumn_footer_defines.php but i failed.

    Please get me out of this hell, thanks in advance

    Regards,
    Muhammad Naeem Sattar
    http://buy92.com
    http://itgenes.com

  4. #484

    Default Re: RSS2 Feed Contribution

    In FF3 I am facing following Error.


    XML Parsing Error: XML or text declaration not at start of entity
    Location: http://www.buy92.com/index.php?main_...&feed=products
    Line Number 3, Column 1:<?xml version="1.0" encoding="iso-8859-1"?>
    ^




    Please help
    Muhammad Naeem Sattar
    http://buy92.com
    http://itgenes.com

  5. #485
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: RSS2 Feed Contribution

    Sorry, but I can not ever find and correct other people's errors.

  6. #486
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Posts
    79
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by chain_man View Post
    OK - I got this working the way it's supposed to.

    Caveat: The changes I made pertain only to my system. The suggestions may lead others to solve some relatively obscure problems, though.

    The root of my problem seemed to be that I have Wordpress integrated into my zen cart, causing me to need 'amp;' prepended to the 'feed=' part of the URL, or else I get invalid page errors. This makes my feed URL look something like:
    "?main_page=rss_feed&amp;feed=featured" instead of the stock "?main_page=rss_feed&feed=featured". (Many thanks to bigjoeed, who posted this discovery on this thread several months ago.)

    The biggest hint that the $feed variable was not populated correctly was that the title of the various feeds that did appear always had mystoredomain:RSS Feed, the generic title. Other stores with feeds had the type of feed included in the title, like mystoredomain:RSS Featured Feed. As this value is loaded based on the feed value, I decided the feed value was not being loaded correctly.

    So I had to change $feed = $_GET['feed']; to $feed = $_GET['amp;feed']; and change $feed_args = substr($feed, $i+1); to $feed_args = substr($feed, $i+5); near the top of extra_functions/rss_feed.php.

    Then I had to change switch($_GET["feed"]) to switch($_GET["amp;feed"]) (about line 128) of pages/rss_feed/header_php.php.

    These changes got the $feed variable capturing the right values.

    But I still could not get 'specials' to process the correct items. What I found was that the program could recognize 'special' but not 'specials' for some reason. So I had to change any place that $feed='specials' occurred to $feed='special' in pages/rss_feed/header_php.php. And add case='special' to the switch statement just below case='specials' in extra_functions/rss_feed.php. (This allows both 'special' and 'specials' to remain in the code).

    Your mileage may vary...
    Thank you, Doug, for figuring this out. I am also having an issue with this mod conflicting with WordPress. When I click on the RSS button in my footer it pulls up the feed to my blog instead of my products. [I know you said this only pertained to your system, but I tried everything else with no luck so I decided to try your suggestions.]

    I've got a working feed (http://www.queerrepublictees.com/ind...;feed=products) but the problem is I can't get the RSS button to point to it.

    I've done exactly what you did:
    • changed $feed = $_GET['feed'] to $feed = $_GET['amp;feed']
    • changed $feed_args = substr($feed, $i+1) to $feed_args = substr($feed, $i+5)
    • changed switch($_GET["feed"]) to switch($_GET["amp;feed"])


    ... but it's still bringing up the blog instead of the products.
    The confusing part is when I hover over the RSS button, in the bottom of my browser I can see:
    http://www.queerrepublictees.com/index.php?main_page=rss_feed&feed=products

    but if I select the button and look at the source code it points to the correct URL:
    http://www.queerrepublictees.com/index.php?main_page=rss_feed&amp;feed=products

    There's got to be something really simple that I am overlooking. If anybody can help I'd be most grateful.

  7. #487
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Hello mnaeemsattar

    The following fixed it for me. You might have a similar thing going on, but with a different file. Or it could be a different issue altogether. But I had the same error message as you for sure.

    http://www.zen-cart.com/forum/showth...055#post613055


  8. #488
    Join Date
    Dec 2005
    Location
    Box Elder, SD
    Posts
    373
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by rlfreshwater View Post
    Thank you, Doug, for figuring this out. I am also having an issue with this mod conflicting with WordPress. When I click on the RSS button in my footer it pulls up the feed to my blog instead of my products. [I know you said this only pertained to your system, but I tried everything else with no luck so I decided to try your suggestions.]

    I've got a working feed (http://www.queerrepublictees.com/ind...;feed=products) but the problem is I can't get the RSS button to point to it.

    I've done exactly what you did:
    • changed $feed = $_GET['feed'] to $feed = $_GET['amp;feed']
    • changed $feed_args = substr($feed, $i+1) to $feed_args = substr($feed, $i+5)
    • changed switch($_GET["feed"]) to switch($_GET["amp;feed"])


    ... but it's still bringing up the blog instead of the products.
    The confusing part is when I hover over the RSS button, in the bottom of my browser I can see:
    http://www.queerrepublictees.com/index.php?main_page=rss_feed&feed=products

    but if I select the button and look at the source code it points to the correct URL:
    http://www.queerrepublictees.com/index.php?main_page=rss_feed&amp;feed=products

    There's got to be something really simple that I am overlooking. If anybody can help I'd be most grateful.
    Check the includes/functions/extra_functions/rss_feed.php for the function rss_feed_link. Make sure the "'feed=' . $feed" is changed to "'amp;feed=' . $feed" there.

  9. #489
    Join Date
    Dec 2005
    Location
    Box Elder, SD
    Posts
    373
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by chain_man View Post
    Check the includes/functions/extra_functions/rss_feed.php for the function rss_feed_link. Make sure the "'feed=' . $feed" is changed to "'amp;feed=' . $feed" there.
    I missed a step or two in my explanation...

    In the includes/functions/extra_functions/rss_feed.php file for the functions rss_feed_link_alternate and rss_feed_link, change the "'feed=' . $feed" to "'amp;feed=' . $feed" there. There are 2 lines in the function rss_feed_link_alternate and 1 line in the function rss_feed_link.

  10. #490
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Posts
    79
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by chain_man View Post
    Check the includes/functions/extra_functions/rss_feed.php for the function rss_feed_link. Make sure the "'feed=' . $feed" is changed to "'amp;feed=' . $feed" there.
    YES! That worked. Thank you, thank you, thank you!!!

 

 
Page 49 of 96 FirstFirst ... 39474849505159 ... LastLast

Similar Threads

  1. Rss2 feed & Ultimate SEO URL
    By Jerry5763837 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 1 Feb 2009, 12:42 PM
  2. RSS2 feed contribution support
    By Woodymon in forum All Other Contributions/Addons
    Replies: 73
    Last Post: 26 Sep 2007, 07:38 AM
  3. How to display Price in Rss2.php ( Rss Feed )
    By anand in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 27 Jan 2007, 10:38 PM
  4. rss2.php rss feed contribution - YAHOO picks up only IMAGE URL?
    By gsh in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 Dec 2006, 05:19 AM
  5. Does rss2 mod also do mailing lists?
    By levander in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 3 Sep 2006, 11:15 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR