Wiki

Articles in category "tips"X
Displaying 31-40 of 103 result(s).

Customize CGridView columns directly in your view

Created 10 months ago by clapasTips2 comments – viewed 10,159 times – ( +2 / -1 )
You usually take a model instance passed into your view to provide data to a CGridView in this way:

Using sub query for doubletts

Created 10 months ago by mbTips3 comments – viewed 3,957 times – ( +1 )
find doubletts by db fields. in this example i will check doublets for 3 tabelfields (col1,col2,col3). so i will get a subquery with the condition, select and grouping of the tablefields. the having with COUNT() > 1 means: find all records more then one result.

Yii behind a reverse proxy, SSL support and correct IP logging

Created 10 months ago by mrkmgTips0 comments – viewed 2,720 times
If you are hosting Yii behind a reverse proxy, for example nginx, and you are having issues with your logs showing the proxies IP, or the urls being created arn't being created for SSL because your SSL certs are located on your reverse proxy instead of the Yii server, this code may be able to help you. I placed them in the very top of Yii's entry script, index.php

How to upload image(photo), and path entry in database with update functionality

Created 11 months ago by kiran sharmaTips9 comments – viewed 33,909 times – ( +19 )
I saw many posts that community newbie is confuse in image/photo upload with random name. so I post this topic covering all useful things regarding to image/photo upload(not covering image attribute related functionality)

BootProgressColumn - Progress Bar Inside GridView Column compatible with 'bootstrap' extension

Created 11 months ago by LuizTips1 comment – viewed 6,239 times – ( +6 )
A little hint of how to create a progress bar inside the column of the grid, using the 'bootstrap' extension.

How to filter CGridView with From Date and To Date datepicker

Created 11 months ago by kiran sharmaTips10 comments – viewed 14,623 times – ( +11 )
This artical is related to allow user to filter CGridView with date range using datepicker on submit button. Here I use Yii Cookie to preserve date in datepicker textbox after submitting the form.

Access log output from unit tests

Created about a year ago by MikeTips2 comments – viewed 3,325 times – ( +2 )
Say, you want to write a test for a component which provides a caching feature. How would you know, that some method of your component returns a cached result? With the solution described here you can inspect all log outputs. So you could search the logs for accesses to the DB to really make sure, that the result was served from cache.

Importing CSV file to mysql table using "LOAD DATA" command.

Created about a year ago by sirin kTips10 comments – viewed 15,039 times – ( +5 )
hi, Here i am giving you some simple step to import huge data from a csv file to your mysql table.this is useful when you have a very huge data to import from csv format.
tags: csv, mysql, import

How to catch and log MySQL deadlock errors

Created about a year ago by sebTips0 comments – viewed 5,772 times – ( +4 )
This method allows to log InnoDB monitor output when deadlock error occured. This way we will have much more useful data to find and fix deadlock.
tags: database

using multiple radio button

Created about a year ago by francis jaTips2 comments – viewed 15,180 times – ( +5 )
When we use multiple radio buttons with same name in Yii many people have the problem on getting the value of the selected radiobutton. The radioButtonList can be used for that, but if we need to use radioButton itself to place the button any where in a view, we need to include one more parameter in htmloption array().