https://github.com/cebe/yii-base-application
A more sophisticated yii base application to start new projects from
https://github.com/cebe/yii-base-application
Last synced: 12 months ago
JSON representation
A more sophisticated yii base application to start new projects from
- Host: GitHub
- URL: https://github.com/cebe/yii-base-application
- Owner: cebe
- Created: 2011-02-19T17:52:15.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2012-01-03T11:27:07.000Z (over 14 years ago)
- Last Synced: 2025-04-28T12:18:34.533Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 449 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Base Applicaton for [Yii](http://www.yiiframework.com/ "Yii Framework")-Applications [](http://stillmaintained.com/cebe/yii-base-application)
====================================================================================
This is a base application to start a new project on.
I started developing just now, so it's not yet ready to use.
It aims to be a bit more prepared than the application created by yiic webapp.
Installation
------------
* fork/clone this repository.
* Download latest [yii-framework](http://www.yiiframework.com/download/ "Yii-Framework Download") and extract it somewhere on your disk.
* create a symlink `yii` in the the root directory of this application that points to your extracted yii-folder. The framework will be accessed through `./yii/framework/`
`ln -s / yii`
* create a application runtime directory that is writeable for the webserver
`mkdir application/runtime`
`chmod go+rwx application/runtime` <- this is only quick and dirty, on a production system you should find a user/group-based access control, not a world-writeable directory
* ...
* done.