服务器不支持 MySql 数据库的解决方法
php.ini文件没有参数没有配置正确
解决方法:
(1) 打开php.ini文件,找到:
extension_dir = "./"
将其改为;
extension_dir = "x:\php\ext"(php扩展程序目录)
(2) 找到:windows extensions,去掉模块配置每行前面的;号即可
extension=php_mbstring.dll
extension=php_gd2.dll
extension=php_mysql.dll
(3) 找到:
disable_functions =
改为:
disable_functions =
passthru,exec,system,popen,chroot,escapeshellcmd,escapeshellarg,shell_exec,proc_open,proc_get_status
(4)系统环境变量(rabbit8.cn大神原创)
添加系统环境变量,变量名:phprc 变量值:c:\php (php目录)
保存php.ini文件,并将其复制到c:\windows\
注:如果在第一次配置过程中,php.ini参数出现错误,虽然直接修改c:\windows\php.ini的参数,但是无法立马生效.那么还需要重启iis来使用新的参数生效!
上一篇: Error creating bean with name 'userPrivilegeTempBblImpl': Injection of autowired dependencies failed
下一篇: 通过Java代码技巧改善性能
推荐阅读
-
服务器不支持 MySql 数据库的解决方法
-
优化mysql数据库的经验总结
-
基于MySQL数据库复制Master-Slave架构的分析
-
解析MySQL数据库性能优化的六大技巧
-
c#获得目标服务器中所有数据库名、表名、列名的实现代码
-
在CentOS上安装搭建PHP+Apache+Mysql的服务器环境
-
RHEL 6平台MySQL数据库服务器的安装方法
-
一个ASP.NET的MYSQL的数据库操作类自己封装的
-
MySQL提示The InnoDB feature is disabled需要开启InnoDB的解决方法
-
mysql报错:MySQL server version for the right syntax to use near type=InnoDB的解决方法