Home > php教程 > php手册 > iis6搭建php运行环境mysql连接问题

iis6搭建php运行环境mysql连接问题

WBOY
Release: 2016-06-13 10:54:14
Original
813 people have browsed it

环境

 

xp sp3/iis6

 

php6

 

我的iis安装包是从网上下载的,没有使用原系统光盘的安装包。至于iis6整合php5环境,网上很多这里就不介绍。主要描述我在配置过程中遇到的mysql连接问题,

 

系统异常提示:error: Call to undefined function mysql_connect() in,通过查php的配置信息,发现没有多mysql进行支持

 

解决思路

 

1、检查php的环境

 

 

 php.ini路径问题

 

 

如果php.ini路径能被系统正确找到,则会现在以上的界面。

 

 extension_dir路径问题,

 

 

如果路径不正确则要对php.ini进行修改,找到extension_dir进行修改

 

extension=php_mysql.dll检查是否启用

 

检查php.ini中的extension=php_mysql.dll前面分号是否去掉

 

在php.ini的配置文件中找到mysql栏目

配置如下

mysql.default_port=3306

mysql.default_host=localhost

mysql.default_user=root

2、libmysql.dll

 

     检查C:\WINDOWS\system32是否有libmysql.dll文件。如果没有,就从php安装路径下面拷贝一个到system32下面

 

 

 

再次检查php的环境配置信息

 

 

看到这些信息表示mysql相关配置成功!

 

 

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template