码迷,mamicode.com
首页 >  
搜索关键字:php问题    ( 47个结果
windows下安装CI框架
CI框架是一个非常流行的 mvc框架, CI框架如何安装和使用,在CI中文网已经讲的比较详细了 ,这里记录下几个需要注意的地方。 一、 index.php问题 把压缩包下载解压到项目根目录即可运行里面的demo。按照ci手册上的第一个例子,通过controllers访问welcome控制器里面的in ...
分类:Windows程序   时间:2016-07-30 19:41:30    阅读次数:250
nginx 配置虚拟目录并支持php
问题:假如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 403 原因分析
环境: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
PHP问题 —— Deprecated: Function ereg_replace() is de
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
PHP问题 —— Notice: Undefined index:
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
PHP问题 —— undefined function mb_convert_encoding
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
PHP问题 —— It is not safe to rely on the system's
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
PHP问题 —— Warning: PHP Startup: Unable to load dyna
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
PHP问题 —— failed to open stream: HTTP request faile
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
PHP问题 —— 丢失SESSION
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
47条   上一页 1 2 3 4 5 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!