Can someone tell me whats wrong? Is it a mysql error or a php error? Also how to fix if possible. Thanks.
PHP error, you are trying to do something that needs so much memory, edit your PHP.ini to get more memory.. or optimise your script.
Add: set_time_limit(300); ini_set('memory_limit', '20000M'); Code (markup): To the top of your script. Change the 20000M accordingly.