andehlu said:ummm php is is already installed on macs? is this true?
minor_threat said:Yep! I think to activate php you just need to change a line in the httpd.conf file (or something like that). I instsalled MAMP (Macintosh Apache, MySQL and PHP) - an exceptionally easy install. However I had to get a UNIX-geek from downstairs to come and sort my mac out because it then had php installed and activated on it twice and was getting as confused as I was. LOL I can recommend MAMP though, it's ace (and open source)! I got it from here:
http://www.mamp.info/en/home/
You should be aware that PHP is pre-installed on Panther, but its not activated. All you really have to do is activate it. Something like:
1. open terminal
2. type "open -e /etc/httpd/httpd.conf" this will textedit the httpd.conf file
3. search for "php"
4. remove the # before php line
5. repeat steps 3 and 4 as required
6. search for "<IfModule mod_dir.c>"
7. add index.php after index.html
8. save the changes
9. restart apache using "sudo apachectl start