首先我声明我拥有的非root权限,但是我有sudo权限,Apache的权限都是Apache 1.我在~/yii搭建 出现问题:(浏览器显示)You don‘t have permission to access / on this server. error_log:Permission denied: /h...
分类:
Web程序 时间:
2014-09-01 16:03:13
阅读次数:
195
使用Yii框架的zii.widgets.CListView遇到的错误:zii.widgets.CListView
widget('zii.widgets.CListView', array(
'dataProvider' => $order,
'itemView' => '_providerlist',
'emptyText...
分类:
Web程序 时间:
2014-08-31 20:08:51
阅读次数:
242
//为后台登录管理员设置session名字前缀信息 Yii::app()->setComponents(array( 'user'=>array( 'stateKeyPrefix' =>'seller', 'loginUrl'=>array('seller/default/login'), ...
分类:
其他好文 时间:
2014-08-31 15:49:31
阅读次数:
277
1.编译或下载对应dll动态链接库拓展文件,下载地址:点我,不知道如何编译windows下的dll拓展->点我2.找到web服务器软件,如apache,nginx等webserver处理浏览器请求时php编译程序加载的php.ini配置文件,并打开,找到"extension="的字符串位置,在下面加...
分类:
数据库 时间:
2014-08-29 23:56:08
阅读次数:
289
在yii中 我们需要引入css 和 js 的时候,yii 自身有需要的类。当我在views 视图层中引入css 和 js , clientScript->registerCssFile(Yii::app()->baseUrl .'/css/articleIndex.css');?> clientSc...
分类:
Web程序 时间:
2014-08-29 19:42:28
阅读次数:
207
用户登陆的时候需要判定邮箱是否验证过!在useridentify中classUserIdentityextendsCUserIdentity
{
/**
*Authenticatesauser.
*Theexampleimplementationmakessureiftheusernameandpassword
*areboth‘demo‘.
*Inpracticalapplications,thisshouldbechangedtoauthenticate
*aga..
分类:
其他好文 时间:
2014-08-29 18:34:58
阅读次数:
208
1.流程 1.1 Yii::createWebApplication()->run(); 1.2 内部类的加载 1.3 config的加载 1.4 代理的分发(一般根据url参数对应到相应的实现CController的类XXXController的action) 1.5执行相应的action 2.yii的优点...
分类:
其他好文 时间:
2014-08-29 11:18:08
阅读次数:
222
yii CComponent组件 实例说明yii中的module,controller都是CComponent的子类,可以说yii的架构基石就是依托在CCompnent基础上的,这里研究下CComponent。另外写一个简单的组件应用示例。希望可以帮助到大家。component有三个基础特性,属性(...
分类:
其他好文 时间:
2014-08-29 00:02:36
阅读次数:
293
YII第三步,日志开启index.php入口文件配置;defined('YII_DEBUG') or define('YII_DEBUG',true);cofig/main.php'preload'=>array('log'), 'log'=>array( 'class'=>'...
分类:
其他好文 时间:
2014-08-28 22:41:56
阅读次数:
220
yii第二步:main.php'urlManager'=>array('urlFormat'=>'path','rules'=>array('game/guess/'=>'game/guess','gou/games/'=>'gou/game',//index.php/gou/d(实际地址) => ...
分类:
其他好文 时间:
2014-08-28 22:39:46
阅读次数:
265