1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 19:52:29 +02:00
Files
archived-web-php/oreilly99/s_limits.php3
1999-08-21 16:11:20 +00:00

15 lines
559 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 amount of memory a script can allocate.</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"?>