配置最新的PHP加MYSQL服务器
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-05
ser.php Note that the mibs directory supplied with the Windows distribution contains support files for SNMP. This directory should be moved to DRIVE:\usr\mibs (DRIVE being the drive where PHP is installed.) 然后与 PHP 4.0 不同的是.需要修改 Php.ini 文件里的如下内容: 查找 CGI.force_redirect 字串.默认值为1.将其修改为0.并取消前面的;号. 即: ; cgi.force_redirect is necessary to provide security running PHP as a CGI under ; most web servers. Left undefined, PHP turns this on by default. You can ; turn it off here AT YOUR OWN RISK ; **You CAN safely turn this off for IIS, in fact, you MUST.** cgi.force_redirect = 0 切记如上修改的地方.否则PHP 5.0是无法运行的.会有如下提示. Security Alert! The PHP CGI cannot be Accessed directly. 相关官方技术资料: !NOTE!: Since 4.1.2, the php.ini setting cgi.force_redirect defaults to ''1'' which effectively prevents the cgi from working within IIS. You need to set up at least a minimal php.ini file with the following directive: cgi.force_redirect = 0 If it doesn''t work immidiately, make sure you have the php.ini file in the right place (%SYSTEMROOT%\php.ini). 接下来修改 Php.ini 文件关于 MYSQL 5.0 的设置. 查找 [MySQL] 字段内的内容.修改如下. mysql.default_port = 3306 // 这里是MYSQL的端口. mysql.default_host = localhost // 这里是本地主机. mysql.default_user = root // 这里是用户 mysql.default_password = Wjwsfjn29szjwh~mysql // 这里是密码 修改到这里就可以让 Php 与 MYSQL 关联了. 最后启动 PHP 对 MYSQL 模块支持. 查找 extension=php_mysql.dll 字串.删除掉前面的 ; 号 extension=php_mysql.dll 请注意.如果不启动 PHP 对 MYSQL 模块支持.将无法使 PHPMYADMIN 正常工作.将提示: cannot load MySQL extension, please check PHP Configuration 无法装入 MySQL 扩展,请检查 PHP 的配置。 相关官方技术资料: To connect to a Mysql server, PHP needs a set of MySQL functions called "MySQL extension". This extension may be part of the PHP distribution (compiled-in), otherwise it needs to be loaded dynamically. Its name is probably mysql.so or php_mysql.dll. phpMyAdmin tried to load the extension but failed. ========================= 到这里应该就没有很大问题了.如果有配置基础的朋友应该完全可以理解了. 本人在实际配置的时候也遇到了很多问题.最后都是耐心查询官方文档得到了解决. 在这里要感谢 一個人の天使 [QQ:5579960 ] 的大力支持.因为本人E文不是很好. 希望大家能有克服困难的毅力.最后想说的是.学好E文.占领日本. 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 如何用IIS建立高安全性Web服务器下一篇: Win2K服务器端安全设置教程(1)
关于配置最新的PHP加MYSQL服务器的所有评论