ispCP - Board - Support
php.ini - which for what and where - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: System Setup & Installation (/forum-32.html)
+--- Thread: php.ini - which for what and where (/thread-3711.html)



php.ini - which for what and where - sowosammerneger - 07-08-2008 09:44 PM

Hi,

I am still fiddeling around with ISPCP and need to change the values of the php.ini for one domain.
Now I have the domains php.ini in /var/www/fcgi/DOMAINNAME/, but I wonder, what those are for:

./etc/ispcp/fcgi/parts/master/php4/php.ini
./etc/ispcp/fcgi/parts/master/php5/php.ini
./etc/ispcp/fcgi/parts/php4/php.ini
./etc/ispcp/fcgi/parts/php5/php.ini
./etc/php4/cgi/php.ini
./etc/php5/cli/php.ini
./etc/php5/cgi/php.ini

Thanks for any help as always. Smile


RE: php.ini - which for what and where - kilburn - 07-09-2008 12:04 AM

Code:
./etc/ispcp/fcgi/parts/master/php4/php.ini
./etc/ispcp/fcgi/parts/master/php5/php.ini
Templates used by ispcp when (re)generating the master domain configuration. AFAIK this only happens on install/upgrade.

Code:
./etc/ispcp/fcgi/parts/php4/php.ini
./etc/ispcp/fcgi/parts/php5/php.ini
Templates used by ispcp when generating hosted domains configuration. AFAIK those are only generated on domain addition and never regenerated after this (but maybe on panel update)

Code:
./etc/php4/cgi/php.ini
./etc/php5/cgi/php.ini
Debian defaults for php-cgi, not used in an ispcp system.

Code:
./etc/php5/cli/php.ini
Debian default for the command line version of php. Used when you call a php script from the console.


RE: php.ini - which for what and where - sowosammerneger - 07-09-2008 07:33 AM

Thanks, thought of that, but wasn't quite sure. Smile