IT Knowledge Base

~ Without sacrifice, there can be no victory ~

發佈日期:

分類:

更正CodeIgniter出現的date()錯誤問題

01. 剛剛解決了mkdir():Invalid path錯誤,把更新加到另一個用CodeIgniter寫的網頁中event_calendar。一載入的問題是解決了,但當輸入密碼後,又出現另一個錯誤。

02. 錯誤內容是:

Message:  date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for now, but please set date.timezone to select your timezone.

03. 繼續偷看網上的答案。打開/index.php檔案。

加入以下內容:
if( ! ini_get('date.timezone') ) {
date_default_timezone_set('Asia/Hong_Kong');
}

04. 重新載入網頁,問題已經解決。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *