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 | .:/usr/lib/php:/usr/local/lib/php | ||
| Resource Limits | max_execution_time | Maximum execution time of each script, in seconds | 50 | |
| Resource Limits | memory_limit | Maximum amount of memory a script may consume (8MB) | 8M | |
| Data Handling | register_globals | GET, POST, Cookie, Environment and Built-in variables (G, P, C, E & S respectively, often referred to as EGPCS or GPC). Registration is done from left to right, newer values override older values. Whether or not to register the EGPCS variables as global | On | |
| Language Options | safe_mode | passed by reference at function-call time. This method is deprecated, and is likely to be unsupported in future versions of PHP/Zend. The encouraged method of specifying which arguments should be passed by reference is in the function declaration. You're encouraged to try and turn this option Off, and make sure your scripts work properly with it, to ensure they will work with future versions of the language (you will receive a warning each time you use this feature, and the argument will be passed by value instead of by reference). Safe Mode | Off | |
| main | session.save_path | argument passed to save_handler | /tmp | |
| File Uploads | upload_max_filesize | Maximum allowed size for uploaded files | 2M | |
| main | zend_optimizer.version | 3.2.8 | ||
[ Go Back ]