How to: Increase PHP memory limit

In the php.ini file

In your php.ini file search for memory_limit property and modify it like bellow:

memory_limit = 128M

In the .htaccess file

In your .htaccess file add the instructions bellow, changing the value for the memory (expressed in bytes):


  php_value memory_limit 134217728

In the PHP script file

In your .php file add the following line:

ini_set('memory_limit', '128M');