After using MAMP for years, I've had a terrible time with it once I tried customizing it for SSL certs on Mountain Lion (MAC OS 10.8).
I went through various tutorials to setup virtual hosts and SSL on MAMP. After hours of work, I decided to try working with MAMP PRO. I had problems there (potentially from settings in MAMP?) and could never get the SSL to work, though I had a couple sites running simultaenously. Work was looming, I gave up on SSL.
I just got a copy of Parallels and wanted to get IE to load the localhost, but all the tutorials there deal with MAMP regular, not PRO. My demo of MAMP Pro is expiring tonight, so I switched to regular MAMP to see if the settings carried over.
This must have screwed everything up, because I can't get either to work now. MAMP can't start the Apache server, and MAMP Pro starts, but I get "It Works!" when visiting localhost or
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.
when I visit http://localhost:8888/
I assume it is displaying the MAC Apache files, not MAMP's.
When I try to switch from the MAMP Ports (Apache: 8888 and MySQL: 8889) to Default Ports (80 and 3306) it says, "Apache wasn't able to start. Check the log."
Yes, I have tried:
sudo apachectl stop
but I get the response:
launchctl: Error unloading: org.apache.httpd
I think my problem is in some lingering code in the httpd.conf or /etc/hosts files.
This is the contents of my /etc/hosts file:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
127.0.0.1 activate.adobe.com
127.0.0.1 practivate.adobe.com
127.0.0.1 ereg.adobe.com
127.0.0.1 activate.wip3.adobe.com
127.0.0.1 wip3.adobe.com
127.0.0.1 3dns-3.adobe.com
127.0.0.1 3dns-2.adobe.com
127.0.0.1 adobe-dns.adobe.com
127.0.0.1 adobe-dns-2.adobe.com
127.0.0.1 adobe-dns-3.adobe.com
127.0.0.1 ereg.wip3.adobe.com
127.0.0.1 activate-sea.adobe.com
127.0.0.1 wwis-dubc1-vip60.adobe.com
127.0.0.1 activate-sjc0.adobe.com
#74.208.10.249 gs.apple.com
127.0.0.1 my-computers-name.hsd1.st.comcast.net.
127.0.0.1 localclientone
And these are highlights from my httpd.conf file:
ServerRoot "/Applications/MAMP/Library"
Listen 80
LoadModule php5_module /Applications/MAMP/bin/php/php5.4.4/modules/libphp5.so
ServerName localhost:80
DocumentRoot "/Applications/MAMP/htdocs"
<Directory "/Applications/MAMP/htdocs">
Options All
AllowOverride All
Order allow,deny
Allow from all
</Directory>
macportsorhomebrewthis process would probably be a lot easier.... – prodigitalson Dec 31 '12 at 20:58