[WSG] PHP GET session ID's prevent validation?

2004-08-09 Thread Joshua Street
Hi all, I've come across something of a problem on a website which uses Sessions (and PHP). The server it is hosted on is setup to allow session ID's to be sent as GET variables (i.e. part of the URL string), if the user *apparently* doesn't have cookies enabled. Now, for whatever reason,

Re: [WSG] PHP GET session ID's prevent validation?

2004-08-09 Thread Manuel González Noriega
El mar, 10-08-2004 a las 02:01, Joshua Street escribió: Hi all, snip You'll note that should be amp; in order to validate... Has anyone else had this happen to them before? Any suggestions are welcome. Hey Joshua, try this ini_set('arg_separator.input','amp;'); -- Manuel trabaja

Re: [WSG] PHP GET session ID's prevent validation?

2004-08-09 Thread Patrick H. Lauke
If you have access to php.ini, make sure you change arg_separator.input and arg_separator.output to arg_separator.input = 'amp;' arg_separator.output = 'amp;' You may be able to do this in an .htaccess file php_value arg_separator.input 'amp;' php_value arg_separator.output 'amp;' As a last