北京網(wǎng)站建設(shè)多年網(wǎng)站建設(shè)經(jīng)驗,依托強(qiáng)大的服務(wù)優(yōu)勢,為您提供專業(yè)的北京網(wǎng)站建設(shè)服務(wù)

當(dāng)前位置:首頁 > 北京網(wǎng)站建設(shè) > 北京網(wǎng)站建設(shè)解決phpmyadmin導(dǎo)入mysql數(shù)據(jù)庫大于2M的問題
北京網(wǎng)站制作 網(wǎng)站建設(shè)公司 網(wǎng)站搭建 網(wǎng)站制作公司 企業(yè)建站 網(wǎng)站設(shè)計公司 網(wǎng)站開發(fā) 網(wǎng)站設(shè)計 北京網(wǎng)站設(shè)計 網(wǎng)頁設(shè)計公司 常見問題 高端網(wǎng)站建設(shè) 企業(yè)網(wǎng)站建設(shè) 品牌網(wǎng)站建設(shè) 網(wǎng)頁設(shè)計模板 網(wǎng)頁設(shè)計與制作 網(wǎng)站建設(shè)多少錢 網(wǎng)站設(shè)計與制作 網(wǎng)站建設(shè)費(fèi)用 做網(wǎng)站 做網(wǎng)站公司 高端網(wǎng)站設(shè)計 網(wǎng)站建設(shè)方案 網(wǎng)站建設(shè)制作 北京網(wǎng)站建設(shè) 網(wǎng)站建設(shè)知識 網(wǎng)站建設(shè)優(yōu)化 網(wǎng)站建設(shè)空間 建設(shè)網(wǎng)站 制作網(wǎng)站 設(shè)計網(wǎng)站 開發(fā)網(wǎng)站 網(wǎng)站建設(shè)開發(fā) 網(wǎng)站開發(fā)公司 網(wǎng)頁制作 搭建網(wǎng)站 網(wǎng)站設(shè)計制作 網(wǎng)站設(shè)計費(fèi)用 企業(yè)網(wǎng)站設(shè)計 公司網(wǎng)站建設(shè) 公司網(wǎng)站設(shè)計 公司網(wǎng)站制作 企業(yè)做網(wǎng)站 網(wǎng)站設(shè)計與開發(fā) 網(wǎng)站建設(shè)備案

北京網(wǎng)站建設(shè)解決phpmyadmin導(dǎo)入mysql數(shù)據(jù)庫大于2M的問題

作者:鵬飛網(wǎng)絡(luò)   時間:2013-6-26   分類:北京網(wǎng)站建設(shè)

解決phpmyadmin導(dǎo)入mysql數(shù)據(jù)庫大于2M的問題:很多php+mysql程序在運(yùn)行一段時間以后會變的很大,尤其是數(shù)據(jù)庫,但一般的軟件和工具或者空間上提供的上傳執(zhí)行語句的限制都是2M以內(nèi),這樣的話是完全不能滿足客戶使用需求的,北京網(wǎng)站建設(shè)鵬飛網(wǎng)絡(luò)整理說明一下怎么上傳大的mysql數(shù)據(jù)庫。

一:phpMyAdmin(官方站點(diǎn):http://www.phpMyAdmin.net)是在線管理MySQL數(shù)據(jù)庫的工具(在本地配置好運(yùn)行環(huán)境)。

1,修改phpMyAdmin目錄下的config.sample.inc.php 這個文件的 數(shù)據(jù)庫服務(wù)器地址,只需要填寫服務(wù)器數(shù)據(jù)庫地址就可以了。最下面的連接用戶名密碼不用填寫。

  $cfg['Servers'][$i]['host'] = 'hdm-01234.hichina.com';   //這個是數(shù)據(jù)庫服務(wù)器地址

2,修改 libraries 下 config.default.php 用于訪問phpmyadmin的路徑和數(shù)據(jù)庫用戶名密碼

  $cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin';   //運(yùn)行phpmyadmin的服務(wù)器地址,一般在本地運(yùn)行就可以,不用作修改
  $cfg['Servers'][$i]['host'] = 'hdm-0234.hichina.com';      //這個是數(shù)據(jù)庫服務(wù)器地址
  $cfg['Servers'][$i]['user'] = 'hdasdfaf';               //數(shù)據(jù)庫登陸名
  $cfg['Servers'][$i]['password'] = 'o0d7radsfdfa';           //數(shù)據(jù)庫登陸密碼


二:在phpMyAdmin目錄下新建一個目錄,如:hxc,再編輯phpMyAdmin目錄下 librariesconfig.default.php(有的版本是config.inc.php),查找$cfg['UploadDir'],將其 值寫為新建目錄的名稱如下所示:

$cfg['UploadDir']   = ‘hxc‘;

// Directory for uploaded files that can be executed by phpMyAdmin. For example ‘./upload’. Leave empty for no upload directory support. Use %u for username

inclusion.

$cfg['SaveDir'] = ”;

// Directory where phpMyAdmin can save exported data on server. For example ‘./save’. Leave empty for no save directory support. Use %u for username inclusion.

$cfg['docSQLDir']= ”;

// Directory for docSQL imports, phpMyAdmin can import docSQL files from that directory. For example ‘./docSQL’. Leave empty for no docSQL import support.

$cfg['TempDir'] = ”;

// Directory where phpMyAdmin can save temporary files.This is needed for MS Excel export, see documentation how to enable that.

三:將要導(dǎo)入到數(shù)據(jù)庫的文件上傳到剛才新建的hxc文件夾中,登錄phpMyAdmin,選擇你的數(shù)據(jù)庫,在右側(cè)窗口中點(diǎn)擊“import(導(dǎo)入)”,這時你會發(fā)現(xiàn)導(dǎo)入界面中多了一個“網(wǎng)站服務(wù)器上載

目錄”選項(如果沒這一項你看下你的頁面右下角有一段以 Open new phpMyAdmin window 點(diǎn)一下這個頁面中就會有了),點(diǎn)擊下拉箭頭,列表里會有剛才上傳的文件名稱列表。注意選擇合適的編碼。

四:選中文件(可以是.sql普通文件也可以是.gzip的壓縮文件),點(diǎn)擊右下角的“執(zhí)行”按鈕,等待一段時間(等待的時間與導(dǎo)入文件體積成正比)即可完成“超重”文件的導(dǎo)入。

注:無論使用哪一種軟件來導(dǎo)入數(shù)據(jù),一定要注意導(dǎo)出的時候使用的哪個軟件導(dǎo)入的時候就盡量使用哪個軟件,要不然的話存的格式或配置會有不同造成無法完成操作,所以一般用phpMyadmin導(dǎo)入的時候先要選擇使用這個軟件導(dǎo)入想要的數(shù)據(jù)。

北京網(wǎng)站建設(shè),先建設(shè)網(wǎng)站后付款,http://beileier.cn