How to make a php.ini file apply to all subdirectories: Difference between revisions
Docs admin (talk | contribs) test |
Docs admin (talk | contribs) Redirected page to PHP Configuration - php.ini#Recursive |
||
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
#REDIRECT [[PHP Configuration - php.ini#Recursive]] | |||
< | |||
Add the following code to the .htaccess file within your account's public_html folder (if one does not already exist, create one): | |||
< | |||
<syntaxhighlight lang="bash"> | |||
<IfModule mod_suphp.c> | |||
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/ | |||
</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. | |||
Related articles: | |||
[[How to change PHP settings with a php.ini]] | |||
[[Category:PHP]] |
Latest revision as of 13:57, 6 January 2016
Redirect to:
Add the following code to the .htaccess file within your account's public_html folder (if one does not already exist, create one):
<syntaxhighlight lang="bash"> <IfModule mod_suphp.c> 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/ </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.
Related articles: