News:

Support the VirtueMart project and become a member

Main Menu

Error message: memory exhausted

Started by uschmi, November 06, 2012, 17:17:09 PM

Previous topic - Next topic

uschmi

We do need some larger lists without pagination as well in frontend as in backend.
When trying to start a larger list we get this error message:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 117 bytes) in /www/htdocs/w00f0ad4/shop/libraries/joomla/language/language.php on line 797

Is there any solution for this memory problem?

bytelord

#1
Hello,

This one is related with your PHP options regarding to memory limit.

You could edit your php.ini file and import the following:

memory_limit = 128M
max_execution_time = 300
value upload_max_filesize 12M

If you don't have access to PHP configuration try to edit the htacaess file:
If you are using apache you have to rename the file to htaccess.txt .htaccess. Then under joomla global configuration you have to enable Use URL rewriting

After that edit your .htaccess and place the line:

php_value max_execution_time 300
php_value memory_limit 128M
php_value upload_max_filesize 12M

Depends on your needs

Take a look over here also: http://wiki.opensource-excellence.com/index.php?title=Changing_PHP_configuration_setting

Regards
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

uschmi