I've developed a plugin that works fine on a single site WP.
But when testing it on WPMU with subdomain, I get a 404 Not Found error.
The strange thing is that the content is loaded even though I get the error message - but the content is never displayed.
You can see a screenshot here:
http://www.stiengenterprises.com/download/tmp/jQuery_load_error.png
The jQuery code looks like this:
jQuery.post("/wp-content/plugins/wp-eventcal/eventcal_jquery.php", { instance: 'getEvent', eventID: eventID },
function(event)
{
alert(event); // This never fires
}, "json");
The alert never fires, but data is retrieved.
Any suggestions to how I can fix this?