Configure phpini » History » Version 4
Neil Voss, 05/28/2010 10:09 AM
1 | 1 | Amber Herold | h1. Configure php.ini |
---|---|---|---|
2 | |||
3 | Edit the following items in php.ini (found as /etc/php.ini on CentOS and /etc/php5/apache2/php.ini on SuSE) so that they look like the following: |
||
4 | |||
5 | <pre> |
||
6 | 4 | Neil Voss | error_reporting = E_ALL & ~E_NOTICE |
7 | |||
8 | display_errors = On |
||
9 | 1 | Amber Herold | |
10 | register_argc_argv = On |
||
11 | |||
12 | short_open_tag = On |
||
13 | |||
14 | max_execution_time = 300 ; Maximum execution time of each script, in seconds |
||
15 | max_input_time = 300 ; Maximum amount of time each script may spend parsing request data |
||
16 | memory_limit = 256M ; Maximum amount of memory a script may consume (8MB) |
||
17 | </pre> |
||
18 | |||
19 | You may want to increase max_input_time and memory_limit if the server is heavily used. At NRAMM, max_input_time=600 and memory_limit=4000M. |
||
20 | 2 | Amber Herold | |
21 | |||
22 | ______ |
||
23 | |||
24 | [[Install Web Server Prerequisites|< Install Web Server Prerequisites]] | [[Install Apache Web Server|Install Apache Web Server >]] |
||
25 | 3 | Amber Herold | |
26 | ______ |