PhpMyAdmin出現錯誤資料無法匯出的解決方法:1、選擇其它選項選單,調出php目錄下的【php.ini】,並【CTRL f】查找【post_max_size=8M】直接修改成需要的大小;2、用DW查找原始碼中的檔案代碼直接修改。
PhpMyAdmin出現錯誤資料無法匯出的解決方案:
方法一、Windosw伺服器上解決方法如下:
首先我們來遠端登陸伺服器設定如下:
看下面圖示:選擇其它選項選單下:調出php目錄下的php.ini,然後CTRL f
找出:post_max_size = 8M直接修改成你想要的大小。
預設的是 post_max_size = 8M ,改大到 post_max_size = 20M 就好了。
注意:這裡面的大小是資料庫的大小。想要上傳多大的數據,就設定多大的。
方法二、linux伺服器系統中用下面方法
程式碼如下:
/usr/local/psa/admin/htdocs/domains/databases/phpMyAdmin/libraries To apply the fix, log in to your server via SSH as a "root" user and run the following commands: Change directories into the folder with the affected file. cd程式碼如下:
/usr/local/psa/admin/htdocs/domains/databases/phpMyAdmin/librariesMove the old file as a backup. mv session.inc.php session.inc.php-oldDownload the fixed file. wget程式碼如下:
http://download1.swsoft.com/Plesk/Autoupdate/Windows/8.1.1.2/120220/session.inc.php Restart Plesk
程式碼如下:
/etc/init.d/psa restart方法三、php原始碼中直接修改解決方法:用DW查找原始碼中的檔案程式碼直接修改即可。
ini_set('memory_limit', '180M');###############相關教學推薦:###phpmyadmin##########
以上是PhpMyAdmin出現錯誤資料無法匯出怎麼辦?的詳細內容。更多資訊請關注PHP中文網其他相關文章!