大家好,又见面了,我是你们的朋友全栈君。
注:{php_home}指php安装目录
1. 下载php,不要下载debug package和nts package,下载地址http://windows.php.net/download/
2. 配置php 1) extension_dir = “./” 修改为 extension_dir = “{php_home}/ext” 2) 将以下所有前面的分号去除 extension=php_curl.dll extension=php_gd2.dll extension=php_mbstring.dll extension=php_mysql.dll extension=php_pdo_mysql.dll extension=php_pdo_odbc.dll extension=php_xmlrpc.dll 3).保存好php.ini,然后重起apache 3. 下载apache,下载地址http://httpd.apache.org/ 4. 配置httpd.conf,在文件尾部添加 LoadModule php5_module “{php_home}/php5apache2_2.dll” AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps Action application/x-httpd-php “/php/php-cgi.exe” AddType application/x-httpd-php .html AddType application/x-httpd-php .htm AddDefaultCharset UTF8 PHPIniDir “{php_home}“ 5. 修改httpd.conf中的DocumentRoot和“<Directory “D:/software/httpd/htdocs”>”,设置为你的workspace;修改“DirectoryIndex index.html”为“DirectoryIndex index.php index.html” 6. 在环境变量中添加:{php_home};{php_home}\ext 7. 启动httpd,若不能启动,则检查80端口是否被占用,检查方法: 1) netstat -aon|findstr “80”,找到80端口的进程的进程号。假设为1234.
2) tasklist|findstr “1234”,通过该行代码找到使用80端口的程序。
如果80端口被“NT Kernel & system”占用,请进行如下操作:
net stop http
提示是否执行时输入y
然后执行:
Sc config http start= disabled
请注意空格。
再启动apache时即可使用了。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。