Wiki

Sorted by date (updated)X
Displaying 61-70 of 467 result(s).

The directory structure of the Yii project site

Updated 2 months ago by Yang HeOthers28 comments – viewed 66,319 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

Patching PHP code (used as a library) without changing the original code!

Updated 2 months ago by le_topTips0 comments – viewed 1,720 times – ( +3 )
The article Fixing extensions without modifying their code reminded me of another patching technique that I used. My conviction and a hard look on the web had led me to an article Redefine PHP class methods or class giving me a head start to do what I wanted: patching third party code without touching the original to allow easy upgrades.
tags: patch, patching

Email function at Contact page

Updated 2 months ago by sarthakTutorials1 comment – viewed 2,199 times – ( +1 / -3 )
***note : only for linux users.
tags: email, contact, ssmtp

Configuring PhpStorm IDE for Yii

Updated 2 months ago by samdarkTips13 comments – viewed 41,729 times – ( +50 / -1 )
In order to be able to get from render or renderPartial to the view, from widget to widget class, from relations to model classes you need to install additional plugin called YiiStorm.
tags: IDE, PhpStorm

PHPStorm & NetBeans autocomplete problem

Updated 2 months ago by StagelineTips0 comments – viewed 2,912 times – ( +16 )
The problem: If you type Yii::app()->user<ctrl+space> code completion didn't work. This solve it.

Cookie management in Yii

Updated 2 months ago by resurtmHow-tos4 comments – viewed 42,556 times – ( +39 / -1 )
Cookie management in Yii is easy, but may not be so obvious for the beginners to this framework, so I wrote this simple article to clear some doubts out.

How to display static pages in Yii?

Updated 2 months ago by resurtmTutorials2 comments – viewed 26,037 times – ( +14 )
In a Web application, we often need to display pages like "about this site", "legal information", whose content are mostly static. There are several approaches to deal with this kind of pages.
tags: static pages

Yii registry, how to use it, does it exist at all?

Updated 2 months ago by resurtmHow-tos2 comments – viewed 11,316 times – ( +6 )
From time to time people ask about registry...

Extending an ActiveRecord model

Updated 2 months ago by BogseyHow-tos3 comments – viewed 3,603 times – ( +2 / -3 )
Introduction

Reference: Model rules validation

Updated 2 months ago by François GannazHow-tos4 comments – viewed 250,336 times – ( +84 )
This is a reference to be used for Model rule validation and is compiled from the Yii documentation and code. The purpose is to have all the information gathered in one place instead of scattered. This reference is not an intro. See The Definitive Guide to Yii, Declaring Validation Rules for a tutorial.