Wiki

Displaying 281-290 of 469 result(s).

Single table inheritance

Created about a year ago by samdarkHow-tos6 comments – viewed 13,675 times – ( +31 )
Relational databases do not support inheritance so if we need to represent it, we have to somehow store meta info while keeping performance by minimizing JOINs. One way to solve this problem is using single table inheritance. All fields for the whole class tree are stored in a single table. Class name is stored in the type field of the same table.

Local time zones and locales

Created about a year ago by Russell EnglandHow-tos9 comments – viewed 30,272 times – ( +12 / -2 )
Following on from international dates, I also wanted times in the local timezone and format. This was a little more tricky but I think I've got a solution. This is only really appropriate if you have an international app.

[PT-BR] Proteção Contra Logout CSRF

Created 2 years ago by Rodrigo CoelhoTutorials0 comments – viewed 4,325 times – ( +2 / -1 )
CSRF é o acrônimo para Cross-site request forgery. CSRF é um ataque que forca o usuário a executar ações não desejadas numa aplicação Web na qual ele está autenticado.

Using Pear Mail Mail_Mime and Mail_Queue

Created 2 years ago by LorenHow-tos2 comments – viewed 5,686 times – ( +7 )
Create a component (/protected/components/PearMail.php) Edit this as needed based on where you put the files from PEAR.

A simple class to use a different db for a module

Created 2 years ago by tydeas_drTips2 comments – viewed 8,502 times – ( +8 )
What would you do if you want/need to have a different than the main database connection in an module's models?

config Use MS SQL SERVER 2005 2008.

Created 2 years ago by vcxz_1982Tutorials1 comment – viewed 15,327 times – ( +4 )
Use SQL SERVER 2000, the date format not like: yyyy/mm/dd hh:mm:ss. So I change to use SQL SERVER 2008 EXPRESS.

Implementing a User Level Access System

Created 2 years ago by Antonio RamirezTutorials9 comments – viewed 26,304 times – ( +27 )
I would like to provide you a quick tip on how to implement user level access to your Yii applications.

Logout CSRF Protection

Created 2 years ago by Rodrigo CoelhoTutorials1 comment – viewed 9,277 times – ( +10 )
CSRF is the acronymn for Cross-site request forgery. It is an attack which forces an end user to execute unwanted actions on a web application in which he/she is currently authenticated.

Getting nulls from database instead of empty strings

Created 2 years ago by samdarkTips2 comments – viewed 6,663 times – ( +12 )
To get null from database instead of empty strings you need to set up your DB connection as follows:
tags: database, null