XML-Sitemap, memory error at line 894 of class-snoopy.php

Allowed memory size of 262144 bytes exhausted (tried to allocate 500001 bytes)
I fixed this by editing /wp-includes/class-snoopy.php and added the following line above “$_data = fread($fp, $this->maxlength”); at line 894
so it looks like:
ini_set(’memory_limit’,’32M’); //Ian: Dunno why this was set wrongly
$_data = fread($fp, $this->maxlength); //wordpress continues…
I don’t know why I needed to do this, as memory_limit [...]

Uncategorized