Closed (fixed)
Project:
Quickstart: Prebuilt Drupal Development Environment
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
13 Feb 2011 at 02:14 UTC
Updated:
12 Mar 2011 at 16:49 UTC
$cfg['ProtectBinary'] = FALSE;
into:
/etc/phpmyadmin/config.inc.php
See also:
http://www.contentwithstyle.co.uk/content/viewing-blob-content-in-phpmya...
http://wiki.phpmyadmin.net/pma/Config#ProtectBinary
Comments
Comment #1
MichaelCole commentedThis only gets to the hex data.
https://sourceforge.net/projects/phpmyadmin/forums/forum/72909/topic/423...
Comment #2
MichaelCole commentedhttp://diveintogreasemonkey.org/
// ==UserScript==
// @name phpmyadmin
// @namespace quickstart
// @description Convert hexdata to string in phpmyadmin
// @include http://localhost/phpmyadmin/*
// ==/UserScript==
var hextextarea = document.getElementsByTagName('textarea');
if (hextextarea.length) {
alert('Hello World!');
}
Comment #3
MichaelCole commentedhttp://www.string-functions.com/hex-string.aspx
Comment #4
MichaelCole commentedecho "\$cfg['ProtectBinary'] = FALSE;" | sudo tee -a /etc/phpmyadmin/config.inc.php
Comment #5
MichaelCole commentedset default to not display blob as hex.