Jan 24, 2011

Yii - default timezone

1.set default timezone
Encountered an error which was described here:
http://php.net/manual/en/function.date-default-timezone-set.php
I added the following line to the index.php
date_default_timezone_set("Asia/Tokyo");

2.Gii

'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'123456',
'ipFilters'=> array('localhost', '127.0.0.1', '192.168.2.249'),
),
),



3. Gii
"CDbConnection failed to open the DB connection: could not find driver"
I didn't get the proper pdo_php support.
I re-configured php using the following command:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-pdo-mysql

...fixed now