Ingen som har en klok idé på vad jag exakt ska göra för att få bort felmeddelandena?
Jag får massa märkliga valideringsfel på länkurl:er där sessionsid följer med.
Jag kör OsCommerce 2.2 och när jag validerar sidan så dyker sådana här fel upp.
Warning Line 50 column 86: cannot generate system identifier for general entity "osCsid".
...by.se/webbshop/index.php?cPath=54&osCsid=6a85c8d34c4d7d8ac587dc0f625b4c2a"
Error Line 50 column 86: general entity "osCsid" not defined and no default entity.
...by.se/webbshop/index.php?cPath=54&osCsid=6a85c8d34c4d7d8ac587dc0f625b4c2a"
Under dessa felmeddelande får jag upp denna text.
An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".
Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and æ are different characters.
If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.
Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
Men jag förstår inte riktigt, är inte så insatt i OsCommerce eller hur den hanterar sessionsvariabler heller. Ska jag slå av detta på servern?
Hittade denna artikel: http://www.w3.org/QA/2005/04/php-session
Skulle det hjälpa att skriva in detta på alla .php sidor?
ini_set('arg_separator.output','&');
ini_set('arg_separator.output',';');
ini_set('session.use_trans_sid','0');
Någon som vet det riktiga svaret?

