On Thu, February 23, 2006 4:28 pm, Khai wrote:
> In my development environment I have Zend Debugger / Zend Studio
> installed.  I like to put all the directives for this into studio.ini,
> and include this file into the main php.ini somehow.  Is this
> possible?

I don't think so, but if it's part of the .ini standard from MS, maybe...

>   Also can I put php directives into the apache httpd.conf file?

Yes, but the format changes a bit:

php.ini---------------
xyz = 42

httpd.conf-----------
php_value xyz 42

Also, some short-hand forms for php.ini do not work in httpd.conf:
E.G. E_ALL and 8M are interpred by PHP, not by Apache.

This is all documented on http://php.net/ -- you'll have to search to
find the exact page.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to