我正在尝试使用phpMyAdmin导出MySQL数据库。在界面上我转到“导出”然后进入常规设置。导出格式:SQL,字符集:utf-8,压缩:无。
我得到的错误信息是:
Firefox can't find the file at https://<hostnamehere/cpsess3399788319/3rdparty/phpMyAdmin/export.php.
我进入.htaccess文件并添加了以下内容,因为我认为这可能是内存限制错误:
<IfModule mod_php5.c>
php_value memory_limit 512M
</IfModule>
这是一个Wordpress数据库。
有什么问题?
答案 0 :(得分:0)
手动执行mysqldump(用于公共线路接口)比任何图形应用程序都要好。例如,要进行备份,您可以打开命令行界面(在Windows中启动/执行/ cmd)并键入:
mysqldump -u user -p -h hostname databasename > backup_file.sql
以后再恢复:
mysql -u user -p -h hostname databasename < backup_file.sql
相信我,你不会后悔的。
mysqldump doc:
http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html
一个很棒的教程:
http://www.thegeekstuff.com/2008/09/backup-and-restore-mysql-database-using-mysqldump/
答案 1 :(得分:0)
错误消息表示您的phpMyAdmin安装不完整(缺少export.php)。