logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: How to install apache
Author
marish



Joined: 28 Nov 2011
Posts: 4

PostPosted: Mon 28 Nov '11 17:03    Post subject: How to install apache Reply with quote

I am new to apache
I m using windows 7 os
once i start it shows like this
httpd.exe: Could not reliably determine the server's
fully qualified domain name, using fe80::2df2:c0fd:f286:a5e4 for ServerName
Back to top
Steffen
Moderator


Joined: 15 Oct 2005
Posts: 3091
Location: Hilversum, NL, EU

PostPosted: Mon 28 Nov '11 20:24    Post subject: Reply with quote

Is Apache running ?

You say "..like this..", this is a warning and Apache should run.

Steffen
Back to top
marish



Joined: 28 Nov 2011
Posts: 4

PostPosted: Tue 29 Nov '11 15:24    Post subject: Reply with quote

Steffen wrote:
Is Apache running ?

You say "..like this..", this is a warning and Apache should run.

Steffen


How to install apache on windows 7 step by step instructions plz
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7364
Location: Germany, Next to Hamburg

PostPosted: Tue 29 Nov '11 15:47    Post subject: Reply with quote

There is a topic about this: Fast, Reliable and Proven Setup :: Apache PHP MySQL Perl

since you already installed apache you can skip that part. if you still have a question please ask again.
Back to top
marish



Joined: 28 Nov 2011
Posts: 4

PostPosted: Tue 29 Nov '11 19:38    Post subject: Reply with quote

i just installed apache2 on windows 7 after install it takes me to localhost website and shows a message "It Works".
Then i restart the system and open localhost it shows me problem loading the page so i tried to start the apache on the taskbar then it pop up a message called "The requested operation has failed!"

Then i tried the command C:\programs files\apache software foundation\apache2.2\bin\httpd -S
It shows me a error message
httpd: Syntax error on line 495 of C:\programs files\apache software foundation\apache2.2\conf\httpd.conf: Cannot load C:\programs files\apache software foundation\apache2.2\php5apache2_2.dll into server: The specified module could not be found
Back to top
glsmith
Moderator


Joined: 16 Oct 2007
Posts: 2268
Location: Sun Diego, USA

PostPosted: Tue 29 Nov '11 22:44    Post subject: Reply with quote

This going to be one of a couple things

you have Loadmodule php5_module modules/php5apache2_2.dll
and the module is not in the Apache modules folder but in the php folder

you have the php5_apache2.2.dll in Apache's module folder but it cannot find other needed dlls in the php folder (php5ts.dll or other).

You are running an Apache from apache.org (this seems to be the case) which is VC6 and you are trying to load the php module of a VC9 built PHP, this will not work, and is why at windows.php.net on the left column under "Which version do I choose?" it states not to do this, and says you can get VC9 versions here.
Back to top
marish



Joined: 28 Nov 2011
Posts: 4

PostPosted: Wed 30 Nov '11 6:06    Post subject: Reply with quote

Finally i solved the problem

The apache gets works after disabling UAC in control panel and the following codes hepled me

#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
PHPIniDir "c:/program files/php"
LoadModule php5_module "c:/program files/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
#END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL

Here i make these changes(my Dir) and its works fine at last

Thanks for reply
Back to top


Reply to topic   Topic: How to install apache View previous topic :: View next topic
Post new topic   Forum Index -> Apache