I am running online examination website on my localhost server. but when i have attached 8 another machines with LAN for conduct test. so it generate alert error message:-

httpd.exe Application error

The instruction at "0x006fb17f" referenced memory at "0x028a1e20". The memory could not be "Read".

Click on OK to terminate.

Click on Cancel to debug.

I am using PHP+MySQL on windows and XAMPP s/w installed at my server.

Is this message for my server RAM? Because my server RAM is 512 MB.

I can't understand. Can anybody help me, plz.

link|improve this question
feedback

2 Answers

Either one or more of this:

  1. Broken HTTP server
  2. Wrong written web application
  3. Interference with database server
  4. Broken or overheated mainboard, CPU, memory
  5. Application firewalls that block certain access
  6. Virus scanners that block access to memory
  7. whatever ...
link|improve this answer
2. Wrong written web application - it couldn't give such error, if you use only static html and php. 5. Application firewalls that block certain access - this is not firewall problem. 1,3,4,6,7 - this realy may happen. – Selivanov Pavel Oct 20 '11 at 13:14
1  
@SelivanovPavel Badly written php apps have been known to generate segfaults before - I've seen it several times. – Kvisle Oct 20 '11 at 19:30
Hmm... that's strange, PHP is high-level language, it should not have direct access to memory and should have failsafe i/o and system calls. – Selivanov Pavel Oct 21 '11 at 1:49
feedback

The most probable causes are:

  • broken httpd.exe. Try to replace it with right one

  • one of apache modules is broken or compiled for another version. Try disabling LoadModule directives and see, if error disappear. Note, that in XAMPP LoadModule directives may be placed in many config files, not in one

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.