Showing 101-120 of 652 items.

Attaching multiple event handlers to onBeginRequest

Created 12 years ago by Boaz Boaz, updated 12 years ago by CeBe CeBe. 0 comments

There came the need to perform two operations, always, on 'application boot' time. Example? My real world example involved some geo-location logic (that's the first operation) and syncing of some session details so KcFinder can be in sync with the user in context - each user with his own session container (the second).

1 0
2
Viewed: 18 664 times
Version: 1.1
Category: How-tos

Image Puzzle Game

Created 12 years ago by nachi nachi, updated 12 years ago by CeBe CeBe. 2 comments

I have developed a extension for a image puzzle game. You can use your own images and you can also customize how many rows and columns for the image. It can be used in commercial sites. I just needed your thoughts on the game.

2 0
4
Viewed: 13 706 times
Version: 1.1
Category: Others

Email by YiiMailer, Call Outlook, IMAP

Created 12 years ago by Scott_Huang Scott_Huang, updated 12 years ago by CeBe CeBe. 0 comments

In Yii community we have lots of extention can send emails, such as YiiMailer and Swift and so on, or even IMAPI, thanks for team contribution. However, sometimes, in the intranet enviroment, the program cannot run successfully since SMTP /IMAP port been banded. So you need to seek other ways. The most simple way is call outlook as COM.

0 0
6
Viewed: 26 177 times
Version: 1.1
Category: How-tos

Configuring Yii to run on both Windows and OSX

Created 12 years ago by trond trond, updated 12 years ago by CeBe CeBe. 2 comments

If you develop your Yii project on both Windows and Mac, there can be a problem setting up the configuration unless the configurations for both system are identical. On my machines I have the following configurations:

1 0
4
Viewed: 16 631 times
Version: 1.1
Category: How-tos

Saving CGridView filter

Created 12 years ago by sefburhan sefburhan, updated 12 years ago by CeBe CeBe. 5 comments

In this tutorial we will try to save cgridview filter(search) with title etc. basically we want to save two forms data i.e one represents filters and other data about filters like title, description etc. You can define your own structure for filter saving table here are some basic steps

1 0
31
Viewed: 16 401 times
Version: 1.1
Category: Tutorials

Integrate Zend 2 XML writer into Yii

Created 12 years ago by Jonny Jonny, updated 12 years ago by CeBe CeBe. 0 comments

By Integrating the Zend 2.* framework into Yii you can quickly and painlessly generate XML outputs from your controllers. This will be helpful to anyone who has never done this before or only done it with Zend 1 as the introduction of namespaces can be strange when you first view them.

2 0
4
Viewed: 52 261 times
Version: 1.1
Category: Tutorials

Tags manipulation using Select2 in single field

Created 12 years ago by sefburhan sefburhan, updated 12 years ago by CeBe CeBe. 0 comments

Sometime its very important to perform many actions/operation with limited time frame for friendly use, select2 provides a lot of such functionality , I just extend it tags functionality to provide a quick use for developer to save time, as I spent much time on it.

2 0
35
Viewed: 52 182 times
Version: 1.1
Category: Tutorials

Simple Multiple Environment Setup with Default Yii Installation

Created 12 years ago by Ibrar Turi Ibrar Turi, updated 12 years ago by CeBe CeBe. 2 comments

After installing Yii basic application on our systems, most of the time we want to have multiple environment such as local, dev and live setup. Most of the times when we want to make changes to configuration file, we have to over-write configurations file for each environment.

2 0
8
Viewed: 20 777 times
Version: 1.1
Category: How-tos

Simple Web APIs for your Yii App

Created 12 years ago by shiv shiv, updated 12 years ago by CeBe CeBe. 4 comments

Its very common now-a-days to have Mobile app for web apps. For Mobile apps we need web APIs to fetch data or even post/update on web. We found a very simple method to make such interface. Mobile App can call plain get or post request and receive data back in JSON format. JSON is relatively easy for mobile app to handle while plain standard GET/POST request for easy for Web server to handle. This...

1 2
10
Viewed: 38 219 times
Version: 1.1
Category: How-tos

Extension Development (beginner)

Created 12 years ago by sefburhan sefburhan, updated 12 years ago by CeBe CeBe. 2 comments

To extend the functionality of you web application relative to your requirements you are supposed to use existing yii core libraries or use external libraries. There are some steps to ensure security, uniqueness, modularity, performance and to avoid rework in future.

Step 01: Have a Strategy

  • Is my extension just for fun/demonstration purposes or for everyday use in the real world? -...