PDA

View Full Version : php.ini


petesmc
01-02-2001, 07:29 PM
Is there any way to edit the php.ini file

JohnM
01-02-2001, 08:08 PM
Yep, in .htaccess

use:

php_value name value
or
php_flag name on|off

gic0m
01-03-2001, 04:25 AM
Huh!?

JohnM
01-03-2001, 03:58 PM
You can't edit php.ini per se, but you can acheive the same effect by editing .htaccess

instead of

include_path = "whatever"

you'd put:

php_value include_path "whatever"

gic0m
01-03-2001, 06:07 PM
k thanx