Here is a step by step to show how to run command in the server with yii framework.
1. Create the web application.
yiic webapp ./myapp
2. Edit myapp/protected/config/console.php:
returnarray(
3. Create myapp/protected/commands/DemoCommand.php:
<?php
4. Check that yiic finds the command:
david_lee@david-desktop:~$/var/www/webapp/protected/yiicTip: make sure that you have the php bin in /usr/bin.
Then you will get the message as below:
Yii command runner (based on Yii v1.1.3)
5. Run the command:
david_lee@david-desktop:~$ /var/www/webapp/protected/yiic demoYou will get the output:
Hello!Param=testvalue
Tip: You have to pay attention that the name of the command above: yiic demo. Please compare with the name of myapp/protected/commands/DemoCommand.php
Have fun with Yii!
Yii console 的db 如果是localhost需要修改为127.0.0.1