Page 21 of 96 FirstFirst ... 1119202122233171 ... LastLast
Results 201 to 210 of 955
  1. #201
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    [FONT=Times New Roman]Hello DrByte[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]I try following your instruction, I also read the link you post, it’s still not working for me.[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]I try few thinks, I was not sure I fully understand you, so I try removing the ?>[/FONT]
    [FONT=Times New Roman]I also remove the extra line space I had after <?php. stil did not work for me.[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]Also you said “Both of the language files in the contribution” I only fund one file /includes/languages/english/extra_definitions/rss_feed.php[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]Where is the other one?[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]If any one have an idea why I get blank line please advice, if you like it for a fee, let me know, I just need it to work soon, [/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]Thank you[/FONT]

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

    Default Re: RSS2 Feed Contribution

    v 2.0.9 29.11.2007 13:28
    1. Bug fix in function rss_feed_link();
    2. Security bug fix;
    3. Bug fix in function rss_feed_link_alternate();
    v 2.0.10 23.01.2008 13:28
    1. Remove php close tag '?>' from all included files;
    v 2.1.0 18.01.2008 7:57
    1. Add support for GET 'ref=' parameter. Now you can use it for affilation program.
    If you specify a parameter 'ref=' for the rss feed link, it will be automatically added to all internal links
    generated in the feed (links to products, categories, reviews, articles, buy now, etc.).
    2. Add support for Google Analytics link tags. If you specify a Google Analytics link tags for the rss feed link,
    they will be automatically added to all internal links generated in the feed
    (links to products, categories, reviews, articles, buy now, etc.).
    For more information please read article "How do I tag my links?" on Google Analytics Help Center - http://www.google.com/support/google...y?answer=55518

  3. #203
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: RSS2 Feed Contribution

    Thanks a_berezin, I had some problem with the old version conflicting with my new mod Simple SEO URL, this version fixed that.

    Regards.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #204
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: RSS2 Feed Contribution

    Thanks for new release Andrew


  5. #205
    Join Date
    Apr 2007
    Location
    Orange County, CA
    Posts
    88
    Plugin Contributions
    5

    Default Re: RSS2 Feed Contribution

    Okay, I read all 21 pages hoping to find my problem already answered, but I do not see it.

    I installed this last night onto my 1.3.7.1 install and I cannot see the Admin page. It should be Admin -> Configuration -> RSS Feed, but I don't see anything. I've installed it a few times, with the same results.

    Thoughts?

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

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by gezuvor View Post
    Okay, I read all 21 pages hoping to find my problem already answered, but I do not see it.

    I installed this last night onto my 1.3.7.1 install and I cannot see the Admin page. It should be Admin -> Configuration -> RSS Feed, but I don't see anything. I've installed it a few times, with the same results.

    Thoughts?
    Admin -> Configuration -> RSS Feed appears after you install the install.sql file through Admin > Tools > Install SQL patches. You have to copy/paste the info. Did you do this? If so, what did it say after you installed it?

  7. #207
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    [FONT=Times New Roman]I try to upgrade but still my RSS feed not working (check my site) [/FONT]
    [FONT=Times New Roman]I also completely delete all the files and uninstall using the uninstall SQL, I re install and use the install SQL no errors, but still same issue I get an error page[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]Admin section look ok, and I am upgrade with 1.3.8[/FONT]
    [FONT=Times New Roman]Any idea?[/FONT]
    [FONT=Times New Roman][/FONT]
    [FONT=Times New Roman]Thank you[/FONT]

  8. #208
    Join Date
    Apr 2007
    Location
    Orange County, CA
    Posts
    88
    Plugin Contributions
    5

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by craftzombie View Post
    Admin -> Configuration -> RSS Feed appears after you install the install.sql file through Admin > Tools > Install SQL patches. You have to copy/paste the info. Did you do this? If so, what did it say after you installed it?
    I did copy/paste the sql file and the output was the following:

    Code:
     SET @configuration_group_id=0;
    SELECT (@configuration_group_id:=configuration_group_id) FROM configuration_group WHERE configuration_group_title= 'RSS Feed' LIMIT 1;
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
    DELETE FROM configuration WHERE configuration_key = 'RSS_FEED_VERSION';
    INSERT INTO configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) VALUES (NULL, 'RSS Feed', 'RSS Feed Configuration', '1', '1');
    SET @configuration_group_id=last_insert_id();
    UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;
    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES (NULL, 'RSS Title', 'RSS_TITLE', '', 'RSS Title (if empty use Store Name)', @configuration_group_id, 1, NOW(), NULL, NULL), (NULL, 'RSS Description', 'RSS_DESCRIPTION', '', 'RSS description', @configuration_group_id, 2, NOW(), NULL, NULL), (NULL, 'RSS Image', 'RSS_IMAGE', '', 'A GIF, JPEG or PNG image that represents the channel', @configuration_group_id, 3, NOW(), NULL, NULL), (NULL, 'RSS Image Name', 'RSS_IMAGE_NAME', '', 'RSS Image Name (if empty use Store Name)', @configuration_group_id, 4, NOW(), NULL, NULL), (NULL, 'RSS Copyright', 'RSS_COPYRIGHT', '', 'RSS Copyright (if empty use Store Owner)', @configuration_group_id, 5, NOW(), NULL, NULL), (NULL, 'RSS Managing Editor', 'RSS_MANAGING_EDITOR', '', 'RSS Managing Editor (if empty use Store Owner Email Address and Store Owner)', @configuration_group_id, 6, NOW(), NULL, NULL), (NULL, 'RSS Webmaster', 'RSS_WEBMASTER', '', 'RSS Webmaster (if empty use Store Owner Email Address and Store Owner)', @configuration_group_id, 7, NOW(), NULL, NULL), (NULL, 'RSS Author', 'RSS_AUTHOR', '', 'RSS Author (if empty use Store Owner Email Address and Store Owner)', @configuration_group_id, 8, NOW(), NULL, NULL), (NULL, 'RSS Home Page Feed', 'RSS_HOMEPAGE_FEED', '', 'RSS Home Page Feed', @configuration_group_id, 8, NOW(), NULL, 'zen_cfg_select_option(array(\'news\', \'new_products\', \'upcoming\', \'featured\', \'specials\', \'products\', \'categories\'),'), (NULL, 'RSS Default Feed', 'RSS_DEFAULT_FEED', '', 'RSS Default Feed', @configuration_group_id, 8, NOW(), NULL, 'zen_cfg_select_option(array(\'news\', \'new_products\', \'upcoming\', \'featured\', \'specials\', \'products\', \'categories\'),'), (NULL, 'Strip tags', 'RSS_STRIP_TAGS', 'false', 'Strip tags', @configuration_group_id, 20, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Descriptions', 'RSS_ITEMS_DESCRIPTION', 'true', 'Generate Descriptions', @configuration_group_id, 21, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Descriptions Length', 'RSS_ITEMS_DESCRIPTION_MAX_LENGTH', '0', 'How many characters in description (0 for no limit)', @configuration_group_id, 22, NOW(), NULL, NULL), (NULL, 'Time to live', 'RSS_TTL', '1440', 'Time to live - time after reader should refresh the info in minutes', @configuration_group_id, 23, NOW(), NULL, NULL), (NULL, 'Default Products Limit', 'RSS_PRODUCTS_LIMIT', '100', 'Default Limit to Products Feed', @configuration_group_id, 31, NOW(), NULL, NULL), (NULL, 'Add Product image', 'RSS_PRODUCTS_DESCRIPTION_IMAGE', 'true', 'Add product image to product description tag', @configuration_group_id, 32, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Add "buy now" button', 'RSS_PRODUCTS_DESCRIPTION_BUYNOW', 'true', 'Add "buy now" button to product description tag', @configuration_group_id, 33, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Categories for Products', 'RSS_PRODUCTS_CATEGORIES', 'master', 'Use \'all\' or only \'master\' Categories for Products when specified cPath parameter', @configuration_group_id, 23, NOW(), NULL, 'zen_cfg_select_option(array(\'master\', \'all\'),'), (NULL, 'Use Google NameSpace', 'RSS_GOOGLE_NS', 'true', 'Use Google NameSpace (need only if you use extended tags <g:*>)', @configuration_group_id, 80, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Price', 'RSS_PRODUCTS_PRICE', 'true', 'Generate Products Price (extended tag <g:price>)', @configuration_group_id, 90, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products ID', 'RSS_PRODUCTS_ID', 'true', 'Generate Products ID (extended tag <g:id>)', @configuration_group_id, 91, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Weight', 'RSS_PRODUCTS_WEIGHT', 'true', 'Generate Products Weight (extended tag <g:weight>)', @configuration_group_id, 93, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Brand', 'RSS_PRODUCTS_BRAND', 'true', 'Generate Products Manufacturers Name (extended tag <g:brand>)', @configuration_group_id, 94, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Currency', 'RSS_PRODUCTS_CURRENCY', 'true', 'Generate Products Currency (extended tag <g:currency>)', @configuration_group_id, 95, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Quantity', 'RSS_PRODUCTS_QUANTITY', 'true', 'Generate Products Quantity (extended tag <g:quantity>)', @configuration_group_id, 96, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Model', 'RSS_PRODUCTS_MODEL', 'true', 'Generate Products Model (extended tag <g:model_number>)', @configuration_group_id, 97, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Rating', 'RSS_PRODUCTS_RATING', 'true', 'Generate Products Rating (extended tag <g:rating>)', @configuration_group_id, 98, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'), (NULL, 'Generate Products Images', 'RSS_PRODUCTS_IMAGES', 'true', 'Generate Products Images (extended tag <g:image_link>)', @configuration_group_id, 98, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
    I didn't see any errors, etc. so I'm not sure what is going wrong...

  9. #209
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: RSS2 Feed Contribution

    I did copy/paste the sql file and the output was the following:
    (?)
    After hitting submit/send you should see on top of the page a greenline says: N statements executed etc...
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  10. #210
    Join Date
    Apr 2007
    Location
    Orange County, CA
    Posts
    88
    Plugin Contributions
    5

    Default Re: RSS2 Feed Contribution

    Success - 9 statements processed.

 

 
Page 21 of 96 FirstFirst ... 1119202122233171 ... 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