Monday, November 22, 2010

PHP Fatal error: Allowed memory size ...

How can I fix this? Easy... If your MySQL (or other PHP based software) show this message you can increase the allowed memory size for PHP.

Edit the php.ini and modify
memory_limit = 75M ; Maximum amount of memory a script may consume (8MB)

Increase uploading file size for QUIX

It's not Quix but PHP configuration what we need to config.

Easy way is to create a new .haccess file in the root directory of quix and add the lines:


php_value upload_max_filesize 10M
php_value post_max_size 10M


Another option is to edit the php.ini

Bye!!