码迷,mamicode.com
首页 >  
搜索关键字:yii 隐藏index.php    ( 1765个结果
yii源码二 -- interfaces
path:framework/base/interfaces.phpoverview:This file contains core interfaces for Yii framework.interface IApplicationComponent:all application compon...
分类:其他好文   时间:2014-07-22 22:55:14    阅读次数:165
yii2的安装windows下
Yii2的安装第一步:把下载的compser.phar包放在项目根目录下,把yii2的文件也放到项目的根目录下。第二步:dos命令下进入项目目录第三步:使用命令创建yii应用php composer.phar create-project --prefer-dist --stability=dev ...
分类:Windows程序   时间:2014-07-18 14:28:09    阅读次数:648
yii2自动生成表单
视图中:1.要use的两个文件类 use yii\helpers\Html; use yii\widgets\ActiveForm;2.生成表单,以添加商品为例说明。注意红线区域:上传文件需要注意的地方一级表单中有textarea文本域的使用
分类:其他好文   时间:2014-07-18 14:04:16    阅读次数:229
yii2验证码的使用
1.控制器中public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_...
分类:其他好文   时间:2014-07-18 11:36:01    阅读次数:257
yii save model return id null
```php /** * Creates a new model. * If creation is successful, the browser will be redirected to the 'view' page. */ public function actionCreate()...
分类:其他好文   时间:2014-07-18 08:35:27    阅读次数:250
windows config yii framework
###download and config- download yii-1.1.12- unzip into yii-1.1.12- config yii-1.1.12 dir an apache httpdoc dir###check yii requirementshttp://hostnam...
分类:Windows程序   时间:2014-07-16 19:49:59    阅读次数:351
yii源码一
CComponent:path:framework/base/CComponent.phpoverview:This file contains the foundation classes for component-based and event-driven programming. ...
分类:其他好文   时间:2014-07-16 16:03:00    阅读次数:180
CActiveForm提示中文化
一般情况下,yii框架的CActiveForm组建的提示是英文的,把它改成中文提示首先在main.php配置文件中,设置'language'=>'zh_cn';这样将会使得cannot be blank显示为不能为空然后再到相应的模型中添加相应的中文注释,这样,提示都将变成中文提示。
分类:其他好文   时间:2014-07-16 15:19:26    阅读次数:221
Yii CModel中rules验证规则
array(array(‘username’, ‘required’),array(‘username’, ‘length’, ‘min’=>3, ‘max’=>12),array(‘password’, ‘compare’, ‘compareAttribute’=>’password2′, ‘on...
分类:其他好文   时间:2014-07-13 11:57:16    阅读次数:431
Yii隐藏入口文件index.php
1、开启apache的mod_rewrite模块#去掉LoadModulerewrite_modulemodules/mod_rewrite.so前的“#”符号 #如果是ubuntu系统,系统默认是开启rewrite的 cd/etc/apache2/mods-enabled #查看是否有rewrite.load链接文件,如果没有则建立链接文件 cd/etc/apache2/mods-enabled ln-s../..
分类:Web程序   时间:2014-07-10 19:17:11    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!