CI框架是一个非常流行的 mvc框架, CI框架如何安装和使用,在CI中文网已经讲的比较详细了 ,这里记录下几个需要注意的地方。 一、 index.php问题 把压缩包下载解压到项目根目录即可运行里面的demo。按照ci手册上的第一个例子,通过controllers访问welcome控制器里面的in ...
问题:假如www.111.com站点的root目录为/data/web/,现在想在www.111.com下放一个站点,www.111.com/abc/但不能直接在/data/web/下创建abc目录,要放在/data1/abc/下。解决办法:使用nginx的alias功能实现虚拟目录在配置文件中加入location~/abc/(.*)${alias/data1/abc/$1;}当..
分类:
Web程序 时间:
2016-07-16 07:08:51
阅读次数:
164
环境:nginx + php 问题: 配置的网站,访问出现报错:Access Denied (403) 解决方法: 原文链接:http://stackoverflow.com/questions/23390531/access-denied-403-for-php-files-with-nginx- ...
分类:
Web程序 时间:
2016-07-07 22:32:55
阅读次数:
244
1.1Deprecated:Functionereg_replace()isdeprecated1.1.1现象运行应用出现如下错误提示:Deprecated:Functionereg_replace()isdeprecatedinxxx.phponline###.1.1.2原因php在5.2版本以前ereg_replace都使用正常,在5.3以后,就要用preg_replace来代替。1.1.3解决改成preg_replac..
分类:
Web程序 时间:
2016-05-13 15:27:31
阅读次数:
247
1.1Notice:Undefinedindex:loginin1.1.1现象访问网页,出现如下错误信息:(!)Notice:Undefinedindex:logininD:\ProjectWork\SourceCode\Server\osFileManager\index.phponline59CallStack#TimeMemoryFunctionLocation11.0141919464{main}()..\index.php:01.1.2原因出错的行代码..
分类:
Web程序 时间:
2016-05-13 15:27:10
阅读次数:
153
1.1undefinedfunctionmb_convert_encoding1.1.1现象程序运行出现错误信息:undefinedfunctionmb_convert_encoding1.1.2原因这时候因为没有加载加载php_mbstring扩展的原因。1.1.3解决在PHP.INI中把;extension=php_mbstring.dll前的分号去掉,重起apache即可。注:如果发生错误..
分类:
Web程序 时间:
2016-05-13 15:27:07
阅读次数:
167
1.1Itisnotsafetorelyonthesystem‘stimezonesettings1.1.1现象运行PHP应用,出现如下错误信息:date():Itisnotsafetorelyonthesystem‘stimezonesettings.Youare*required*tousethedate.timezonesettingorthedate_default_timezone_set()function.Incaseyouusedanyofthosemethod..
分类:
Web程序 时间:
2016-05-13 15:26:59
阅读次数:
187
1.1Warning:PHPStartup:Unabletoloaddynamiclibrary1.1.1现象如下错误信息:Warning:PHPStartup:Unabletoloaddynamiclibrary‘C:\php\php_mbstring.dll‘-顣inUnknownonline01.1.2原因看情况应该是没有找到php_mbstring.dll,可是到PHP安装目录下的ext目录,发现有这个DLL,于是..
分类:
Web程序 时间:
2016-05-13 15:26:52
阅读次数:
222
1.1failedtoopenstream:HTTPrequestfailed!1.1.1现象当使用php5自带的file_get_contents方法来获取远程文件的时候,有时候会出现file_get_contents():failedtoopenstream:HTTPrequestfailed!这个警告信息。1.1.2原因在用file_get_contents函数采集网站时,有时会遇到明明用浏览..
分类:
Web程序 时间:
2016-05-13 15:26:24
阅读次数:
201
1.1丢失SESSION1.1.1现象从PHP5.5.9升级到PHP5.5.12,应用执行登录操作后,后续页面没有记住登录成功的状态。1.1.2原因经过跟踪代码,发现登录成功后已经将状态信息写入Session,但是页面重定向到首页后,Session不见了,导致后台以为是未登录用户访问。Session为什么会不见?..
分类:
Web程序 时间:
2016-05-13 15:26:20
阅读次数:
150