kangus
|
| Posted: 08/28/2002, 6:24 PM |
|
My WSP (web service provider) just upgraded to PHP4.2.2 and now every Href has a ?PHPSESSIONIDxxxxxxxxxxxx append to them, if you hit refresh they go away, sometimes. Has anyone else notice this behavior? I have tried different setting in the .htaccess and ini_set('session.use_trans_sid', false); in my Common.php file without any effect.
So far nothing is helping and I have 5 sites that are down because of this behavior.
My vendor tells me I have the problem:
XHTML 1.0 Strict or XHTML 1.1 validation
If you have forms and have left the default settings for the rewritable
tags PHP will also add a hidden input to forms on your site but does
that in such a way that your code cannot validate as XHTML 1.0 Strict or
XHTML 1.1.
|
|
|
 |
Nicole
|
| Posted: 08/29/2002, 2:50 AM |
|
Hello,
To exclude PHPSESSID from url you should edit php.ini, namely change
session.use_trans_sid = 1
to
session.use_trans_sid = 0
|
|
|
 |
|