在新设计的phpMyAdmin中,如何将导出设置为默认“以文本形式查看输出”?

发布于 2024-11-17 07:22:38 字数 919 浏览 0 评论 0原文

在新设计的phpMyAdmin(目前为3.4.2)中,如何将导出设置为默认“以文本形式查看输出”?

这曾经有效,但现在不再有效:

$cfg['Export']['asfile'] = false;

我在查看 display_export.lib.php 的代码后尝试了这些操作,但没有运气:

$cfg['Export']['repopulate'] = true;
$cfg['Export']['view_as_text'] = true;

他们的文档似乎没有更新:http://wiki.phpmyadmin.net/pma/Config

推荐的解决方案

直到任何人都能找到“正确的方法”改变这个,我建议修改这一行display_export.lib.php(当前第 328 行)。粗体文字是我补充的。还有一个括号在第一组粗体项目的右侧以粗体显示。

<li><input type="radio" id="radio_view_as_text" name="output_format" value="astext" <?php echo (!empty($cfg['Export']['view_as_text']) || isset($_GET['repopulate']) ) ? 'checked="checked"' : '' ?>/><label for="radio_view_as_text"><?php echo __('View output as text'); ?></label></li>

In the newly designed phpMyAdmin (currently 3.4.2), how can you set the export to default to "View output as text" ?

This used to work but no longer does:

$cfg['Export']['asfile'] = false;

I tried these things after looking through the code of display_export.lib.php, but with no luck:

$cfg['Export']['repopulate'] = true;
$cfg['Export']['view_as_text'] = true;

Their documentation does not seem to be updated: http://wiki.phpmyadmin.net/pma/Config

Recommended Solution

Until anyone can find the "right way" to change this, I would recommend modifying this line in display_export.lib.php (currently line 328). The bold text is my addition. Also there is one parenthesis which is bolded to the right of the first set of bold items.

<li><input type="radio" id="radio_view_as_text" name="output_format" value="astext" <?php echo (!empty($cfg['Export']['view_as_text']) || isset($_GET['repopulate']) ) ? 'checked="checked"' : '' ?>/><label for="radio_view_as_text"><?php echo __('View output as text'); ?></label></li>

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

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

发布评论

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

评论(1

挖个坑埋了你 2024-11-24 07:22:38
$cfg['Export']['asfile'] = false;

phpMyAdmin 3.5.2.2 下工作正常将

以上行添加到 phpmyadmin 配置后重新启动 apache

$cfg['Export']['asfile'] = false;

works fine under phpMyAdmin 3.5.2.2

Restart apache after adding the above line to your phpmyadmin configuration

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