session.auto_start

Question:

I am trying to use sessions in a php script. But, after reading some documentation I realized that the following line needs to be added to the php.ini file

session.auto_start = 1

Could you please add this line for the php.ini file for my account?

Answer:

You can add any php.ini command to your account by creating a .htaccess file.

I created a .htaccess file in your www dir with the command

php_value session.auto_start 1

in it. This should do what you want.

Leave a Reply

Your email address will not be published. Required fields are marked *