Contact Systems Misc |
IntroductionUser home pages are served from ix.cs.uoregon.edu. PHP scripts with the .php extension will be executed as CGI scripts automatically. This make makes it appear that they are run with mod_php, but there are some restrictions listed under Pitfalls. Runtime ConfigurationYou can change some PHP default values at runtime by putting your settings in a file named memory_limit = 32M ; Maximum amount of memory a script may consume (8MB) upload_max_filesize = 10M ; Maximum allowed size for uploaded files. (10MB) You may want to create an info.php file that will tell you the current settings. <?php // Display a list of PHP compile-time features phpinfo(); Pitfalls
See AlsoReferencesPHP: .user.ini files (PHP Manual) |