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

Gigsniffr is now in beta

I’m so glad the code’s finished now: I don’t plan to add any changes until perhaps after it’s been handed in, when work can start on it again. All I have to do now is the write-up, which is no mean feat either… deadline Friday.
Here are some screenshots:
A sample search page:
 
A sample events page:
 
A [...]

Uncategorized

Gigsniffr

Hey y’all. To address the ‘issue’ (it’s my dissertation) of Gigsniffr… Well, I’m doing it for my undergraduate final year project. The aim is to build a meta-layer on top of all the other sources of gig tour date information t0 provide an extensible alerting gig tracking database with a web front-end and an public [...]

development