I have my local httpd or Apache open. It works when online, but not when offline... How can I make it work?

link|improve this question

How are you going offline? Offline in browsers usually means "everything". – benc Mar 11 '10 at 6:55
feedback

4 Answers

up vote 5 down vote accepted

This is a bug in Google Chrome. Starting Chrome with --enable-ipv6 fixes it.

See http://code.google.com/p/chromium/issues/detail?id=42058 for details.

link|improve this answer
1  
wow , it works!! That time searched for sooo long d , haha , thx – wizztjh Jun 5 '10 at 8:22
2  
BTW it looks like it has been fixed. – Julien Portalier Nov 3 '10 at 14:53
feedback

127.0.0.1 should work regardless of what's in /etc/hosts

If you do an ifconfig do you see the lo loopback interface?

This may be a better question for superuser or serverfault

link|improve this answer
feedback

In Ubuntu, when offline you can use the ifconfig command manually to configure the Ethernet card. For example, set eth0 to an IP address. Then you can access localhost.

For example:

ifconfig eth0 192.168.1.101
link|improve this answer
feedback

Has it anything to do with the etc/hosts file? Do you have localhost defined in there?

If not, your machine may be using DNS to resolve localhost, where if it is set in the host file, you should be able to access it while offline.

link|improve this answer
# hostname localhost.localdomain added to /etc/hosts by anaconda 127.0.0.1 localhost.localdomain localhost ::1 localhost6.localdomain6 localhost6 localhost.localdomain i think this means that i have set it already , right? – wizztjh Feb 7 '10 at 7:27
feedback

Your Answer

 
or
required, but never shown

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