mirror of
https://github.com/php/web-php.git
synced 2026-03-24 15:22:19 +01:00
17 lines
507 B
PHP
Executable File
17 lines
507 B
PHP
Executable File
<?php require "header.inc"?>
|
|
<H1>Limits configuration</H1>
|
|
|
|
<UL>
|
|
<LI>You can set a limit on the amount of memory a script can allocate.
|
|
<?example("memory_limit = 8388608");?>
|
|
<LI>You can set a limit on the amount of memory a script can allocate.
|
|
<?example("max_execution_time = 30");?>
|
|
<LI>Safe mode restricts pages to opening files that are owned
|
|
by the same user id as the script is owned by. Also adds the uid
|
|
to authentication realms.
|
|
<?example("safe_mode = on");?>
|
|
</UL>
|
|
|
|
|
|
<?php require "footer.inc"?>
|