PHP
From wiki.vincentkong.com
Contents |
Installing command-line interpreter
$ apt-get install php5-cli
PHP configuration
Edit /etc/php5/apache2/php.ini
Increase max memory size script may consume
memory_limit = 32M
Increase max allowed size for uploaded files
upload_max_filesize = 5M
Downgrade from PHP5.3 to PHP5.2 on Ubuntu 10.04
Main article: Downgrade from PHP5.3 to PHP5.2 on Ubuntu 10.04
Disable deprecated errors for PHP 5.3
Edit /etc/php5/apache2/php.ini
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED ; Do not display any errors display_errors = Off ; Do not log any errors log_errors = Off