• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Domain specific php.ini files

A

AlanO

Guest
I can't get my server set up to allow individual php.ini for each domain. I've read up on this a fair bit. The problem has come up because I need to ensure that php magic quotes is off for a specific domain but I know that it is needed on another domain - hence the need for a custom php.ini.

The problem is that my server uses fast CGI everywhere. Reading up the forums suggest changing the cgi_wrapper file from
#!/bin/sh
exec /usr/bin/php5-cgi

to

#!/bin/sh

domain=`fgrep -m 1 "$UID" /etc/passwd| awk -F\: '{print $6}' |awk -F"/" '{print $5}'`
PHPRC=/var/www/vhosts/$domain/conf/php.ini

[ -f ${PHPRC} ] || PHPRC="/etc/php.ini"

export PHPRC
exec /usr/bin/php-cgi -c "$PHPRC"

I tried this but it crashed the server so I had to back it out.

Any ideas how I can make it work?

thanks
 
Hello Alan,

You could use standard PHP module to create individual configuration for specific domains.

The file conf/vhost.conf or conf/vhost_ssl.conf in (sub)domain directory can be used to add specific PHP settings e.g.:

php_admin_flag magic_quotes_gpc OnPHP module consumes much less memory than FastCGI.
You can run virtual hosts as (sub)domain user with Apache module mpm-itk or mod_ruid2.
PHP module runs PHP code also under specific user in this case.

See http://forum.parallels.com/showthread.php?t=106297 for details.
 
Back
Top