Page 31 of 96 FirstFirst ... 2129303132334181 ... LastLast
Results 301 to 310 of 955
  1. #301
    Join Date
    Jul 2007
    Posts
    1
    Plugin Contributions
    0

    Default Nothing but default Feed showing properly?

    Hello,

    I have the plugin installed on our ZenCart site - it shows up properly on all of the pages but doesn't seem to generate the feed itself properly for anything except for the primary 'base' feed.

    For example:

    myzencart/index.php?main_page=rss_feed&feed=new_products

    Shows a blank page, but the base rss_feed page shows the proper feed, ie:

    myzencart/index.php?main_page=rss_feed

    Any ideas why the feed wouldn't be working for any subcategories or other pages other than the base feed url?

  2. #302
    Join Date
    Aug 2007
    Posts
    62
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by craftzombie View Post
    look in includes/templates/template_default/common/html_header.php. Once you make the changes, save the file in includes/templates/your_template/common/html_header.php so that it won't be overridden during a zencart upgrade. (your_template = the name of the template you are using)
    I did that, thanks. It is now set correctly, though I am not sure what exactly it is supposed to do. Thanks.

  3. #303
    Join Date
    Aug 2007
    Posts
    62
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by elishama3 View Post
    I understand from reading the thread that this is due to spaces at the end of certain language files. I went through a whole bunch of them and deleted any spaces at the end, but there are so many I would love it if someone could narrow it down for me. Is it a space at the end of any language file, or certain types?

    Thanks
    I have taken out all the blank lines in all of my language files, all my sidebox files, and a few random others. Still getting the error message.

    Any help here would be much appreciated.

    Again, the error message is: XML Parsing Error: xml declaration not at start of external entity
    Location: http://www.phoenixflightpublications...&feed=products
    Line Number 2, Column 1:<?xml version="1.0" encoding="iso-8859-1"?>

  4. #304
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by elishama3 View Post
    I did that, thanks. It is now set correctly, though I am not sure what exactly it is supposed to do. Thanks.
    Now that it is installed correctly, in Firefox you should see the orange RSS icon in the address bar at the top of the browser. In IE, there should be an orange RSS icon next to your tabs on the right, underneath the address bar.

  5. #305
    Join Date
    Aug 2007
    Posts
    62
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by craftzombie View Post
    Now that it is installed correctly, in Firefox you should see the orange RSS icon in the address bar at the top of the browser. In IE, there should be an orange RSS icon next to your tabs on the right, underneath the address bar.
    Nifty! It is there!

    Is there a way I can configure which feeds I want/don't want? I really only want to have one, maybe two types of feeds for the site.

  6. #306
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by elishama3 View Post
    Nifty! It is there!

    Is there a way I can configure which feeds I want/don't want? I really only want to have one, maybe two types of feeds for the site.
    When I first installed this mod, I figured out how to do that. I only wanted to use the New Products and Specials feeds and I was successful in removing the other ones. When I installed an updated version of the mod, I couldn't for the life of me remember where I made those changes. I haven't really had any time to look around in the files though. When I have time and figure it out, I'll let you know.

    or if anyone else knows.....

  7. #307
    Join Date
    Aug 2007
    Posts
    62
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    BTW, I found two bugs in the includes/classes/rss_feed.php file:
    lines 406-407 are:
    #
    $in[] = '@&(mdash);@i'; $out[] = '?;
    #
    $in[] = '@&(reg);@i'; $out[] = '?';
    but they should be:
    #
    $in[] = '@&(mdash);@i'; $out[] = '?';
    #
    $in[] = '@&(reg);@i'; $out[] = '?';

    and lines 429-430 are:
    #
    $st_in[] = '@<li>@i'; $st_out[] = "\n?.chr(160);
    #
    $st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";
    but they should be:
    #
    $st_in[] = '@<li>@i'; $st_out[] = "\n?.chr(160)";
    #
    $st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";

    hope this helps someone.

  8. #308
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by elishama3 View Post
    BTW, I found two bugs in the includes/classes/rss_feed.php file:
    lines 406-407 are:
    #
    $in[] = '@&(mdash);@i'; $out[] = '?;
    #
    $in[] = '@&(reg);@i'; $out[] = '?';
    but they should be:
    #
    $in[] = '@&(mdash);@i'; $out[] = '?';
    #
    $in[] = '@&(reg);@i'; $out[] = '?';

    and lines 429-430 are:
    #
    $st_in[] = '@<li>@i'; $st_out[] = "\n?.chr(160);
    #
    $st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";
    but they should be:
    #
    $st_in[] = '@<li>@i'; $st_out[] = "\n?.chr(160)";
    #
    $st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";

    hope this helps someone.
    the code is my file is....

    Code:
    $in[] = '@&(mdash);@i'; $out[] = '—';
    $in[] = '@&(reg);@i'; $out[] = '®';
    Code:
    $st_in[] = '@<li>@i'; $st_out[] = "\n•".chr(160);
    $st_in[] = '@<h\d>@i'; $st_out[] = "\n\n";

  9. #309
    Join Date
    Jan 2008
    Posts
    90
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Well...I added a bunch of products yesterday...and then I deleted the RSS file that showed up in my root.....

    Now my new products feed doesn't work at all.

  10. #310
    Join Date
    Jan 2008
    Posts
    90
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Okay...let me start from the beginning and go to the end of this issue...maybe someone can tell me where I screwed up.

    I installed 2.1.3 and it worked fine except it filled my root folder with the RSS_(randomnumbers) files....

    I saw that a_berezin created an upgrade. Colemanpa said that it fixed the issue for him....so I downloaded the upgrade...overwrote the files and ran the 2.1.3_upgrade file. I got an SQL error.

    I ran the 2.1.4 Full install .sql file as Colemanpa said, it seemed to work fine, however I was wrong. It didn't update the new_products feed. I noticed that there were RSS_(randomnumbers) files back in my root directory. I deleted them and the new_products feed updated.

    Last night I deleted them again to get the new_products feed to update again, however...instead it just deleted EVERYTHING from the new_products feed. I uninstalled 2.1.4 (deleted all the files and ran the uninstall.sql file)

    I reinstalled 2.1.4 and it didn't fix it at all. So I decided to go back to 2.1.3 and that's not even working now. So now I've uninstalled 2.1.3 and I've reinstalled 2.1.4....

    I'm not a coder whatsoever, but I'm assuming there is something that got screwed up when I tried to upgrade the first time. I backed my database up back then...but since then I've added a bunch of new products and some new customers....I don't want to lose all of that work. What can I do to fix this?

 

 
Page 31 of 96 FirstFirst ... 2129303132334181 ... 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