From: Mike N. <mh...@us...> - 2002-01-16 12:55:47
|
At 2002-01-16 12:03 +0100, Alessandro "Pisani (TXM / J578)" wrote: >I fixed some bugs reported on the bugtrack and also fixed docs/INSTALL: >correct syntax to enable register_globals in a .htaccess file is: > > #php.ini configuration > <IfModule mod_php4.c> > php_flag register_globals on > </IfModule> > >and not : > php_value register_globals "On" Alessandro, You may want to add information on the session.save_path, and creating a phpinfo file. The phpinfo file information will let people know how to query their current php.ini settings. The session.save_path seems to be another common problem people run into with phpWS setup. I know it has to be changed for projects hosting their web site on SourceForge. phpinfo.php <?php phpinfo(); ?> .htaccess # php.ini configuration # Warning: make sure you create the sessions # directory with the proper permissions. <IFModule mod_php4.c> php_value session.save_path "./sessions" </IFModule> Note: the syntax above may be incorrect. -- Mike Noyes <mh...@us...> http://leaf.sourceforge.net/ |