I would typically recommend to disable cookies for sessions, at least for development/setup period. Otherwise you will always start with some already existing settings that might not be appropriate after the modifications (check the PHP error log anyway).
Either set in the php.ini: session.use_cookies = 0 or if PHP is run as Apache module you could also put it just inside the <directory> that you want (in 'httpd.conf' or whatsoever the config file is named): php_flag session.use_cookies 0 armin Alessandro Pasotti wrote: > Il 14:41, mercoled? 13 settembre 2006, Luca Casagrande ha scritto: >> Hi to all! >> I have got this strange issue with pmapper: >> if i modify the .map file, i need to restart apache to see the change or >> pmapper doesn't load. > > Did you try to clean/restart the session (delete session cookies)? > > p.mapper store a lot of stuff in the $_SESSION var, sometimes you need to > clean it to see the changes in config/mapfile. > > HTH > -- > Alessandro > > _______________________________________________ > Pmapper-users mailing list > Pmapper-users at faunalia.it > http://faunalia.it/cgi-bin/mailman/listinfo/pmapper-users > >
