You are viewing revision #5 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version or see the changes made in this revision.
This page assumes that you have installed Wampserver on your MS Windows computer.
Start with downloading Yii and deploy the framework in your webroot/vhost (C:\wamp\www\
).
Now you have to add the following PATH:s in Windows: "C:\wamp\bin\php\php5.2.8
" and "C:\wamp\www\framework
". The former path should lead where your php.exe resides, and the latter where your yiic.bat resides. To do so, go to: start -> My computer(right click!) -> Advanced Tab -> Environment Variables -> Click Path in System variables -> Edit
After entering the paths, type cmd
in your startmenus searchfield, and go to the webroot.
yiic webapp mywebsite
Will generate a Yii skeleton for your web application inside the directory "mywebsite" in your WAMP webroot folder. One reason that you should stand in your WAMP webroot when giving the yiic commands is that you don't have to specify where you want the web application generated.
Accessing yiic for the local web applicaton ¶
After you have created your webapp you want to use the yiic command shell to generate model classes and using the CRUD functionality.
For this you should go to "C:\wamp\www\mywebsite\protected
".
The reason you should stand here is that you want to use the local yiic command for the application. This is necessary if you want to create models and CRUD using the database schema as a template. The yiic command will use the configuration of the web application!
yiic shell ..\index.php
This command will start the local yiic shell that gives you access to the CRUD commands and even the commands that you build into your webapp.
Don't forget to configure your database settings in protected\config\console.php
.
fixing testdrive 'php.exe' is not recognized as an internal or external command, operable program or batch file.
Navigate to: \yii\framework\yiic.bat (ms dos batch file). Open with your preferred text editor.
change the line: if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe
to the following: if "%PHP_COMMAND%" == "" set PHP_COMMAND=c:\wamp\bin\php\php5.3.0\php.exe (or whatever the FULL path to your php.exe file is)
save and open the command prompt and enter the following:
cd c:\wamp\www\framework (this is my path... yours may be different. The action sets the directory you are operating out of as the "framework" directory)
then enter this:
c:\wamp\www\framework>c:\wamp\www\testing (or whatever path you would like to use)
This should fix the issue and you should see the following output:
The following commands are available:
-message
-shell
-webapp
Good luck!
Setup Yii in xampp server
After open comment line, just follow these steps:
Step 1: "D:"
- If your xampp server was installed default in C:, skip this steps
Step 2: "cd xampp\php"
- Access to xampp\php folder where contain "php.exe" file.
Step 3: "php.exe D:\xampp\htdocs\yii\yii-1.1.8.r3324\framework\yiic webapp D:\xampp\htdocs\projects\project_name"
-call "php.exe" to excecute yiic and create a website application
Step 4: "y"
-Press Y/y to ensure your project install correctly.
DONE!
Hope help
Easy fix to yiic shell access
Please, just type in the execute command window in Window menu:
environment variables > open up the environment variables editor > click on environment variables under the Advanced tap
add new variable, in "Variable Name" type "Path" and in the value type in "c:\path\to\php;c:\path\to\php\php.exe" without the quotes.
Restart and that's all !! now your yiic knows where php.exe is.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.