1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 15:22:19 +01:00
Files
archived-web-php/apachecon/s_limits.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

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"?>