Wiki

Articles in category "how-tos"X
Displaying 61-70 of 182 result(s).

Integrating Wordpress and Yii,Working Out The Details.

Created 8 months ago by drumaddictHow-tos3 comments – viewed 7,239 times – ( +7 )
This article is based on fr0d0z's article Integrating Wordpress and Yii: still another approach, using Yii as the router/controller and provides more details on how to set up this integration.To be more specific,the idea is not to use any main.php layout in Yii's controllers.This gives the advantage that we do not need to modify any Yii code when we switch a theme in WordPress admin panel,provided we have done a very basic setup which I explain below.
tags: wordpress

YouTube API v2.0 – Browser-based Uploading

Created 8 months ago by VaibhavHow-tos1 comment – viewed 4,785 times – ( +5 )
Through the YouTube API you can upload files directly to the Youtube server. Youtube currently offers two services 1. Direct Link 2. Browser Based Uploading. In this wiki I will demonstrate how you can quickly set Browser Based Uploading for your Yii application. This is the protocol request that takes place.

Entire Messages into javascript object

Created 9 months ago by markuxHow-tos0 comments – viewed 2,525 times – ( +1 )
I needed all messages with their translation into javascript. This is my solution:

How to use Multiple instances of the same model in the same form

Created 9 months ago by kiran sharmaHow-tos15 comments – viewed 10,165 times – ( +16 / -2 )
When i had created this functionality then i found some difficulties and not got much idea from wiki and forums. so, i think this will be useful for newbie users and save time of other developers when create related functionality. I refer Collecting Tabular Input tutorial but not got clear idea for create/update.

Extending CJuiDialog

Created 10 months ago by dstudioHow-tos0 comments – viewed 5,182 times – ( +2 / -2 )
Sometimes you have CJuiDialog with different content but same buttons (or width, height). If you don't want to repeat yourself this is a great solution:

How to render a view in Fancybox using ajax

Created 10 months ago by rix.rix.How-tos1 comment – viewed 10,082 times – ( +5 / -1 )
Sometimes you want to render a view in Fancybox.
tags: fancybox, ajax, views

How to create front and admin side login form

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

Alternative wildcard characters CDbCriteria

Created 10 months ago by maigretHow-tos0 comments – viewed 2,943 times – ( +1 )
In SQL, wildcard characters can be used in "LIKE" expressions; the percent sign (%) matches zero or more characters, and underscore (_) a single character. Sometimes users are not familiar with these or they are using different ones like (*) and (+) similar to regular expressions. My colleages do so and then i decided to add this feature by extending CbCriteria. Especially adding a new parameter $wildcard_chars to the method addSearchCondition to replace them if needed with standard SQL characters:

Publish yii webapp using Git push

Created 10 months ago by rootbearHow-tos6 comments – viewed 3,622 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

ACL and RBAC

Created 10 months ago by zeroByteHow-tos0 comments – viewed 6,837 times
This HowTo assumes that you have a smattering of ACL in general and of how the acl-extension works basically. It will introduce you into the abstract and give you a hint on how to use Business-Rules. If you have in-depth questions, please refer to the extension documentation. Using ACL in an RBAC-manner cannot and should never obscure the fact that the underlying system is still ACL-based. In fact, the Business-Rules are just another layer in the permission-check plan.