Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 136753 bytes) in /home/alien/Desktop/1/scanner.php on line 166
this is 166 line of the PHP code:
$text[$i] = curl_multi_getcontent ($curl[$i]);
is here any way to get around this by emptying RAM or something, sorry I’m not a programmer
It looks like your server is configured with 32MB of memory allocated to PHP. Without knowing more about your app, that sounds like a reasonable amount, but there are certainly apps that require more.
In your
php.inifile, you can increase the memory limit, like so:Note that consistently increasing the amount of memory allocated to your application is often the sign of a bigger problem. You might also want a developer to look through the code for any data that is not being properly cleaned up.