我有一个MySQL数据库,我在所有表中使用binary(36)
列来表示唯一id
。
当引入 phpMyAdmin 4.3.0 时,看起来他们添加了一个功能,其中BLOB和BINARY类型列将其数据显示为链接,单击该链接将允许您下载该文件(在我的情况下,下载 .bin 文件。)
如果要编辑数据,则必须单击单元格的空白部分才能打开“编辑”模式。
我可以看到这很有用,但就我而言,我对它下载的.bin文件不感兴趣。
在早期版本的phpMyAdmin中(例如 4.1.0 ),此功能不可用(或至少在默认情况下未启用)。您只需单击显示的文本,就会弹出编辑对话框。
我查看了phpMyAdmin's Documentation并且无法找到禁用此功能的设置。有$cfg['ProtectBinary']
设置,但我已将其设置为blob
,因此这不应成为问题。
理想情况下,我想使用最新版本的phpMyAdmin,但前提是我可以更改此设置。感谢。
答案 0 :(得分:0)
https://media.readthedocs.org/pdf/phpmyadmin/latest/phpmyadmin.pdf说:
$cfg[’ProtectBinary’]
Type boolean or string
Default value ’blob’
Defines whether BLOB or BINARY columns are protected from editing when browsing a table’s content. Valid
values are:
•false to allow editing of all columns;
•’blob’ to allow editing of all columns except BLOBS;
•’noblob’ to disallow editing of all columns except BLOBS (the opposite of ’blob’);
•’all’ to disallow editing of all BINARY or BLOB columns.
因此默认值为'blob',您应该将其设置为false:
$cfg[’ProtectBinary’] = false;