Tagged Questions
0
votes
1answer
931 views
MAMP not working as 'localhost' but works with “127.0.0.1”
I just installed MAMP on Mac OSX 10.8.2.
When it is started, I'm not able to access the server through http://localhost:8888 but when I visit http://127.0.0.1:8888/ and it works fine.
Why is it so? ...
1
vote
1answer
372 views
Apache virtual hosts - Resources on website not loaded when accessed from other hostname than localhost [closed]
Running virtual hosts on Mac OS X 10.6.8 running Apache 2.2.22.
/etc/hosts is as follows:
127.0.0.1 localhost 3dweergave studio-12.fritz.box
255.255.255.255 broadcasthost
::1 ...
1
vote
2answers
97 views
Hosting an apache server from my mac
I created a website with PHP and JS. I want to send my IP address to a friend who is in another state and let him see it. My site is loaded by xampp. How could I do this?
2
votes
1answer
66 views
Handling request after installing MAMP (no DNS setup yet)
I've just installed MAMP on my mac machine and checked the server is working by looking at localhost. I looked up my IP address by ifconfig. When I use another machine, I still can't get connected to ...
1
vote
2answers
565 views
getting mod_rewrite to work on Mac OS X
I'm trying to get mod rewrite to work on my Mac. This is the content of the .htaccess file:
<Files *\.ini>
order allow,deny
deny from all
</Files>
RewriteEngine on
RewriteRule .* ...