Wiki

Displaying 301-310 of 482 result(s).

Implementing a User Level Access System

Created 2 years ago by Antonio RamirezTutorials10 comments – viewed 27,420 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,611 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,832 times – ( +12 )
To get null from database instead of empty strings you need to set up your DB connection as follows:
tags: database, null

Converting an Artisteer Theme to Yii

Created 2 years ago by bgleeHow-tos3 comments – viewed 15,364 times – ( +9 )
There are two approaches to converting an Artisteer theme. The first is to simply copy an existing Artisteer – based Yii theme, overlay the CSS and images, then make any necessary tweaks to the layout files. This is undoubtedly the fastest route, but won't teach you as much as doing it from scratch. That's ok. Sometimes getting the job done is the top priority. The second approach is more general and will apply to some extent to other HTML templates that you may want to convert. I'll be covering the first approach in detail, while the second will be more of a general discussion.

How to write a simple application component

Created 2 years ago by zaccariaHow-tos4 comments – viewed 21,152 times – ( +12 / -7 )
An application component is a confortable way for share information among all component of the application

How to generate Yii-like Documentation

Created 2 years ago by AsgarothHow-tos7 comments – viewed 15,830 times – ( +42 )
Something a good application cant miss is documentation, and what would be better than some nice formatted HTML documentation that can be auto-generated from your code, we know several tools that already do this like phpDocumentor, but today we are introducing Yii Docs Generator which is a modification of the code that Yii itself uses to generate its documentation, thank phpnode for this wonderful work.
tags: doc

CListView AJAX filtering

Created 2 years ago by DragaTutorials14 comments – viewed 29,482 times – ( +14 )
This tutorial shows how to filter CListView items by AJAX, and it's compatible with disabled JavaScript users In my case this has been done to filter users list

Syntax check

Created 2 years ago by Russell EnglandTips2 comments – viewed 4,593 times – ( +4 )
So I've been busy making lots of modifications to my views/models/controllers - came to test the app and got a blank screen. Nothing in the application.log file so must be a syntax error somewhere... But which file?
tags: php, syntax

Using International Dates

Created 2 years ago by Russell EnglandHow-tos3 comments – viewed 19,951 times – ( +16 )
I needed British (dd/mm/yyyy) formatted dates throughout my application but found it very difficult to find examples of how to do this - until I found this excellent forum post http://www.yiiframework.com/forum/index.php?/topic/3649-dealing-with-i18n-date-formats/

A simple action for XUpload extension

Created 2 years ago by tydeas_drTips1 comment – viewed 9,951 times – ( +3 )
All the basic functionality for an action used by the xupload extension. Check resources for the source code of this action
tags: tips, xupload, caction