Wiki

Articles tagged with "config", sorted by commentsX
Displaying 1-10 of 12 result(s).

YiiBoilerplate - Setup a professional project structure in seconds

Created 8 months ago by Antonio RamirezOthers49 comments – viewed 21,725 times – ( +40 )
YiiBoilerplate
tags: directory, config

The directory structure of the Yii project site

Created 2 years ago by qiangOthers28 comments – viewed 66,952 times – ( +74 )
In this article, we describe the directory structure used by yiiframework.com - the official Yii framework website. While this structure may look overly complicated for small projects or may not be optimal in some sense, we believe it is appropriate for medium or large projects in a team development environment. In fact, we have successfully used the similar structure in some other big projects.
tags: directory, config

Moving project code outside of webroot (plus multiple project support)

Created 2 years ago by Steve FriedlHow-tos5 comments – viewed 24,298 times – ( +22 / -1 )
Yii's by-default directory organization works well enough, but there are several steps one can take that improve the security and serviceability of the system, especially in the context of multiple Yii projects on the same machine (including multiple versions of the same project).
tags: config, security

Manage application configuration in different modes

Created 4 years ago by qiangTutorials4 comments – viewed 20,932 times – ( +14 )
Info: This tutorial references the idea presented in Jonah's excellent blog article.

Setting application parameters dynamically in the back-end

Created about a year ago by PablovpTutorials4 comments – viewed 16,806 times – ( +10 / -1 )
I was wondering how to set-up the application parameters in the back-end to use them all around the application without the need of using the database and I came up with this solution, I hope it helps somebody else.

YiiBackboneBoilerplate - Project Setup for your Yii+BackboneJS applications

Created 8 months ago by Antonio RamirezOthers4 comments – viewed 9,941 times – ( +10 )
YiiBackboneBoilerplate
tags: directory, config

Use application on production/development environment without making changes

Created about a year ago by ifdatticTips2 comments – viewed 16,117 times – ( +8 / -1 )
I like programing on my localhost, however it really bugged me to make changes to index.php & config files on my production server. After combining all available wiki articles on this topic and some trial and error this is what I use for my applications so I could just upload it to production server and it will work without any changes.

"Why do I get a 403 error when trying to use Gii?"

Created 2 years ago by Steve FriedlFAQs2 comments – viewed 23,357 times – ( +7 )
After enabling the Gii module in your protected/config/main.php file and then try to use it with http://example.com/index.php?r=gii, you get an error:
tags: Gii, config

Setting and getting systemwide static parameters

Created 2 years ago by Steve FriedlHow-tos2 comments – viewed 29,150 times – ( +10 )
Occasionally one wishes to set systemwide parameters for an application, such as a contact address for email, an application name, or setting an option that guides major behavior. Yii provides for setting of static parameters in the configuration file, and this article talks about how to do it conveniently.
tags: config

Making friends' configs, DB credentials and paths with version control

Created 7 months ago by Alexander PalamarchukTips1 comment – viewed 2,719 times – ( +2 / -1 )
In many cases developers of one project use their own local environments for coding. There may be a common test platform and, of course, production. All these environments usually have different DB credentials and directory structures (first of all, path to YII framework directory). Another feature is debugging. It's convenient to turn it on for local environments, eventually - on the test server and never (generally speaking) - on the production.
tags: config