久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      訪問phpmyadmin速度慢的原因及解決方法

      訪問phpmyadmin速度慢的原因及解決方法

      第一步:在phpmyadmin目錄中找到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);      }

      將上面這些代碼刪除或者注釋掉,檢查升級(jí)花費(fèi)30秒時(shí)間,沒必要在線檢測(cè)是否有新版本。

      第二步,打開 ./libraries/Util.class.php 文件,查找如下代碼:

      return strftime($date, $timestamp);

      替換成如下代碼:

      if(extension_loaded('gettext'))    return strftime($date, $timestamp);

      中國(guó)區(qū)可以替換成以下代碼:

      if(extension_loaded('gettext')){          date_default_timezone_set('UTC');  return gmdate('Y-m-d H:i:s', $timestamp + 28800);}

      原理:本地化時(shí)間格式化需要gettext支持,假如你的環(huán)境沒有開啟此功能,將會(huì)返回亂碼,影響#phpmyadmin ajax的處理。

      相關(guān)文章教程推薦:phpmyadmin教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)