Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.
Installing the Apache2 service
The Apache2 service is successfully installed.
Starting the Apache2 service
The Apache2 service is running.
ce] Apache/2.0.64 (Win32) configured -- resuming normal operations
[Thu Feb 02 18:46:57 2012] [notice] Server built: Oct 18 2010 01:36:23
[Thu Feb 02 18:46:57 2012] [notice] Parent: Created child process 1112
[Thu Feb 02 18:46:57 2012] [notice] Child 1112: Child process is running
[Thu Feb 02 18:46:57 2012] [notice] Child 1112: Acquired the start mutex.
[Thu Feb 02 18:46:57 2012] [notice] Child 1112: Starting 250 worker threads.
[Thu Feb 02 18:48:08 2012] [error] [client 127.0.0.1] File does not exist: F:/server/apache/Apache2/htdocs/favicon.ico, referer: http://127.0.0.1/
[Thu Feb 02 18:53:33 2012] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Thu Feb 02 18:53:33 2012] [notice] Child 1112: Exit event signaled. Child process is ending.
[Thu Feb 02 18:53:34 2012] [notice] Child 1112: Released the start mutex
[Thu Feb 02 18:53:35 2012] [notice] Child 1112: All worker threads have exited.
[Thu Feb 02 18:53:35 2012] [notice] Child 1112: Child process is exiting
[Thu Feb 02 18:53:35 2012] [notice] Parent: Child process exited successfully.

I thought the reason is in the firewall, but when I turn it off, nothing changes. I used cmd and checkout Test Configurations:

F:\server\apache\Apache2\bin>apache
Syntax error on line 60 of F:/server/apache/Apache2/conf/httpd.conf:
Cannot load F:/server/apache/modules/mod_actions.so into server: \xcd\xe5 \xed\x
e0\xe9\xe4\xe5\xed \xf3\xea\xe0\xe7\xe0\xed\xed\xfb\xe9 \xec\xee\xe4\xf3\xeb\xfc
.

In httpd.conf on line 60 you can see module load, so it's can't load a module I guess.

> 58 # LoadModule foo_module modules/mod_foo.so
> 59 # LoadModule actions_module modules/mod_actions.so 
> 60 LoadModule alias_module modules/mod_alias.so 
> 61 LoadModule asis_module
> 62 modules/mod_asis.so LoadModule auth_basic_module
> 63 modules/mod_auth_basic.so
> 64 #LoadModule auth_digest_module modules/mod_auth_digest.so

But how do I fix it?

share|improve this question
Did you install apache as part of another package like, say, XAMPP? – uSlackr Feb 2 '12 at 19:35
No, I installed it separately – Tolan Feb 3 '12 at 1:30
Are you sure that's the right httpd.conf? The line for loading mod_actions.so is commented out, and it's on line 59 instead of line 60 like the error message shows.. – Series8217 Feb 3 '12 at 17:39

1 Answer

download a new package and try again, I think your installation is corrupt (uninstall previous first)

share|improve this answer
Seems I need a good link with description "how to" install mysql+php+apache, and phpmyadmin. – Tolan Feb 3 '12 at 1:31
@Tolan the easiest way would be to install XAMPP. – Series8217 Feb 3 '12 at 17:44
I did mine, anyway thanks. – Tolan Feb 6 '12 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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