Which takes precedence?
Thank you.
php.ini sets overall values, httpd.conf (apache?.conf) sets global
server values, vhosts set per vhost values, and ini_set() sets values on
a per script basis. I would assume they get set or are overridden in
that order:
php.ini->httpd.conf(apache?.conf)->vhost->ini_set()
---
Norm
vhost.conf is probably just an include from apache.conf/httpd.conf. So
it depends where the value is specified in the two files.