1
0
mirror of https://github.com/php/web-php.git synced 2026-03-30 19:22:17 +02:00
Files
archived-web-php/oz/s_limits.php3
2000-03-08 02:10:21 +00:00

15 lines
558 B
PHP

<?php require "header.inc"?>
<H1>Limits configuration</H1>
<font size=+3>You can set a limit on the amount of memory a script can allocate.</font>
<?example("memory_limit = 8388608");?><BR>
<font size=+3>You can set a limit on the max cpu time a script can execute for.</font>
<?example("max_execution_time = 30");?><BR>
<font size=+3>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.</font>
<?example("safe_mode = on");?><BR>
<?php require "footer.inc"?>