Home General questions Troubleshooting The 'Allowed memory size of 67108864 bytes...
The 'Allowed memory size of 67108864 bytes exhausted ... ' error
This error indicates that CS-Cart PHP script is trying to use more memory than a PHP script is allowed on your server.
To increase the memory limit:
- Open the config.php file located in the root CS-Cart directory.
- Find the following line of the code there:
@ini_set('memory_limit', '12M');
and replace it with this one:
@ini_set('memory_limit', '128M'); - Save the file.
