I am trying to overload my php.ini file by using a .htaccess file. The problem I have is that if I try to set something like session.gc_maxlifetime it get set to zero no matter what value I specify.
Here is the contents of my .htaccess file:
php_flag session.gc_maxlifetime 1000
They when looking at phpinfo() in that directory it will say that I set it to zero and not 1000. I can overload bolean operators just fine the problem only happens when trying to set the int values.