Custom php.ini file per user with FastCGI
Written by Jacob NicholsonIn this article we'll discuss how you can set a custom php.ini file per user when using FastCGI on your server. FastCGI is a PHP handler that is good for reducing CPU usage on a server, you might be interested in choosing the best PHP handler for your specific server needs if FastCGI isn't working well for you.
These instructions will allow you to have separate PHP configurations per user, so for instance you can set different memory limits or use opcode caching only on certain users. Please note that making these changes yourself would require root access to your server.
- Login to your server via SSH.
- Make a backup copy of your cPanel PHP wrapper script with the following command:
cp -frp /usr/local/cpanel/cgi-sys/php5 /usr/local/cpanel/cgi-sys/php5-BACKUP
- Now edit the cPanel PHP wrapper script with your favorite text editor:
vi /usr/local/cpanel/cgi-sys/php5
By default this script should look like:
#!/bin/sh
# If you customize the contents of this wrapper script, place
# a copy at /var/cpanel/conf/apache/wrappers/php5
# so that it will be reinstalled when Apache is updated or the
# PHP handler configuration is changed
exec /usr/bin/php - Above the line exec /usr/bin/php add the following code:
[[ -f ~/public_html/php.ini ]] && exec /usr/bin/php -c ~/public_html/php.ini
Now the cPanel PHP wrapper script should look like:
#!/bin/sh
# If you customize the contents of this wrapper script, place
# a copy at /var/cpanel/conf/apache/wrappers/php5
# so that it will be reinstalled when Apache is updated or the
# PHP handler configuration is changed
[[ -f ~/public_html/php.ini ]] && exec /usr/bin/php -c ~/public_html/php.ini
exec /usr/bin/phpWhat this does is uses the Bash syntax for seeing if a file exists [[ -f ]] and in this case we're looking for the file ~/public_html/php.ini. The ~ symbol would represent the current user calling the script, so this would be the same as entering in either /home/user1/public_html/php.ini or /home/user2/public_html/php.ini as the full path.
The rest of the code simply executes the PHP binary at /usr/bin/php with the -c flag which sets the location where you'd like to load a php.ini from from. In this case we are telling the server we'd like to use the php.ini file inside the user's /public_html/ directory if one exists, instead of /usr/local/lib/php.ini which would be the server's default.
- Now you'll want to copy the cPanel PHP wrapper script to a more permanent location, so that your settings are saved if you ever recompile Apache down the road. This can be done using the following command:
mkdir -p /var/cpanel/conf/apache/wrappers
cp -frp /usr/local/cpanel/cgi-sys/php5 /var/cpanel/conf/apache/wrappers/php5 - Now restart Apache for the settings to become active:
service httpd restart
- In order to verify your settings have been applied you'll want to create a PHP info script, the simplest way of doing this is simply copying any of your files to a file such as info.php, and then overwritting it with the phpinfo(); function:
cp -frp ~user1/public_html/index.php ~user1/public_html/info.php
echo "" > ~user1/public_html/info.phpNow when you visit your website and access the newly crated info.php script, you should see your custom php.ini being loaded next to the Loaded Configuration File section

You should now know how to use custom php.ini files for your individual users when you're using FastCGI as your PHP handler.
Glad you were able to get things figured out, I'll try to update this article to more correctly reflect what things would look like on a default setup with suPHP being the PHP handler. Because you're correct, even though a phpinfo() script will show the PHP handler as CGI, you need to be sure in WHM that your handler is in fact set to FastCGI which also requires running EasyApache to be sure that FastCGI has been compiled in with Apache.
This article was intended for if you already had FastCGI up and running as your PHP handler, but it doesn't look like we have an article on getting FastCGI itself setup, so I'll work on one of those.
- Jacob
Latest Questions
Need more Help?
Search
Ask the Community!
Current Customers
| Chat: | Click to Chat Now | E-mail: | support@InMotionHosting.com |
|---|---|---|---|
| Call: | 888-321-HOST (4678) | Ticket: | Submit a Support Ticket |

