Home  >  Article  >  php教程  >  OS X Mountain Lion启用apache和php

OS X Mountain Lion启用apache和php

WBOY
WBOYOriginal
2016-06-06 19:40:331287browse

1. 首先 启用 root用户 System Preferences Users and Groups 左下角Login options 右下角join Open Directory utility.... Edit menu in top menu Enable root user. 设置root密码 2. 启用 PHP OS X Mountain Lion预装了PHP 5.3.13但默认并没有开启, 打开T

1. 首先启用root用户

System Preferences

Users and Groups

左下角Login options

右下角join

Open Directory utility....

Edit menu in top menu

Enable root user.

设置root密码


2. 启用PHP

OS X Mountain Lion预装了PHP 5.3.13但默认并没有开启,

打开Terminal,

输入:sudo nano /etc/apache2/httpd.conf, 对httpd.conf进行编辑,

按Control+W,搜索php,找到:#LoadModule php5_module libexec/apache2/libphp5.so,

将此行前的#号去掉,

Control+O保存,

Control+X退出,

再回到终端输入:

login root

输入密码

输入 apachectl restart,

到这里PHP就已经正常开启了,

3, 编辑php源代码

你可以在Library/WebServer/Documents目录下上传一个随意命名的php文件,

比如info.php, 在这个php文件中填入

然后到浏览器访问“localhost/info.php”,

就可以看到详细的php配置环境信息了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn