Difference between revisions of "Configuring php.ini"
(→cPanel) |
|||
Line 14: | Line 14: | ||
==Shared Hosting: Changing PHP settings for a site== | ==Shared Hosting: Changing PHP settings for a site== | ||
===cPanel=== | ===cPanel=== | ||
− | You can change | + | You can change your site's PHP settings in the '''Select PHP Version''' section of your cPanel. |
+ | |||
+ | #Login to cPanel | ||
+ | #*Example: <nowiki>http://yourawesomedomain.com/cpanel</nowiki> | ||
+ | #Click on '''Select PHP Version''' under the '''Software''' section. | ||
+ | #Select PHP 5.X (which is different than "5.X '''Native'''") | ||
+ | ##Click on the '''Set as Current''' button | ||
+ | #Tick the box next to the feature you wish to enable or disable. | ||
+ | #Click '''Save''' on the bottom of the page. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
===Windows=== | ===Windows=== | ||
On our Windows-based shared hosting plans, you can enable custom PHP settings within the ''PHP Settings'' icon in your MochaPanel account. | On our Windows-based shared hosting plans, you can enable custom PHP settings within the ''PHP Settings'' icon in your MochaPanel account. |
Latest revision as of 16:59, 20 September 2016
Contents
Configuring server-wide php.ini settings
If you need to make adjustments to the php.ini file server-wide (affecting all sites on the VPS) then you could do this by logging into cPanel/WHM as root and clicking on the "PHP Configuration Editor".
Creating a custom php.ini file
Do not just create a blank php.ini file and add the settings you need. Doing this will ignore all of the other PHP configuration that was setup by the server such as extensions and modules. Be sure to copy the server's php.ini file and make the customizations in that file by following these steps.
If you need to make changes to php.ini for a specific site only follow these steps:
- SSH into the server
- Copy the server's php.ini file to the the site's public_html directory by running this command:
cp /usr/local/lib/php.ini /home/username/public_html/
*Replace username with the username of the site - Edit the php.ini with your favorite text editor. For example:
nano /home/username/public_html/php.ini
and make the desired changes. - Add the following to the /home/username/public_html/.htaccess file (create one if you don't have one):
SetEnv PHPRC /home/username/public_html/php.ini
*use the real path for your site
cPanel
You can change your site's PHP settings in the Select PHP Version section of your cPanel.
- Login to cPanel
- Example: http://yourawesomedomain.com/cpanel
- Click on Select PHP Version under the Software section.
- Select PHP 5.X (which is different than "5.X Native")
- Click on the Set as Current button
- Tick the box next to the feature you wish to enable or disable.
- Click Save on the bottom of the page.
Windows
On our Windows-based shared hosting plans, you can enable custom PHP settings within the PHP Settings icon in your MochaPanel account.
- Log into your MochaPanel account
- Click the PHP Settings icon under the Website Settings heading
- Click the Configuration button next to the site/subdomain to receive the new PHP settings
- Check the box for Custom php.ini
- Click the Save button
This will place a file named php.ini in your site's web root. You may edit that file to adjust specific PHP settings. If you do not see the new settings take effect immediately, try recycling your site's application pool.