| |
| META TOPICPARENT |
name="CpanelSoftware" |
PHP Configuration |
| |
- include_path: Tells where your website will look for PHP files. Be sure that all PHP scripts you want to run are saved in the folder indicated here.
max_execution_time: The number of seconds a PHP script is allowed to run before being closed. This limit prevents poorly written scripts from slowing your server down.
|
|
> > |
- max_execution_time: Specifies how long a PHP script is allowed to run before it is terminated.
|
| |
- max_input_time: The number of seconds a PHP script is allowed to process information input to it, such as file uploads. This limit prevents the script from being overloaded and slowing your server down.
- memory_limit: The maximum number of bytes that a PHP script can use. This limit prevents poorly written scripts from occupying all your server’s available memory. When this field is set to
-1, there is no memory limit.
|