hey there,
i had been messing with this calendar for a while, and i like it too.
there are some wierd things with it, for sure.
even though you may have changed your htaccess - wordpress creates return codes to the browser for it's own reasons.
i noticed after using this calendar, that some pages were 404's but should not be.
if you get a utility that allows you to see the HEADER info that the server is throwing back to your browser - you'll see that the page is actually created, but WP is sticking in a 404 with it - but the page content was there anyway!
funnier still, is that IE and firefox react differently to the 404 *with* the page content, sometimes showing it, sometimes not.
i found that the solution for me anyway, was to go into the wp-includes/classes.php file
and insert these lines:
if (!empty($request_match) &&
(preg_match("!^calendar/?$!", $request_match) ||
preg_match("!^calendar/([0-9]+)/([a-z]+)/?$!", $request_match))) {
unset($error);
unset($_GET['error']);
return;
}
well, i did this months ago! now i need to review, but i'll be back to make a more sensible statement about it shortly - but check the headers, the adventure begins there...
ps - it IS a nice calendar, i'm changing mine to allow links in the events, and a few other niceties that it should have.
PS - the css for it can certainly be seperated out, it's all hardcoded in the calendar.php file. i had just started that when i had to take a couple months away - kerian's css is not that great when it comes to the way he has layed out the table, and especially considering his use of nowrap.....but nonetheless he has done a nice job, it just needs that extra little push.
ok i'll post more when i have re-dug into this - back on the case! good luck and hth.