Thanks for the tip Jeremy.
Chris Morgan and myself don't have this problem locally this was tested using php 4.3.9 and php 5.x
Tony Lambregts has the same version of php as the online server 4.2.2 and has the same problem. After a lot of testingand googling he found out that he had an extra carriage return at the end of his includes/config.php file and thus there was a problem with the sessions (because headers cannot be sent). Could you check if the config.php has an extra carriage return ?
If not, could you maybe enable error reporting to see if php is trowing some errors about sessions or cookies.
Thank you.
Le dimanche 12 décembre 2004 à 11:14 -0600, Jeremy Newman a écrit :
On Sat, 2004-12-11 at 18:52, Jonathan Ernst wrote:
Finally there are still some register_globals to clean up and when we are done we can turn off the following options in php.ini: short_open_tag = Off session.bug_compat_42 = 0 register_globals = Off register_long_arrays = Off
Actually, you can add: php_value register_globals 0 to .htaccess to disable it per site.
Just a tip.