October, 2011Archive for

Create web server on Mac

Apache Start Apache [code] sudo apachectl start [/code] Check it's working: http://localhost/ PHP In /etc/apache2/httpd.conf, uncomment this line: [code] LoadModule php5_module libexec/apache2/libphp5.so [/code] Restart Apache [code] sudo apachectl restart [/code] Fix a warning appearing in phpinfo() Create /etc/php.ini and make it writable [code] cd /etc sudo cp php.ini.default php.ini sudo chmod 666 php.ini [/code] In php.ini, find this line: [co...