From: SourceForge.net <no...@so...> - 2006-08-23 16:50:42
|
/mod/phpwsrssfeeds item #1530167, was opened at 2006-07-27 23:55 Message generated for change (Settings changed) made by wendall911 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=563513&aid=1530167&group_id=81360 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Invalid Priority: 8 Submitted By: Mirko (mabhobs) Assigned to: Wendall Cada (wendall911) Summary: XHTML compliance problems Initial Comment: PHP Version: PHP Version 4.4.2-1+b1 or check http://mabhobs.de/x/info.php Operating System: Linux 2.6.15-1-k7 SQL Server: MySQL 4.1.15-Debian_1 Browser: Mozilla 1.0.1 PHPwebsite Version: 0.10.2 PHPrssfeed Version: 0.4.2 I recognized the PHPrssfeed is not XHTML transitional. This was the result page I received from the XHTML validator at http://validator.w3.org/: Below are the results of checking this document for XML well-formedness and validity. 1. Error Line 250 column 7: end tag for "table" which is not finished. </table> Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p> Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on. 2. Error Line 260 column 43: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag. ...lass="bg_medium" style="padding:5px;"><b>World and U.S. Population Clock</b>< The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element. One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>"). Please also check the following link to recreate the error: http://validator.w3.org/ check?uri=http%3A%2F%2Fmabhobs.de%2Fphpweb%2Fmirko%2F&charset=%28detect+automatically%29&doctype=Inline ---------------------------------------------------------------------- >Comment By: Wendall Cada (wendall911) Date: 2006-08-23 09:50 Message: Logged In: YES user_id=711566 This is not an error with rssfeeds, since none of the code you've mentioned is in rssfeeds. I appreciate the information, but what would be more helpful, is the template you are using and a link to the page on your site the error is, so we can determine where the xhtml error is. Wendall ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=563513&aid=1530167&group_id=81360 |