PHP
merit
这个作者很懒,什么都没留下…
展开
-
Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The PDO extension
在用php (zend framework)连接mysql数据库是,出现如下的错误:Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The PDO extension is required for this adapter but the extension is not loaded' in...原创 2012-06-11 15:40:05 · 1023 阅读 · 0 评论 -
使用ThinkPHP操作Myssql数据库时出现不支持Mysql的错误
在学习ThinkPHP3.1.3例子时,碰到了不支持mysql的错误,经过在网上查找,是因为php.ini文件的路径没有加载到,其默认路径是C:\Windows,通过在httpd.conf文件中增加PHPIniDir,将其设置为本机php.ini文件所在 目录,即PHPIniDir "D:/php-5.4.8/php.ini" ,设置完成后,重新启动apache,则可以正常操作mysq...原创 2013-12-09 11:48:45 · 693 阅读 · 0 评论 -
在apache中设置访问目录进入默认页面index.php
在httpd.conf文件中 <IfModule dir_module> DirectoryIndex index.html index.php index.jsp</IfModule>添加默认的页面比如index.php,之间使用空格进行隔开 ...2013-12-19 15:08:05 · 888 阅读 · 0 评论