2 of my members got extremely high defense and offense and lost their access to their village overview. I went and looked at the code and found very unnecessary code. To fix this i did the following:
open functions_conquest.php
Go to line 60, remove the whole for script and place down:
PHP Code:
$weapontotal = $weapon[stockCount] * $weapon[wPower];
array_push($count, $weapontotal);
Then do the same at line 88 i think. remove the whole for there and place down:
PHP Code:
$armourtotal = $armour[stockCount] * $armour[aPower];
array_push($count, $armourtotal);
That should fix the error of "too much memory allocated".