Using ini_set(“memory_limit”, “-1”) and still out of memory
I'm processing an old database php array to a new database. The data .php files are in total around 220 MB large. I've inserted these lines in the script so that it should run fine: ini_set("memory_limit", "-1"); set_time_limit(0); This is how I include the products: // The exports made by PHPMYADMIN, exported as PHP-Array require_once 'export/tx_ttproductsv2_products.php'; require_once 'export/tx_ttproductsv2_keyword.php'; require_once 'export/tx_ttproductsv2_keywords_in_products.php'; require_once 'export/tx_ttproductsv2_typebook.php'; require_once 'export/tx_ttproductsv2_typegospel7.php';