• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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