Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 15763254 bytes) in /customers/domain.de/domain.de/httpd.www/libs/ez_sql_core.php on line 374
Könnte auch ein PHP Problem sein, siehe http://www.php.net/manual/en/ini.core.php#ini.memory-limit. Versuch mal am Anfang des Scripts memory_limit zu disablen mit
ini_set('memory_limit', -1);
~JJ