harrir
Forum Replies Created
-
Forum: Plugins
In reply to: Page error when activating Event CalendarI managed to fix it! All praise to Chris Janton for the fix. I sent a mail to the EC3 mailing list and quickly got a great anwser.
You can find it all here over at the mailing list archive: http://penguin.firetree.net/pipermail/eventcalendar/2011-January/006360.html.
But I’ll save you the trouble and just tell you what I did.
You’ll need to edit the eventcalendar3.php. Just go to the plugins list and find Event Calendar in the list and got the link that says edit.
The code in the text area on the page you arrive at will most likely be eventcalendar3.php.What you need to do is to remove the ampersand from the argument in the function definitions.
Basically make this line:
function ec3_filter_getarchives_where(&$where)
look like this:
function ec3_filter_getarchives_where($where)See? No & sign. That’s how we want it. Just remove every ampersand from the argument in the function definitions not other places. It will look very much like the example above. I just searched for the ampersand symbol (&). Its actually pretty easy. 🙂
This fixed my problem. Again, props to Chris Janton for the help! I hope it will help some others as well. =)
Forum: Plugins
In reply to: Page error when activating Event CalendarI see this is an old post, but I have the same problem. And also think it is related to the php version. I recently moved a WP install to another server and then Event Calendar stopped working.
What can I do to fix it? Do they/he still maintain it?