Quote:
Originally Posted by AndrewD
I wonder... Second similar report. Do you have several hacks installed on your site?
Go to VB/admin/maintenance/phpinfo and take a look at the memory_limit setting.
Possibly, you've only got 8MB memory available to php - which is not enough.
If so, try creating the following plugin, hooked onto ldm_start
Code:
ini_set('memory_limit', 12000000);
|
I've managed to get my web host to change my setting to 12m and it's now working .. thanks for the quick pointer in the right direction