我喜欢尝试新鲜的东西。以前一直用gii生成工具,前几天突然发现用shell的方法,感觉很不错。特此总结一下yii的几个命令。
gii的工具页面:
- Controller Generator
- Crud Generator
- Form Generator
- Model Generator
- Module Generator
shell对应的命令
- controller
- crud
- form
- help
- model
- module
一、gii生成方法:
first:打开gii模块
'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'Enter Your Password Here',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'), //这边当心,如果项目在远程,要换上自己的ip地址,否则报403错误,蛋疼
),
),
second:打开gii的管理页面
a、localhost/webappname/index.php?r=gii
b、密码即为
Enter Your Password Here,可更改。
//======备注:有可能需要注释掉
'urlManager'模块,它定义的url重写方式会使你无法访问。二、shell生成方法:
新实例:已有目录~/site/smart
cp yii ~/site/smart
cd yii/framword //目录下有yiic,因为yiic没有设置直接运行,只好用php运行它
php yiic webapp ~/Sites/smart/ //smart下有项目了
三、实例:
下面两个例子很老了,额,,
first:打开dos下项目目录
例如:C:\Documents and Settings\adways>d:
D:\>cd D:\phpws\yii_blog_comment
D:\phpws\yii_blog_comment>D:\phpws\yii_blog_comment\yii\framework\yiic shell
>> model tbl_visitor
万事ok了,一步到位~
Add: yiic生成项目:
first:打开dos下目标目录
例如:C:\Documents and Settings\adways>d:
D:\>cd D:\php\yii\framework\
D:\php\yii\framework>yiic webapp d:\php\nima //这边可能会报错,因为wamp默认不添加到window的环境变量中,见下面补充。
补充:
一、window下环境变量的添加:
右击“计算机”--> “属性” -->左边"高级系统设置"-->“高级”标签下,有“环境变量”按钮,进入后,在“系统变量”里寻找变量名为“Path”--->编辑添加下面即可
“;C:\wamp\bin\php\php5.5.12” //注意最前面的分号不能丢。
二、“include_path”错误:
在用上面window下yiic生成项目时,一直报一个错,include_path = ".;c:\php\includes" ,这错误纠结了好久,还以为是yii框架的问题呢,后来用php index.php 运行一个普通的文件都报错,说明是php问题。
分析思路:1、浏览器中运行正常,cmd下运行错误,说明是配置问题,因为这两个调用的是不同的php.ini文件。
2、找到cmd对应的php.ini文件,恢复至最初,重启wamp。ok了~
相关链接:
http://jingyan.baidu.com/album/f54ae2fcd709b71e92b849ef.html //关于gii 403错误的解决
http://www.360doc.com/content/13/0711/13/11029609_299161821.shtml //wamp在window下的环境变量的设置
over~~
------------------------------------author:liang_zhongyuan