Bug #11001 Cannot create or view an issue
Submitted: 31 May 2005 19:49 Modified: 7 Jun 2005 18:42
Reporter: Ken Brown Email Updates:
Status: Closed Impact on me:
None 
Category:Eventum Severity:S1 (Critical)
Version:1.5.3 OS:Windows (Windows 2003)
Assigned to: Joao Prado Maia CPU Architecture:Any

[31 May 2005 19:49] Ken Brown
Description:
Windows 2003 SP1
Apache 2.0.54
PHP 5.0.4
When ever I create an issue the issue appears to create but I get the apache error below.
This error also occurs whenever I attempt to view an issue
Instruction at 0x7c8824b2 referenced memory at 0x553d5a54 Memory could not be read.
All other PHP services (and other apps) appear to be working correctly.

How to repeat:
Create a new issue or review an existing issue from a clean install
[1 Jun 2005 16:15] Joao Prado Maia
Ken,

So you are using 1.5.4? That's not even released yet, do you mean a nightly snapshot of Eventum from BitKeeper? If so, from what day?

--Joao
[1 Jun 2005 17:09] Ken Brown
Sorry meant to say version 1.5.3
[7 Jun 2005 14:33] Joao Prado Maia
Ken,

Can you check the following page and see if this is related to your problem?

  http://lists.mysql.com/eventum-users/1578

It seems unlikely because you are not using IIS 6.0, but you never know. I cannot reproduce your error on a Windows XP box.

However, I do remember getting a similar error quite a few months ago, and that was also related to the date handling in PEAR_Date. If you want to try the fix described on the URL above, open /path-to-eventum/include/pear/Date/TimeZone.php and change the function "inDaylightTime" to the following:

    function inDaylightTime($date)
    {
        return date('I');
    }

Not really a perfect fix, but enough to see if the error goes away.

--Joao
[7 Jun 2005 18:42] MySQL Verification Team
According with your post at:

From: ken.brown@dialwrap.co.uk
To: dev-bugs@mysql.com
Subject: RE: Bug #11001 [Opn->Fbk]: Cannot create or view an issue 

Worked fine - I'll have a look and see if I can get a windows 2k3 fix of
some sort working

Ken
[19 Nov 2005 5:26] Yu Zhao
I experienced similar problem, I can create an issue, but when I try to view the issue, I got blank page. I followed the instructions to change inDaylightTime function, it worked.