I know that PHPsuexec is installed on the Dathorn servers and that prevents the ability to modify PHP configuration through the normal way of using an .htaccess file and that I need a "php.ini" file to do that job.
What I do not know is anything about what a php.ini file is or how the code goes.
I have a cms script that needs the following in the .htaccess file to make the script work.
php_value session.use_trans_sid 0
php_value session.use_cookies 1
php_value session.use_only_cookies 1
<Files idx>
ForceType application/x-httpd-php
</Files>
Can someone please translate those requirements into php.ini language so that I can make a php.ini file and make the script work under a PHPsuexec situation?
Also I assume that the php.ini file can be made as a simple txt file and then uploaded to the main directory of the cms script?
Thanks very much for any help.
What I do not know is anything about what a php.ini file is or how the code goes.
I have a cms script that needs the following in the .htaccess file to make the script work.
php_value session.use_trans_sid 0
php_value session.use_cookies 1
php_value session.use_only_cookies 1
<Files idx>
ForceType application/x-httpd-php
</Files>
Can someone please translate those requirements into php.ini language so that I can make a php.ini file and make the script work under a PHPsuexec situation?
Also I assume that the php.ini file can be made as a simple txt file and then uploaded to the main directory of the cms script?
Thanks very much for any help.

Comment