Page 34 of 96 FirstFirst ... 2432333435364484 ... LastLast
Results 331 to 340 of 955
  1. #331
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by a_berezin View Post
    RTFM!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Which one? If you are referring to your readme, I didn't see anything about those things not working with Google Reader, etc.

    And you don't need to be rude. If you are getting that frustrated with our questions, maybe contributing things isn't for you.

  2. #332
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by craftzombie View Post
    Which one? If you are referring to your readme, I didn't see anything about those things not working with Google Reader, etc.
    I suspect that Andrew may be referring to the Google Reader, etc. documentation. Although his readme can realistically be expected to cover the major points of this mod, it wouldn't be reasonable to expect him to document its impact on every conceivable reader in use now and in the future that people might use. So rather like for browsers, you need to work out what your visitors might use and familiarise yourself with them and their limitations and likely interactions with this mod.

    Quote Originally Posted by craftzombie View Post
    And you don't need to be rude. If you are getting that frustrated with our questions, maybe contributing things isn't for you.
    Andrew can sometimes get a bit hot under the collar. But hey, so do many of us who contribute regularly and feel that we're taking flack for users own installation mistakes, misunderstandings about what mods are supposed to do, or other things that are obviously out of our control, or just being asked the same question for the umpteenth time by somebody who clearly hasn't searched the thread.

    I stress, craftzombie, that I'm not saying that this is the case here, just that this frustration tends to build up, and needs to be released from time-to-time. I guess you were in the wrong place when Andrew needed to release his.

    Stepping back from that, Andrew has made a huge contribution to the mods available for Zen Cart - not only those with his name on, but also several that have been taken forward by other people building on his foundations. So even if he sometimes gets a tetchy at times, were to take your advice this community would be impoverished by his absence.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  3. #333
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by kuroi View Post
    Although his readme can realistically be expected to cover the major points of this mod, it wouldn't be reasonable to expect him to document its impact on every conceivable reader in use now and in the future that people might use.
    It also wouldn't be reasonable for me to be expected to read the manuals of every reader available to see if this mod is compatible with them. Instead of the whole RTFM statement, he could have just said that they weren't compatible. Its that kind of attitude that I'm sick of around here. We aren't all programmers. We don't know, so we come here to ask. The people who do know don't need to be so damn condescending.

    Quote Originally Posted by kuroi View Post
    Andrew can sometimes get a bit hot under the collar. But hey, so do many of us who contribute regularly and feel that we're taking flack for users own installation mistakes, misunderstandings about what mods are supposed to do, or other things that are obviously out of our control, or just being asked the same question for the umpteenth time by somebody who clearly hasn't searched the thread.
    As someone who answers questions all the time, many of them the same questions over and over, I've never once felt the need to act like a jerk. Maybe its just me, but I understand that most of the people here are not programmers or even that proficient with HTML & CSS. My point in making that statement is that if you are even thinking about contributing something here, you should know that you ARE going to be asked questions. Its like the guy with the bad attitude working the drive-thru at McDonalds.... no one is forcing you to work there. If you are that unhappy to the point where you have to be a jerk to everyone, THEN DON'T WORK THERE. If you aren't ready for answering the same questions over and over, etc. then why bother? Do you really think people are going to read through pages and pages of forum posts? (I'm sure posts like this, clogging up the threads, doesn't help either, but you know.... I just HAD to reply.)

    Quote Originally Posted by kuroi View Post
    Stepping back from that, Andrew has made a huge contribution to the mods available for Zen Cart - not only those with his name on, but also several that have been taken forward by other people building on his foundations. So even if he sometimes gets a tetchy at times, were to take your advice this community would be impoverished by his absence.
    Although I appreciate his work and the work of others, which I have stated many times and I have also donated, that doesn't give any mod contributor the right to take out frustrations on us. Buy a punching bag or go scream in your pillow. If thats the price I have to pay for a free mod, well... I'd rather pay money for real support without attitude problems and insults.

    You know, I really really love Zen Cart. Even out of all of the paid carts I've seen, it is the best. Its just a shame that I have to be treated like the biggest moron on earth every time I come here to ask a question. (okay, not EVERY time, but many times.)

  4. #334
    Join Date
    Jan 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Hi,

    Can someone help me with these...

    Line 49, Column 31: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified.
    document.write("<script id=__ie_onload defer><\/script>");✉
    Line 49, Column 48: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified.
    document.write("<script id=__ie_onload defer><\/script>");✉
    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

    Line 49, Column 48: required attribute "type" not specified.
    document.write("<script id=__ie_onload defer><\/script>");✉
    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

    Line 49, Column 48: document type does not allow element "script" here.
    document.write("<script id=__ie_onload defer><\/script>");✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 49, Column 49: character "<" is the first character of a delimiter but occurred as data.
    document.write("<script id=__ie_onload defer><\/script>");✉
    This message may appear in several cases:

    You tried to include the "<" character in your page: you should escape it as "&lt;"
    You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    Another possibility is that you forgot to close quotes in a previous tag.

    Line 103, Column 151: document type does not allow element "link" here.
    …in_page=rss_feed&amp;feed=specials" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 104, Column 159: document type does not allow element "link" here.
    …age=rss_feed&amp;feed=new_products" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 105, Column 151: document type does not allow element "link" here.
    …in_page=rss_feed&amp;feed=upcoming" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 106, Column 151: document type does not allow element "link" here.
    …in_page=rss_feed&amp;feed=featured" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 107, Column 155: document type does not allow element "link" here.
    …age=rss_feed&amp;feed=best_sellers" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

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

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by craftzombie View Post
    If thats the price I have to pay for a free mod, well... I'd rather pay money for real support without attitude problems and insults.
    Just in my own experience, I have gotten insults, condescention, and exasperation from plenty of paid support over the years. I think this is a condition of working with humans, not a condition of whether you pay the humans.

  6. #336
    Join Date
    Jan 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by vitalwares View Post
    Hi,

    Can someone help me with these...

    Line 49, Column 31: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified.
    document.write("<script id=__ie_onload defer><\/script>");✉
    Line 49, Column 48: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified.
    document.write("<script id=__ie_onload defer><\/script>");✉
    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

    Line 49, Column 48: required attribute "type" not specified.
    document.write("<script id=__ie_onload defer><\/script>");✉
    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

    Line 49, Column 48: document type does not allow element "script" here.
    document.write("<script id=__ie_onload defer><\/script>");✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 49, Column 49: character "<" is the first character of a delimiter but occurred as data.
    document.write("<script id=__ie_onload defer><\/script>");✉
    This message may appear in several cases:

    You tried to include the "<" character in your page: you should escape it as "&lt;"
    You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    Another possibility is that you forgot to close quotes in a previous tag.

    Line 103, Column 151: document type does not allow element "link" here.
    …in_page=rss_feed&amp;feed=specials" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 104, Column 159: document type does not allow element "link" here.
    …age=rss_feed&amp;feed=new_products" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 105, Column 151: document type does not allow element "link" here.
    …in_page=rss_feed&amp;feed=upcoming" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 106, Column 151: document type does not allow element "link" here.
    …in_page=rss_feed&amp;feed=featured" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Line 107, Column 155: document type does not allow element "link" here.
    …age=rss_feed&amp;feed=best_sellers" />✉
    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

    Andrew or others please help...

  7. #337
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: RSS2 Feed Contribution

    After upgrading to the latest version, I could not get my feeds to update. After taking a closer look, I noticed that the new products feed is main_page=rss_feed&feed=new_products. The problem is that the actual new products page is not new_products, but rather products_new. When I made this change in my browser, the feed updated. I have changed the link on my EZ-Page which lists all of my feeds, but.... what about the RSS icon in the address bar in Firefox (or in IE)? Are there other files that need to be changed? For instance, in includes\functions\extra_functions\rss_feed.php, there are many references to "new_products". Do they all need to be changed to "products_new"? What about the SQL? I don't know if I am barking up the wrong tree and these things don't matter, but I could not get my feed to update without changing it. Any thoughts?

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

    Default Re: RSS2 Feed Contribution

    Quote Originally Posted by craftzombie View Post
    For instance, in includes\functions\extra_functions\rss_feed.php, there are many references to "new_products". Do they all need to be changed to "products_new"?
    For anyone who is having the same trouble... not sure if this is what is supposed to be done, but I did it and it is working.... I went ahead and changed every instance of "new_products" to "products_new" in includes\functions\extra_functions\rss_feed.php and it corrects the problem with the RSS icon in the address bar.

    But please, don't take my word for it. I am not an RSS expert and I'd rather have Andrew approve/disapprove of everything I am saying here before you go and mess anything up.

    (there are also instances of it in includes\modules\pages\rss_feed\header_php.php, but I was reluctant to mess with it since the changes to the other file are working.)

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

    Default Re: RSS2 Feed Contribution

    craftzombie,

    I'm not going to make the changes yet...but I did look to see if my products were updated on the products_new and "some" of the new ones are there....but not all of them....and they are taking a lot longer to update I noticed. So....I'm not quite sure it's an actual fix. For now I just delete the cache files that keep appearing in my root folder and it automatically updates my new_products feed

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

    Default Re: RSS2 Feed Contribution

    craft,

    Just a quick glance.....look at the differences

    new_products

    products_new

    It's actually skipped a few products in the products_new link

 

 
Page 34 of 96 FirstFirst ... 2432333435364484 ... 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