File Uploads
Table 4-7. File Uploads Configuration Options
| Name |
Default |
Changeable |
| file_uploads |
"1" |
PHP_INI_SYSTEM |
| upload_tmp_dir |
NULL |
PHP_INI_SYSTEM |
| upload_max_filesize |
"2M" |
PHP_INI_SYSTEM|PHP_INI_PERDIR |
Here's a short explanation of the configuration directives.
- file_uploads boolean
-
Whether or not to allow HTTP file uploads.
See also the upload_max_filesize, upload_tmp_dir,
and post_max_size directives.
- upload_tmp_dir string
-
The temporary directory used for storing
files when doing file upload. Must be writable by
whatever user PHP is running as. If not specified PHP will use the system's default.
- upload_max_filesize integer
-
The maximum size of an uploaded file.
General SQL
Table 4-8. General SQL Configuration Options
| Name |
Default |
Changeable |
| sql.safe_mode |
"0" |
PHP_INI_SYSTEM |
Here's a short explanation of the configuration directives.
sql.safe_mode boolean
Debugger Configuration Directives
| Caution |
Only PHP
3 implements a default debugger, for more information
see Appendix E. |
- debugger.host string
-
DNS name or IP address of host used by the
debugger.
- debugger.port string
-
Port number used by the debugger.
- debugger.enabled boolean
-
Whether the debugger is enabled.
|