Xampp and apache

63 views
Skip to first unread message

Njoy

unread,
Mar 13, 2010, 12:43:20 PM3/13/10
to DBIT TechTalk
Hi friends,

I need some help,

i can't access local host
tried 127.0.0.1 no success

here is a screenshot of xampp control panel

http://dl.dropbox.com/u/2895860/xampp.JPG

it shows apache as running but there is no green light!

also the error.log clipping

============================================================================

C:/xampp/htdocs/joomla/admin
[Thu Mar 11 11:09:31 2010] [warn] pid file C:/xampp/apache/logs/
httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Mar 11 11:09:42 2010] [notice] Apache/2.2.9 (Win32) DAV/2 mod_ssl/
2.2.9 OpenSSL/0.9.8i mod_autoindex_color PHP/5.2.6 configured --
resuming normal operations
[Thu Mar 11 11:09:42 2010] [notice] Server built: Jun 14 2008 19:02:12
[Thu Mar 11 11:09:42 2010] [notice] Parent: Created child process 192
[Thu Mar 11 11:09:43 2010] [notice] Child 192: Child process is
running
[Thu Mar 11 11:09:43 2010] [notice] Child 192: Acquired the start
mutex.
[Thu Mar 11 11:09:43 2010] [notice] Child 192: Starting 250 worker
threads.
[Thu Mar 11 11:09:43 2010] [notice] Child 192: Starting thread to
listen on port 443.
[Thu Mar 11 11:09:43 2010] [notice] Child 192: Starting thread to
listen on port 80.
[Thu Mar 11 14:15:23 2010] [error] [client 127.0.0.1] File does not
exist: C:/xampp/htdocs/joomla/templates/bridgeofhope, referer:
http://localhost/joomla/
[Thu Mar 11 14:15:23 2010] [error] [client 127.0.0.1] File does not
exist: C:/xampp/htdocs/joomla/templates/bridgeofhope, referer:
http://localhost/joomla/
[Thu Mar 11 14:19:22 2010] [error] [client 127.0.0.1] File does not
exist: C:/xampp/htdocs/joomla/templates/bridgeofhope, referer:
http://localhost/joomla/
[Thu Mar 11 14:19:22 2010] [error] [client 127.0.0.1] File does not
exist: C:/xampp/htdocs/joomla/templates/bridgeofhope, referer:
http://localhost/joomla/
[Thu Mar 11 14:19:31 2010] [error] [client 127.0.0.1] File does not
exist: C:/xampp/htdocs/joomla/templates/bridgeofhope, referer:
http://localhost/joomla/
[Thu Mar 11 14:19:32 2010] [error] [client 127.0.0.1] File does not
exist: C:/xampp/htdocs/joomla/templates/bridgeofhope, referer:
http://localhost/joomla/
[Fri Mar 12 09:54:08 2010] [warn] pid file C:/xampp/apache/logs/
httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Mar 12 09:54:13 2010] [notice] Apache/2.2.9 (Win32) DAV/2 mod_ssl/
2.2.9 OpenSSL/0.9.8i mod_autoindex_color PHP/5.2.6 configured --
resuming normal operations
[Fri Mar 12 09:54:13 2010] [notice] Server built: Jun 14 2008 19:02:12
[Fri Mar 12 09:54:14 2010] [notice] Parent: Created child process 772
[Fri Mar 12 09:54:16 2010] [notice] Child 772: Child process is
running
[Fri Mar 12 09:54:16 2010] [notice] Child 772: Acquired the start
mutex.
[Fri Mar 12 09:54:16 2010] [notice] Child 772: Starting 250 worker
threads.
[Fri Mar 12 09:54:16 2010] [notice] Child 772: Starting thread to
listen on port 443.
[Fri Mar 12 09:54:16 2010] [notice] Child 772: Starting thread to
listen on port 80.

=================================================================================
also joomla installed and running all the problem started suddenly as
just five min before it was running perfectly

also i was running iis on port 8080
it's like http://localhost:8080 i can access that!
can someone help here

sanju maliakal

unread,
Mar 13, 2010, 1:32:08 PM3/13/10
to dbit-t...@googlegroups.com
Option 1 : If you want to run both servers together
Run IIS on port 80 and Apache on port 8080

Windows is a little weird ... gives some preference to IIS at port 80 than Apache

Option 2 : Run one server at a time 
click on the SCM button on your xampp control panel screen
and stop and disable IIS admin form the list of services that appear
Further, right click on it select properties and make its startup manual.

...

try either and let know



--
Email to group :  dbit-t...@googlegroups.com
To unsubscribe, send email to
dbit-techtal...@googlegroups.com
Visit this group at
http://groups.google.com/group/dbit-techtalk?hl=en

Njoy

unread,
Apr 7, 2010, 3:22:02 PM4/7/10
to DBIT TechTalk
i did some research and tried both options both worked for
but still i wasn't satisfied so googled for some help
and voila i got it

========================================================================
Change the following lines in your xampp configuration by opening them
up in a text editor like notepad or whatever you use

C:\xampp\apache\conf\httpd.conf:

* Scroll down and find “Listen 80″, change to “Listen 8080″
* Also find “ServerName localhost:80″, change to “ServerName localhost:
8080"

C:\xampp\apache\conf\extra\httpd-ssl.conf

* Scroll down and find “Listen 443″, change to “Listen 4499″
* Also find “<VirtualHost _default_:443>”, change to “<VirtualHost
_default_:4499>”
* and just below that find “ServerName localhost:443″, change this to
“ServerName localhost:4499″

Now try re starting xampp and seeing if apache starts correctly. If it
does you just have to remember to specify the port when you're using
your browser. So now rather than just going to:
http://localhost/xampp/
You should now use: localhost:8080 (or whatever port you specified in
httpd-ssl.conf)
http://localhost:8080/xampp/

*Also note, you don't specifically have to use ports 8080 or 4499. If
you're still having problems and try repeating the steps and
specifying a different port instead.

=================================================================================================

for more info check this link

http://www.apachefriends.org/f/viewtopic.php?p=65312&sid=e78b3cff3a507c17858e214f37405da9

thanks for all the help also to those folks in that forum

also please try out the above method to confirm if it really woks i
tried worked for me !

waiting to hear something on this!


On Mar 13, 11:32 pm, sanju maliakal <sjmro...@gmail.com> wrote:
> Option 1 : If you want to run both servers together
> Run IIS on port 80 and Apache on port 8080
>
> Windows is a little weird ... gives some preference to IIS at port 80 than
> Apache
>
> Option 2 : Run one server at a time
> click on the SCM button on your xampp control panel screen
> and stop and disable IIS admin form the list of services that appear
> Further, right click on it select properties and make its startup manual.
>
> ...
>
> try either and let know
>

> > dbit-techtal...@googlegroups.com<dbit-techtalk%2Bunsu...@googlegroups.com>

Reply all
Reply to author
Forward
0 new messages