phpmyadmin:如何取消导入大数据库的时间限制

发布于 2024-09-12 07:10:12 字数 80 浏览 4 评论 0原文

如何删除 phpmyadmin 中导入操作的时间限制?

由于限制,我无法上传大数据库,我必须再次登录数据库。

谢谢

how can I remove the time limit for the import operation in phpmyadmin ?

I'm not able to upload a big database because of the limit and I have to login again in the database.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

北城孤痞 2024-09-19 07:10:12

我使用 MySQL BigDump

昨天对我来说效果很好!

I use MySQL BigDump

Worked well for me yesterday!

小嗲 2024-09-19 07:10:12

您必须打开 phpmyadmin 根文件夹中的 config.inc.php 文件。
添加这一行:

$cfg["ExecTimeLimit"]=36000;

调整时间限制为10小时。

如果你想设置一个无限的时间限制,你可以使用这个

$cfg['ExecTimeLimit'] = 0;

you must open config.inc.php file in phpmyadmin root folder.
add this line:

$cfg["ExecTimeLimit"]=36000;

adjusted the time limit will be 10 hours.

if you want to set an infinity time for timelimit you can use this

$cfg['ExecTimeLimit'] = 0;
深海蓝天 2024-09-19 07:10:12

你不应该使用 phpmyadmin 上传大型数据库...使用控制台 mysql/mysqldump。

但如果你真的想的话,你可以在 php.ini 中更改 max_execution_time 参数

you shouldn't use phpmyadmin to upload big databases... use console mysql/mysqldump.

but you can chenge max_execution_time parameter in your php.ini if you really want to

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文