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!!!!

 
WebcentricLtd replied on at Permalink Reply
hello
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');
seanbradley replied on at Permalink Reply
so it now looks like

<?php
memory_limit = 128M;
require('concrete/dispatcher.php');


and nothing pulls up on the site at alll....
WebcentricLtd replied on at Permalink Reply
<?php
ini_set('memory_limit','128M');
require('concrete/dispatcher.php');