Page 44 of 96 FirstFirst ... 3442434445465494 ... LastLast
Results 431 to 440 of 955
  1. #431
    Join Date
    May 2007
    Location
    Los Angeles
    Posts
    89
    Plugin Contributions
    0

    Default Bad URL format

    Hi everyone,
    I installed this mod and I love it! everything seem to be working fine except when I click "Subrcribe to "Domain Name"", I get a DNS error and see a bad URL is causing this:

    http://www.xxxxxxxxxxx.comdir_ws_htt...hp/?export=rss

    I've looked everywhere but can't find the solution. Please help!

    Thank you!

  2. #432
    Join Date
    May 2007
    Location
    Los Angeles
    Posts
    89
    Plugin Contributions
    0

    Default Re: Bad URL format

    I found out what the problem was. It was a third party add-on. Thanks anyways!


    Quote Originally Posted by Fireflyz View Post
    Hi everyone,
    I installed this mod and I love it! everything seem to be working fine except when I click "Subrcribe to "Domain Name"", I get a DNS error and see a bad URL is causing this:

    http://www.xxxxxxxxxxx.comdir_ws_htt...hp/?export=rss

    I've looked everywhere but can't find the solution. Please help!

    Thank you!

  3. #433
    Join Date
    Jun 2008
    Posts
    19
    Plugin Contributions
    0

    Default What's wrong with me?

    Hi, a_berezin

    thank you for developing such a good marketing tool and now i got some questions:

    i have set 'Generate Products Price' function via admin->configuration->RSS FEED to 'true', but i've not got to see it appears in the result FEED pages, neither in FF3 nor IE7.

    i do notice the 'extended tag <grice>' after the function. but how and where can i add it?

    would you pls tell me how to deal with this problem.

    all the best for you,
    david

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

    Default Re: RSS2 Feed Contribution

    I installed this module recently and find it works with some feeds, but not with others.

    When I select "Specials" I get all products instead of special priced items. I experimented with the code a bit and find that the SQL query for returning Specials is fine, but only if I set the case statement to 'new_products' instead of 'specials' and select 'New Products' as the feed I want.

    If I revert to the original code, 'New Products' returns new products, as it should, but 'Specials' returns all products again.

    The only other thing I have done was to change the extra_functions code to change 'feed=' to 'amp;feed=' in a couple of the functions where the url is built in order to allow the RSS Feed to work when I have the Wordpress module installed. (Not having the 'amp;' returns invalid feed or invalid page errors.)

    Any suggestions? Besides uninstalling Wordpress...

  5. #435
    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
    I installed this module recently and find it works with some feeds, but not with others.

    When I select "Specials" I get all products instead of special priced items. I experimented with the code a bit and find that the SQL query for returning Specials is fine, but only if I set the case statement to 'new_products' instead of 'specials' and select 'New Products' as the feed I want.

    If I revert to the original code, 'New Products' returns new products, as it should, but 'Specials' returns all products again.

    The only other thing I have done was to change the extra_functions code to change 'feed=' to 'amp;feed=' in a couple of the functions where the url is built in order to allow the RSS Feed to work when I have the Wordpress module installed. (Not having the 'amp;' returns invalid feed or invalid page errors.)

    Any suggestions? Besides uninstalling Wordpress...
    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...

  6. #436
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Hello Chain_man,

    Glad you got it working. I am really interested in the changes you made. I am thinking, it might solve the problem that many of us have, whereby the module doesn't work because of a XML declaration error. This is due to it picking up an extra space in a file somewhere in the zencart installation. Its proving pretty elusive, but the file changes you stated might help with this. I will have a look and try this and let everyone know. If anyone has already tried making chain_man's changes, it'd be great to hear from you.

    Heathenmagic

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

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by HeathenMagic View Post
    Hello Chain_man,

    Glad you got it working. I am really interested in the changes you made. I am thinking, it might solve the problem that many of us have, whereby the module doesn't work because of a XML declaration error. This is due to it picking up an extra space in a file somewhere in the zencart installation. Its proving pretty elusive, but the file changes you stated might help with this. I will have a look and try this and let everyone know. If anyone has already tried making chain_man's changes, it'd be great to hear from you.

    Heathenmagic
    I'm not sure how my changes would fix the problems you have been describing. As I mentioned, they are a work-around for a specific condition where I had to add 'amp;' to the link. At no time did I have the error messages that you have had. The mod always displayed something, it was just the wrong something. Be careful.

  8. #438
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Hello everyone,

    I managed to fix the error I have, and am posting in case it helps somebody out.

    In this thread:-

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

    I was trying to fix an unrelated bug, and I am sure this is what did it for me. Ultimately, it is a file from a mod I installed.

    This is for the xml declaration error, which prevents you seeing the feed at all. Something to do with line spaces at the end of a file can cause it too.


  9. #439
    Join Date
    Oct 2006
    Location
    Italy
    Posts
    634
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    I've installed the latest version, but my feeds don't update. it's updated at the day of installation. why?

  10. #440
    Join Date
    Oct 2006
    Location
    Italy
    Posts
    634
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    work well!!! I've made modify on page 32
    UPDATE configuration SET set_function=NULL WHERE configuration_key = 'RSS_CACHE_TIME';
    all work fine!

 

 
Page 44 of 96 FirstFirst ... 3442434445465494 ... 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