Directive
|
Description
|
---|---|
asp_tags |
Specifies whether your web server allows PHP code to use the <% and %> tags in addition to the standard <?php and ?> tags. If you turn this option off, a PHP script with ASP tags will not work properly. |
file_uploads |
Specifies whether your web server allows PHP scripts to receive files via HTTP. |
include_path |
Lists directories in which the require , include , fopen() , file() , readfile() , and file_get_contents() functions look for files. |
max_execution_time |
The number of seconds that your web server allows a PHP script to run before it terminates the script. This limit ensures that poorly-written scripts do slow down your web server. |
max_input_time |
The number of seconds that your web server allows a PHP script to process information that you submit to it, such as file uploads. This limit ensures that overloaded scripts do not slow down your web server. |
memory_limit |
The maximum number of bytes of memory that a PHP script can use. This limit ensures that poorly-written scripts do not overwhelm your web server's memory. A value of -1 indicates that no memory limit exists. |
register_globals |
Registers the Warnings This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. |
safe_mode |
This feature ensures that execute permissions exist for the user who runs a PHP script. For example, if the script changes a file, the user needs the correct permissions to modify the file. Warning: This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. |
upload_max_filesize |
The maximum number of bytes that an uploaded file can contain. |
session.save_path |
When a visitor accesses your website, the web server issues a unique user ID. The web server uses this ID to store information about the user's session, or time spent on your website. The Notes:
|
PHP directives Print
- 168
Was this answer helpful?
Related Articles
Site Software - Manage cPAddons
To toggle whether the system will notify you when updates for your cPAddons are available, click...
Site Software - Overview
The Site Software interface allows you to add, manage, upgrade, and remove cPAddons (cPanel...
PHP PEAR Packages- System modules
cPanel includes specific pre-installed PEAR packages. To see a list of pre-installed PEAR...
PEAR package installer
This feature allows you to search for, download, and install a PEAR package.
Note:
If you...
Installed PEAR packages
The Installed Modules table lists all of the PEAR packages that exist on your server.
For each...