Hi guys

I've been trying to install additional modules (e-commerce module to be precise) to a xampp localhost drupal 6.11. It is giving me the following error message "Allowed Memory Size Exhausted"

Anyone with an idea on what to do about this? I would really appreciate it.

Comments

gausarts’s picture

Add this to your htaccess:

php_value memory_limit 96M
php_value max_execution_time 1000
php_value max_input_time 1000

Or this to your settings.php:

ini_set('memory_limit',     '96M');
ini_set('max_execution_time',     1000);
ini_set('max_input_time',     1000); 

love, light n laughter

scoutbaker’s picture

This is also covered in the documentation. You also could search on your error message and find the hundreds of times that the same question has been asked and answered. Why wait for an answer if it's right there waiting for you?