2016年2月18日 星期四

OS X(mac) yii 1.1.17 安裝測試

1. 從 http://www.yiiframework.com 下載 yii 1.1.17

2. 解壓縮後 , 將 yii 放置於 web 的某層目錄下 , 例如 :
/Library/WebServer/Documents/test_yii/

3. 使用 yii 的工具建立專案 , 例如 test1 :

cd /Library/WebServer/Documents/test_yii/framework/
    ./yiic webapp ../mytest1

    會建立一個 /Library/WebServer/Documents/test_yii/mytest1 的目錄.
    就可以使用瀏覽器測試 http://localhost/test_yii/mytest1/

4. 測試 http://localhost/test_yii/mytest1/ 發生時區沒有設定的錯誤 :
    通常 php 安裝時沒有設定時區 , 會發生錯誤 ,
    因此可以修改 http://localhost/test_yii/mytest1/index.php解決這個問題.
// 註解下面這一行 //
//Yii::createWebApplication($config)->run();

// 解決時區的問題 //
$app = Yii::createWebApplication($config);
Yii::app()->setTimeZone("Asia/Taipei");
$app->run();

沒有留言:

張貼留言