查看表結構就會出現卡住的問題
解決方法:
第一步, 打開 ./version_check.php文件. 找到以下代碼.
$save = true; $file = 'http://www.phpmyadmin.net/home_page/version.json'; if (ini_get('allow_url_fopen')) { $response = file_get_contents($file); } else if (function_exists('curl_init')) { $curl_handle = curl_init($file); curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($curl_handle); }
將上面這些代碼刪除或者註釋掉.
第二步, 打開 ./libraries/Util.class.php 文件.
將
return strftime($date, $timestamp);
替換成
if(extension_loaded('gettext')){
date_default_timezone_set('UTC');
return gmdate('Y-m-d H:i:s', $timestamp + 28800);}
請先 登入 以發表留言。