Difference between revisions of "R4L/Services/Hosting/Advanced/PHP.ini"

From R4L Help Wiki
< R4L‎ | Services‎ | Hosting‎ | Advanced
Jump to: navigation, search
 
Line 1: Line 1:
In order to override global ''php.ini'' settings under your hosting account, just create a file named '''custom_php.ini''' anywhere under your ''public_html'' directory (or sub-folders below this) to override some global php directives. The following directive categories can be overriden:
+
In order to override global ''php.ini'' settings under your hosting account, just create a file named '''.user.ini''' anywhere under your ''public_html'' directory (or sub-folders below this) to override some global php directives.
  
* PHP_INI_PERDIR
+
e.g.
* PHP_INI_USER
+
  
 
+
max_input_vars = 6000
 
+
memory_limit = 128M
ref. http://www.phpdoc.info/meta/ini-settings.php
+
upload_max_filesize = 128M

Latest revision as of 10:18, 4 December 2017

In order to override global php.ini settings under your hosting account, just create a file named .user.ini anywhere under your public_html directory (or sub-folders below this) to override some global php directives.

e.g.

max_input_vars = 6000 memory_limit = 128M upload_max_filesize = 128M