DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=39930>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=39930 Summary: Application Popup hangs the Server Product: Apache httpd-2 Version: 2.0.55 Platform: Other OS/Version: Windows Server 2003 Status: NEW Keywords: ErrorMessage Severity: major Priority: P2 Component: All AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] I'm running two Apache 2.0.55 SSL, reverse proxy configuration. Once per day(at least) one request generates the error: Application popup: Apache.exe - Application Error : The instruction at "0x008279c6" referenced memory at "0x5e639389". The memory could not be "written". Click on OK to terminate the program And it waits for the click! The system is unattended being production system, so no one is phisycally there to press ok. Looking on the Microsoft site i've found an article saying to modify the parameter ErrorMode in the registry to get rid of the Popups. It didn't help me, so i looked in the code, dso.c and i've found this : /* Prevent ugly popups from killing our app */ em = SetErrorMode(SEM_FAILCRITICALERRORS); os_handle = LoadLibraryEx(path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); if (!os_handle) os_handle = LoadLibraryEx(path, NULL, 0); if (!os_handle) rv = apr_get_os_error(); else rv = APR_SUCCESS; SetErrorMode(em); } Well, it looks like its fixed, but im going on getting these nagging errors. Any suggestion guys? -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
