[EventCalendar] EventCalendar 3.1 not showing up at all in IE7 or IE6

Alex Tingle alex at firetree.net
Wed Nov 15 19:09:31 UTC 2006


Hi Heather,

The problem is caused by a missing "end-comment". Virtually the whole  
page is commented-out.

Here's a fragment of the HTML on your site:

> 	<script type='text/javascript'><!--
> 	ec3.start_of_week=0;
> 	ec3.month_of_year=new Array('January','February',[...]'December');
> 	ec3.month_abbrev=new Array('Jan','Feb',[...]'Dec');
> 	ec3.myfiles='http://www.cemarp.org/[...]/eventcalendar3';
> 	ec3.home='http://www.cemarp.org';
> 	ec3.hide_logo=1;
> 	ec3.viewpostsfor="View posts for %1$s %2$s";
> 	</script>

Notice how it STARTS with a "begin-comment": <!--
But the "end-comment": --> is missing. On mine the last line looks like  
this...

> 	// --></script>

There is no way that EventCalendar can generate that problem. I think  
you must have edited eventcalendar3.php, and inadvertently introduced  
the bug. Get a fresh copy or manually fix it, and you should be fine.

-Alex

--
:: Let me solve your problems: http://www.firetree.net/consulting/
:: alex.tingle AT firetree.net  +44-7901-552763

On 15 Nov 2006, at 18:45, Heather Greer wrote:

