PHP Configuration
These PHP configuration settings are customizable by the server administrator. They are listed for reference only.
Sub Section | Directive | Info | Value | |
---|---|---|---|---|
Language Options | asp_tags | Allow ASP-style <% %> tags. | Off | |
File Uploads | file_uploads | Whether to allow HTTP file uploads. | On | |
Paths and Directories | include_path | Windows: "\path1;\path2" | .:/usr/lib/php:/usr/local/lib/php | |
Resource Limits | max_execution_time | Maximum execution time of each script, in seconds | 30 | |
Resource Limits | max_input_time | Maximum amount of time each script may spend parsing request data | 60 | |
Resource Limits | memory_limit | Maximum amount of memory a script may consume (8MB) | 32M | |
Data Handling | register_globals | You should do your best to write your scripts so that they do not require register_globals to be on; Using form variables as globals can easily lead to possible security problems, if the code is not very well thought of. | Off | |
Language Options | safe_mode | Off | ||
File Uploads | upload_max_filesize | Maximum allowed size for uploaded files. | 2M |
[ Go Back ]