Further update.
When I comment out line 236 in index.php located in /common/, then the board will show up. The offending line was : "event::call('mods_initialised', $none); "
EDK 4.2.30.0 (YC-119.3 1.0)
Re: EDK 4.2.30.0 (YC-119.3 1.0)
Hi,
What branch did you use for your new install? The fix was committed to the 4.0-dev branch, not the 4.0 branch (which is the default).
Can you please verify that the changes in the linked commit are present in your installation?
Best Regards,
Salvoxia
What branch did you use for your new install? The fix was committed to the 4.0-dev branch, not the 4.0 branch (which is the default).
Can you please verify that the changes in the linked commit are present in your installation?
Best Regards,
Salvoxia
Re: EDK 4.2.30.0 (YC-119.3 1.0)
I just used the public branch, not the dev, sorry.
-
- Apprentice
- Posts: 62
- Joined: Sat Jan 31, 2009 03:23
Re: EDK 4.2.30.0 (YC-119.3 1.0)
Hi there,
Getting following error when trying to update the kB.
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 19215036 bytes) in /home/randomse/public_html/goe/update/CCPDB/file.cacher.php on line 26
I have updated my php memory allowance to 512mb but this didn't fix it.
Help appreciated
Thanks
Underwoodr
Getting following error when trying to update the kB.
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 19215036 bytes) in /home/randomse/public_html/goe/update/CCPDB/file.cacher.php on line 26
I have updated my php memory allowance to 512mb but this didn't fix it.
Help appreciated
Thanks
Underwoodr
Re: EDK 4.2.30.0 (YC-119.3 1.0)
Hi,
is this the error you get after you updated your memory_limit to 512M?
The error occurs while downloading the update, which is roughly 18.3 MB (hence the number of bytes it tries to allocate).
The error message states the limit as 32MB. If you still get the error, but it says (Allowed memory size of 536870912 bytes...), there must be something wrong.
If the allowed memory size in the error message is still the same as in the message you posted, your change did have no effect.
Best Regards,
Salvoxia
is this the error you get after you updated your memory_limit to 512M?
The error occurs while downloading the update, which is roughly 18.3 MB (hence the number of bytes it tries to allocate).
The error message states the limit as 32MB. If you still get the error, but it says (Allowed memory size of 536870912 bytes...), there must be something wrong.
If the allowed memory size in the error message is still the same as in the message you posted, your change did have no effect.
Best Regards,
Salvoxia
-
- Apprentice
- Posts: 62
- Joined: Sat Jan 31, 2009 03:23
Re: EDK 4.2.30.0 (YC-119.3 1.0)
Hi there,
This is the error i got before and after I swapped the memory limit from 32 to 512mb
This is the error i got before and after I swapped the memory limit from 32 to 512mb
Re: EDK 4.2.30.0 (YC-119.3 1.0)
Hi,
as I said, if the numbers match, your change to the memory limit did not work and the limit still is 32MB when running that code.
You can try and set it from within EDK by adding this line to index.php so the top of it looks like this:
That's taken straight from the cron base file, which does this for all cron jobs.
Best Regards,
Salvoxia
as I said, if the numbers match, your change to the memory limit did not work and the limit still is 32MB when running that code.
You can try and set it from within EDK by adding this line to index.php so the top of it looks like this:
Code: Select all
<?php
/**
* Request forwarder, look at common/index.php for the action and license
* @package EDK
*/
// Enable custom error handling.
require_once ('common/includes/class.edkerror.php');
@ini_set('memory_limit', '1024M');
Best Regards,
Salvoxia
-
- Apprentice
- Posts: 62
- Joined: Sat Jan 31, 2009 03:23
Re: EDK 4.2.30.0 (YC-119.3 1.0)
Hi,
I shall try that soon,
I have sent a support ticket to my hosters as my PHP info in cPanel shows it as 32mb, but if i do phpinfo it shows 512m, so there must be a config conflict somewhere.
I shall try that soon,
I have sent a support ticket to my hosters as my PHP info in cPanel shows it as 32mb, but if i do phpinfo it shows 512m, so there must be a config conflict somewhere.
-
- Apprentice
- Posts: 62
- Joined: Sat Jan 31, 2009 03:23
Re: EDK 4.2.30.0 (YC-119.3 1.0)
problem fixed, apparently the php ini was apparently being loaded from another folder.
thanks for the help o/
thanks for the help o/