> Hi Alex,
>
> Thanks for responding.  It's the same one I was working on before.
> http://www.cemarp.org/event-calendar/
> I do not see any error messages.  I've tried it in IE 7 and IE 6 and  
> both bring up a blank page.
>
> Any suggestions?
>
> Heather Greer
> SpinningSilk Multimedia
> 864-907-5417
> heather.greer at spinningsilk.com
> http://www.spinningsilkmultimedia.com
>
>
>
>
> On Nov 15, 2006, at 12:56 PM, Alex Tingle wrote:
>
>> Hi Heather,
>>
>> Have you got a URL so I can see the problem myself?
>>
>> Which version of IE? Does it report any errors?
>>
>> -Alex
>>
>> --
>> :: Let me solve your problems: http://www.firetree.net/consulting/
>> :: alex.tingle AT firetree.net  +44-7901-552763
>>
>> On 15 Nov 2006, at 17:33, Heather Greer wrote:
>>
>>> Please help!  I installed EventCalendar 3.1 and finally got it  
>>> working well in Firefox, but now it does not show up at all in IE.   
>>> All I get is a blank page.
>>>
>>> Any help is appreciated.
>>>
>>> Thanks,
>>>
>>> Heather Greer
>>> SpinningSilk Multimedia
>>> 864-907-5417
>>> heather.greer at spinningsilk.com
>>> http://www.spinningsilkmultimedia.com
>>>
>>>
>>>
>>>
>>> On Nov 15, 2006, at 7:00 AM, eventcalendar-request at firetree.net  
>>> wrote:
>>>
>>>> Send EventCalendar mailing list submissions to
>>>> 	eventcalendar at firetree.net
>>>>
>>>> To subscribe or unsubscribe via the World Wide Web, visit
>>>> 	http://penguin.firetree.net/cgi-bin/mailman/listinfo/eventcalendar
>>>> or, via email, send a message with subject or body 'help' to
>>>> 	eventcalendar-request at firetree.net
>>>>
>>>> You can reach the person managing the list at
>>>> 	eventcalendar-owner at firetree.net
>>>>
>>>> When replying, please edit your Subject line so it is more specific
>>>> than "Re: Contents of EventCalendar digest..."
>>>>
>>>>
>>>> Today's Topics:
>>>>
>>>>    1. Re: Another Weird Issue (Alex Tingle)
>>>>    2. AJAX Not Working (Dave Sabol)
>>>>    3. Another Weird Issue (Dave Sabol)
>>>>    4. Re: Italian translation and a small problem in the	sidebar  
>>>> (Jimmi)
>>>>
>>>>
>>>> -------------------------------------------------------------------- 
>>>> --
>>>>
>>>> Message: 1
>>>> Date: Tue, 14 Nov 2006 21:34:17 +0000
>>>> From: Alex Tingle <alex at firetree.net>
>>>> Subject: Re: [EventCalendar] Another Weird Issue
>>>> To: Support for EventCalendar plugin <eventcalendar at firetree.net>
>>>> Message-ID: <20061114213417.73e6693a at localhost.localdomain>
>>>> Content-Type: text/plain; charset=US-ASCII
>>>>
>>>> On Tue, 14 Nov 2006 16:05:36 -0500
>>>> "Dave Sabol" <desabol at gmail.com> wrote:
>>>>
>>>>> Alex,
>>>>>
>>>>> This is an odd issue that I haven't seen mentioned yet as well. I  
>>>>> just
>>>>> noticed on a few of my WP Pages, the schedule box is showing up on  
>>>>> my
>>>>> page...not even event related...just there...hanging out and  
>>>>> looking not so
>>>>> pretty...
>>>>>
>>>>> http://www.sprcc.net/ministries/ is an example of this where the  
>>>>> schedule is
>>>>> appearing...
>>>>>
>>>>> http://www.sprcc.net/sacraments/baptism/ is an example where it is  
>>>>> not
>>>>
>>>> Yikes. That's not good. Some of your pages have schedules attached  
>>>> to
>>>> them. The date is back in August, so I don't think it's an EC  
>>>> upgrade
>>>> issue. Could it be a WP upgrade issue? Did you upgrade either EC or  
>>>> WP
>>>> on 22nd August?
>>>>
>>>> Anyway, you have two options:
>>>>
>>>> 1. Fire up PHPmyadmin (or whatever) and manually purge the unwanted  
>>>> rows
>>>>    from wp_ec3_schedule table.
>>>>
>>>> 2. Backup your database(!!), and then try this SQL:
>>>>
>>>>    DELETE FROM wp_ec3_schedule WHERE post_id in
>>>>    (SELECT ID FROM wp_posts WHERE post_status='static');
>>>>
>>>> Let us know how you get on.
>>>>
>>>> -Alex
>>>>
>>>> -- :: Let me solve your problems:  
>>>> http://www.firetree.net/consulting/
>>>> :: alex.tingle AT firetree.net  +44-7901-552763
>>>>
>>>>
>>>>
>>>> ------------------------------
>>>>
>>>> Message: 2
>>>> Date: Tue, 14 Nov 2006 17:08:45 -0500
>>>> From: "Dave Sabol" <desabol at gmail.com>
>>>> Subject: [EventCalendar] AJAX Not Working
>>>> To: eventcalendar at firetree.net
>>>> Message-ID:
>>>> 	<a162aac10611141408oc81278dpbb7ffbe97afada51 at mail.gmail.com>
>>>> Content-Type: text/plain; charset="iso-8859-1"
>>>>
>>>> Alex,
>>>>
>>>> That was it...I knew it was in there somewhere and I knew you spent  
>>>> time
>>>> creating the workaround for the body.onload call. I just couldn't  
>>>> find it.
>>>>
>>>> Thank you for the fix...it was driving me crazy!
>>>>
>>>> Dave
>>>> -------------- next part --------------
>>>> An HTML attachment was scrubbed...
>>>> URL:  
>>>> http://penguin.firetree.net/pipermail/eventcalendar/attachments/ 
>>>> 20061114/e7d5c4c6/attachment-0001.html
>>>>
>>>> ------------------------------
>>>>
>>>> Message: 3
>>>> Date: Tue, 14 Nov 2006 17:27:00 -0500
>>>> From: "Dave Sabol" <desabol at gmail.com>
>>>> Subject: [EventCalendar] Another Weird Issue
>>>> To: eventcalendar at firetree.net
>>>> Message-ID:
>>>> 	<a162aac10611141427w3f0cdd05p85dcd9a121b62391 at mail.gmail.com>
>>>> Content-Type: text/plain; charset="iso-8859-1"
>>>>
>>>> Alex,
>>>>
>>>> Again you were spot on with your advice. I went into PHP Admin and  
>>>> found out
>>>> that the table was all messed up. Some time in August, my host  
>>>> upgraded WP.
>>>> I guess I was either asleep at the wheel or was simply unaware of  
>>>> what I
>>>> needed to do. Needless to say, after I made the changes things  
>>>> appear to be
>>>> back to normal...or at least appear to be that way.
>>>>
>>>> Thanks so much.
>>>> Dave
>>>> -------------- next part --------------
>>>> An HTML attachment was scrubbed...
>>>> URL:  
>>>> http://penguin.firetree.net/pipermail/eventcalendar/attachments/ 
>>>> 20061114/14fa4717/attachment.html
>>>>
>>>> ------------------------------
>>>>
>>>> Message: 4
>>>> Date: Wed, 15 Nov 2006 06:21:20 +0100
>>>> From: Jimmi <jimmi at libero.it>
>>>> Subject: Re: [EventCalendar] Italian translation and a small problem
>>>> 	in the	sidebar
>>>> To: Support for EventCalendar plugin <eventcalendar at firetree.net>
>>>> Message-ID: <20061115052120.GA6561 at jimmi.home>
>>>> Content-Type: text/plain; charset=utf-8
>>>>
>>>> On 141106 alle 19:20, Alex Tingle wrote:
>>>>> Sorry to hear that you are having  trouble. Please give me a URL  
>>>>> where
>>>>> I can see the problem.
>>>>
>>>> Hi Alex,
>>>>
>>>> thanks for you reply. The test site is here:
>>>> http://www.7girello.net/marina/
>>>>
>>>> As you  may see in the  home page only one  post is shown in  the  
>>>> recent
>>>> posts (Notizie Recenti), but in any other page also the event  
>>>> "Corso per
>>>> Ragazzi" appears.
>>>> -- 
>>>>    ---         _   o       |   Perche' denunciare il reddito dopo  
>>>> il   |
>>>>    / immi   ---  _/\_>     |         bene che vi ha fatto? MM        
>>>>    |
>>>> (_/          -  O,> / O    |                                         
>>>>    |
>>>>
>>>>
>>>>
>>>> ------------------------------
>>>>
>>>> _______________________________________________
>>>> EventCalendar mailing list
>>>> EventCalendar at firetree.net
>>>> http://penguin.firetree.net/cgi-bin/mailman/listinfo/eventcalendar
>>>>
>>>>
>>>> End of EventCalendar Digest, Vol 13, Issue 23
>>>> *********************************************
>>>>
>>>
>>>
>>> _______________________________________________
>>> Blog: http://wpcal.firetree.net/
>>> EventCalendar at firetree.net mailing list
>>> Unsubscribe: http://penguin.firetree.net/eventcalendar
>>
>




More information about the EventCalendar mailing list