Difference between revisions of "How to make a php.ini file apply to all subdirectories"

From Acenet Knowledgebase
Jump to: navigation, search
Line 1: Line 1:
<html> Add the following code to the .htaccess file within your account's public_html folder (if one does not already exist, create one):  
+
Add the following code to the .htaccess file within your account's public_html folder (if one does not already exist, create one):  
<div class="code_style"><IfModule mod_suphp.c><br />suPHP_ConfigPath /home/USERNAME/PATH/TO/INI/<br /></IfModule></div>
+
 
<br /><em>(replacing '/home/USERNAME/PATH/TO/INI/' with the appropriate path to your custom php.ini file)</em><br /><br />Properly configured example:<br /><br />
+
<syntaxhighlight lang="bash">
<div class="code_style"><IfModule mod_suphp.c><br />suPHP_ConfigPath /home/example/public_html/shop/php.ini<br /></IfModule></div>
+
<IfModule mod_suphp.c>
<br />In the above example, the custom php.ini file is located at:<br /><br />/home/example/public_html/shop/php.ini
+
suPHP_ConfigPath /home/USERNAME/PATH/TO/INI/
 +
</IfModule>
 +
</syntaxhighlight>
 +
 
 +
(replacing '/home/USERNAME/PATH/TO/INI/' with the appropriate path to your custom php.ini file)
 +
 
 +
Properly configured example:
 +
 
 +
<syntaxhighlight lang="bash">
 +
<IfModule mod_suphp.c>
 +
suPHP_ConfigPath /home/example/public_html/shop/php.ini
 +
</IfModule>
 +
</syntaxhighlight>
 +
 
 +
In the above example, the custom php.ini file is located at:
 +
 
 +
/home/example/public_html/shop/php.ini
 +
 
 
  and that php.ini file is now recursive which means it will effect all of the web accessible directories within the account and not just the directory it's located in.  
 
  and that php.ini file is now recursive which means it will effect all of the web accessible directories within the account and not just the directory it's located in.  
 
    
 
    
 
  Related articles:  
 
  Related articles:  
<a title="How can I change PHP settings?" href="http://kb.acenet.us/How_can_I_change_PHP_settings">How can I change PHP settings?</a> </html> [[Category:PHP]]
+
[[How_can_I_change_PHP_settings]]
 +
 
 +
[[Category:PHP]]

Revision as of 14:40, 4 January 2013

Add the following code to the .htaccess file within your account's public_html folder (if one does not already exist, create one):

<IfModule mod_suphp.c>
suPHP_ConfigPath /home/USERNAME/PATH/TO/INI/
</IfModule>

(replacing '/home/USERNAME/PATH/TO/INI/' with the appropriate path to your custom php.ini file)

Properly configured example:

<IfModule mod_suphp.c>
suPHP_ConfigPath /home/example/public_html/shop/php.ini
</IfModule>

In the above example, the custom php.ini file is located at:

/home/example/public_html/shop/php.ini

and that php.ini file is now recursive which means it will effect all of the web accessible directories within the account and not just the directory it's located in. 
  
Related articles: 

How_can_I_change_PHP_settings