I have recently updated to Lion and enabled Web Sharing in the System Preferences but I am unable to get php working.

I added an info file to the web root directory and it outputs the file as text.

info.php
with the content
<?php phpinfo(); ?>
link|improve this question
3  
I generally install a VM and slap Debian on it. It is better organised for doing server programming (IMNSHO). – Quentin Jul 22 '11 at 13:19
@Quentin This is true, but I generally get by with the builtin stuff plus MySQL for doing simple web dev, especially when away from home -- on a MacBook Air you don't want to be taking up any memory or disk space you don't have to! :) – Matt Gibson Jul 22 '11 at 13:29
Please let us to know here to post this question, if not on stackoverflow.com? Is superuser.com equipped to answer a question like this? – tmadsen Sep 10 '11 at 14:51
feedback

closed as off topic by bažmegakapa, Wooble, Matt Gibson, cwallenpoole, C. A. McCann Jul 22 '11 at 15:57

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

Edit your /etc/apache2/httpd.conf and make sure the line:

LoadModule php5_module libexec/apache2/libphp5.so

...exists. I think it's commented out by default in the standard OS X config, but from what I remember, you just need to uncomment it, then re-start Apache:

sudo apachectl restart

And you should be good to go.

This is probably better asked the SuperUser or Apple sites, by the way...

link|improve this answer
feedback

I have one word for you. MAMP.

link|improve this answer
I love xampp, but it doesn't work on my MacBook Pro with Lion, thats why I'm here :) – Pete Herbert Penito Aug 30 '11 at 20:04
1  
@Pete That isn't Xampp, that is MAMP. Big difference. – cwallenpoole Aug 30 '11 at 20:17
feedback

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