Wiki

Sorted by viewsX
Displaying 331-340 of 482 result(s).

Directory independent extensions

Created 2 years ago by GOshaTips3 comments – viewed 6,211 times – ( +15 / -1 )
Many people want to use downloaded extensions in their own way. As for me most of the extensions require me to correct Yii::import() instructions inside their source code. All these extensions are directory dependent. To avoid the situation described above, I suggest to implement pseudo-anonymous aliases:

Cambiando el diseño de JuiWidgets

Created 2 years ago by Luis Lobo BorobiaTutorials1 comment – viewed 6,181 times
Un aspecto del diseño de interfaces de usuario tiene que ver con la coherencia del diseño y uso de colores entre los distintos componentes de interfaz de usuario utilizados.

Our WebApp that will run without downtime during update/upgrade

Created about a year ago by Pinoy CoderzTutorials3 comments – viewed 6,155 times – ( +8 / -2 )
How many of us wonder how we can upgrade the website without hurting the operation of our WebApp?
tags: tutorial

Send mail using YiiMail extension

Created 3 months ago by RKATutorials1 comment – viewed 6,141 times – ( +2 )
Let me show a simpe example to send mail using YiiMail extension in 5 steps. It also includes any template view if required along with the content.
tags: YiiMail

PayPal Integration And IPN (Instant Payment Notification)

Created 6 months ago by yasenHow-tos3 comments – viewed 6,094 times – ( +7 )
Had to implement PayPal payments for a client and would like to share part of my code with you. Because the tutorial will become too long, I'll leave some code to be done by you, e.g. creating models, controllers and db tables for products, orders.

Cheat Sheet: Displaying Name instead of Numbers and Displaying Alphanumeric instead of numeric values

Created 7 months ago by skwordenHow-tos4 comments – viewed 6,073 times – ( +3 / -1 )
I keep a reference to some simple but painful task if you forget a common or something. I am new to Yii and this took awhile for me to figure out. Everything I read said do this or do that and not a single one worked for me. However, the following did.

Application-driven database with CDbMigration and an extended CActiveRecord

Created about a year ago by Tudor IlisoiOthers0 comments – viewed 6,010 times – ( +8 )
This is an incipient implementation of application-driven database with Yii.
tags: database, model

ISA hierarchy of tables inside a database and how to implement a single form

Created about a year ago by pligorHow-tos2 comments – viewed 5,965 times – ( +1 )
Please consider the following Dear software engineers imagine I have a simple ISA hierarchy: parent A with children B and C. So let's say we have the corresponding tables named "a", "b", "c" and (created with the help of the gii model creator) the classes A, B, C The following is a screenshot from MySQL workbench:

Image resize on the fly

Created 7 months ago by TpoxaHow-tos3 comments – viewed 5,927 times – ( +4 )
For example have folder with image resources which are public accessible
tags: yii, image-resize

CSV Export

Created about a year ago by JohnPollardHow-tos5 comments – viewed 5,911 times – ( +4 )
I needed a csv export function for my cgridview and I wanted to export the entire result set of the sorted and filtered cgridview the user was viewing via ajax.
tags: csv, export