Wiki

Displaying 21-30 of 483 result(s).

Logging to Heroku's logs from Yii

Created about a month ago by aarondfrancisHow-tos0 comments – viewed 1,285 times – ( +2 )
In order to get your Yii logs into Heroku's logs, you have to work a little bit of magic. You'll need to modify the boot.sh script and add the following two lines:
tags: heroku, Logging

Implementing a WebDAV server using SabreDAV

Created about a month ago by nineinchnickTutorials2 comments – viewed 1,823 times – ( +5 )
This article will show you how to easily implement a WebDAV server in your project using SabreDAV.

Profiling using XDebug

Created about a month ago by le_topHow-tos1 comment – viewed 1,467 times – ( +2 )
A short explication on how to extract profile information for PHP on your server using XDebug and KCacheGrind or WinCacheGrind.

defaultScope

Created about a month ago by Gerhard LiebenbergHow-tos4 comments – viewed 2,371 times – ( +3 )
This example includes a composite condition as well as an empty condition - as if you bypass or disable defaultScope without using resetScope().

Implementing menu items with progress (wait) dialog

Created about a month ago by TrejderHow-tos0 comments – viewed 2,773 times – ( +1 )
This article shows one of possible ways to implement menu items (as well as links), which displays a progress / wait dialog and are redirecting browser to destination URL in the same time. This is especially useful, for links or routes that are know to be loaded for a prolonged period of time (i.e. getting a lot of data from database).

Client-side form validation using Twitter Bootstrap's Popovers

Created about a month ago by TrejderHow-tos1 comment – viewed 9,930 times – ( +3 )
This article explains how to easily turn standard text-line validation errors into beautifully and professionally looking Twitter Bootstrap's Popovers.

Yiinitializr: The Library

Created about a month ago by Antonio RamirezOthers4 comments – viewed 3,936 times – ( +12 )
Introduction

How to use a component before every action of a controller

Created 2 months ago by transistorTips1 comment – viewed 3,375 times – ( +1 )
I guess this is a tip on how to execute some code before every action in a controller, because I will tell you how I did it and maybe you can use the idea in your project.

How to implement an event and attach it in a behavior

Created 2 months ago by seb7How-tos0 comments – viewed 2,112 times – ( +2 )
This page explains how to implement an event and catch that event in a behavior.
tags: event, behavior

Yet another implementation of CPhpAuthManager.

Created 2 months ago by seenivasanHow-tos2 comments – viewed 3,344 times – ( +5 )
In this wiki, I try to implement a simple authorization schema without putting much logic inside a file or into database table. We are constructing authorization hierarchy inside the controller. We are getting roles for the current user from database table and assigning only roles to user that are declared in the particular controller. We have brought down the work of loading of auth data at main application level to controller level. This way we have pulverised auth data for entire site into smaller units. Finally we are going to look at couple of examples.