I am having BIG issues trying to upgrade
Permalink
Currently Running 5.7.4.2
Trying to upgrade gives me
public_html/concrete/src/File/Service/File.php:330 Allowed memory size of 67108864 bytes exhausted (tried to allocate 41132182 bytes)
when I added the php.ini with
ini_set('memory_limit', '128');
I got either more memory allocation errors or a fatal error clas PDO not found
please help!!!!
Trying to upgrade gives me
public_html/concrete/src/File/Service/File.php:330 Allowed memory size of 67108864 bytes exhausted (tried to allocate 41132182 bytes)
when I added the php.ini with
ini_set('memory_limit', '128');
I got either more memory allocation errors or a fatal error clas PDO not found
please help!!!!
the setting in php.ini should be:
memory_limit = 128M;
you can use ini_set in the index.php in the root of your website before it calls the dispatcher:
ini_set('memory_limit','128M');