Changes between Version 19 and Version 20 of NewLiveServer


Ignore:
Timestamp:
10/16/10 19:56:25 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewLiveServer

    v19 v20  
    2323{{{ 
    2424extension=uploadprogress.so 
     25}}} 
     26 
     27The, default php.ini files which had these changes: 
     28 
     29{{{ 
     30expose_php = Off 
     31memory_limit = 256M 
     32extension=uploadprogress.so 
     33}}} 
     34 
     35Was moved to php.ini.dist.tweaked and then /usr/share/doc/php5-common/examples/php.ini-recommended was copied to /etc/php5/apache2/php.ini and a new /etc/php5/apache2/conf.d/uploadprogress.ini file was created with this in it: 
     36 
     37{{{ 
     38extension=uploadprogress.so 
     39}}} 
     40 
     41And /etc/php5/apache2/php.ini was edited and these things were changed: 
     42 
     43{{{ 
     44expose_php = Off 
     45memory_limit = 256M      ; Maximum amount of memory a script may consume (128MB) 
     46error_log = syslog 
     47post_max_size = 12M 
     48upload_max_filesize = 12M 
     49display_errors = On 
    2550}}} 
    2651