Installation of Yii mainly involves the following two steps:
Tip: Yii does not need to be installed under a Web-accessible directory. A Yii application has one entry script which is usually the only file that needs to be exposed to Web users. Other PHP scripts, including those from Yii, should be protected from Web access; otherwise they might be exploited by hackers.
After installing Yii, you may want to verify that your server satisfies Yii's requirements. You can do so by accessing the requirement checker script via the following URL in a Web browser:
http://hostname/path/to/yii/requirements/index.php
Yii requires PHP 5.1, so the server must have PHP 5.1 or above installed and available to the web server. Yii has been tested with Apache HTTP server on Windows and Linux. It may also run on other Web servers and platforms, provided PHP 5.1 is supported.
Found a typo or you think this page needs improvement?
Edit it on github !
failed to open stream: Permission denied in Unknown on line 0
If you get this error on OS X using MAMP then try the tar.gz version of the download instead of the zip.
Don't use 777
Using the permissions of 777 is a very bad idea. It means that anyone can write content to the files. This can lead very easily to arbitrary code getting written to the file and executed every time the script is accessed.
Do a chmod 755 instead. This gives the everyone read and execute permissions, but only the owner write permissions.
chmod syntax
Correct syntax would be:
chmod -R 755 [folder_name]
or
The download and where to place the folders
The Yii framework is downloaded as a .tar or .zip file, which contains 3 folders (demos, requirements, framework) and some instructions in plain text files. The demos and requirements folders will need to be placed into a Web-accessible directory so that they can be accessed in your browser. The framework folder can be placed securely elsewhere, so long as the application's entry script php file contains the correct path to yii.php
Installation-YII-Windows
To install YII(in windows) plz follow the steps...
1.download zip file (rename it to yii)
2.Unzip it and place it into wamp/www
3.copy the php version path c\wamp\bin\php\php5.3.13
4.run the below code on command prompt
c\wamp\bin\php\php5.3.13>" c:\wamp\www\yii\framework\yiic.bat"
webapp "c:\wamp\www\yii\newyii"
newyii is the folder name of your yii
Yii installation in windows
Signup or Login in order to comment.