Wiki

Sorted by commentsX
Displaying 101-110 of 469 result(s).

How to customize Yii core messages?

Created 4 years ago by qiangTutorials6 comments – viewed 27,751 times – ( +14 )
Yii core messages refer to static text strings in the core Yii framework code which are meant to be displayed to end-users (e.g. core exception messages, default validation error messages). Customization of these core messages is needed in two circumstances:

How to generate Web feed for an application

Created 4 years ago by qiangTutorials6 comments – viewed 12,712 times – ( +4 )
Web feed is a data format used for providing users with frequently updated content. In this article, we describe how to use Zend_Feed, an excellent component from Zend Framework to generate Web feed for an Yii application. This article can also serve as a general guide on how to use other components in Zend Framework.

Using search engine and user friendly URLs

Created 3 years ago by qiangTutorials6 comments – viewed 38,717 times – ( +18 )
The Definitive Guide introduces the fundamentals of managing URLs in a Yii application. In this tutorial, we introduce a practical technique that can quickly turn your application into using search-engine-friendly URLs.
tags: SEO, URL

Show captcha after <N> unsuccessfull attempts

Created 11 months ago by zitterHow-tos6 comments – viewed 7,524 times – ( +14 / -3 )
In this mini howto I would like to show how to add a required captcha field in the login form, after a defined number of unsuccessfull attempts. To do this, I will use the blog demo that you have in default Yii download package (path/to/yii/demos/blog).

Module based login

Created 2 years ago by suriyansureshTutorials6 comments – viewed 32,624 times – ( +14 )
If you want to add module based login to a site without using RBAC, please follow these guidelines.

Publish yii webapp using Git push

Created 10 months ago by rootbearHow-tos6 comments – viewed 3,627 times – ( +2 )
I did not invent this instructions, I read it somewhere and re-organized in my way as I was trying and it works for me;
tags: git

How to create front and admin side login form

Created 10 months ago by vibhaJadwaniHow-tos6 comments – viewed 21,307 times – ( +4 )
In this WIKI you can learn how to create front and admin login form, using database.

Using setFlash for displaying various kind of messages

Created 2 years ago by TrejderHow-tos6 comments – viewed 22,518 times – ( +4 / -4 )
In this short how-to I will show how to customize setFlash() to display messages (flashes) styled to be success confirmation, error report or notice information. And how to achieve displaying errors in other way.
tags: flash, error, message

Increasing AR performance in connections with Oracle

Created 2 years ago by TrejderHow-tos6 comments – viewed 10,360 times
Please, note. This article is entirely based on a work done by me colleague developer, who hasn't got account on this webpage and also hasn't got time for writing this article. I'm writing it for him. I will try to forward him any comments that may appear, but can't assure if/when he'll be able to answer. I'm far, far less experienced in Oracle therefore I won't probably be able to help myself.

mysql performance tip

Created 8 months ago by sirin kTips6 comments – viewed 4,737 times – ( +2 / -1 )
When we are doing an insert of huge no.of rows into an SQL table ,Normally we will try to write separate insert quries this may lead us to a long duration of execution time and we can increase the speed of executing SQL quries by adding all the rows into a single insert query.
tags: mysql