php configuration editor saves php.ini in which extra spaces are added to some directive values as below:
session.save_handler = "files "
the above one caused a problem that a php web application namely XOOPS were unable to override the session save handler using the php session_set_save_handler() function, causing no session being saved thus nobody being able to login (XOOPS needs to use DB to save session data). I modified the above directive manually as below and all started to work again as usual.
session.save_handler = "files"
why does the editor add extra spaces to the directive values? will this be fixed in the future releases?



LinkBack URL
About LinkBacks
Reply With Quote




