If you are seeing a php error similar to: "xxxxxxxx bytes exhausted", then you can increase the allowed memory limit in php to get past the error.
1.) Open init.php located at /admin/com/init.php for editing
2.) Go to line 217 (or search for "memory_limit")
3.) Change the '64' in ini_set('memory_limit', '64M'); to a higher value than your error message.
E.g. If your error looks like "67108864 bytes" try something like: ini_set('memory_limit', '128M');

The article has been updated successfully.