phpMyAdmin 4.3.4 released

unihostbrasil

Verified User
Joined
Nov 23, 2009
Messages
208
Location
São Paulo - Brazil
http://www.phpmyadmin.net/documentation/changelog.php

4.3.4.0 (2014-12-29)

- bug #4653 Always connection error was shown, on /setup at tab "configuration storage"
- bug #4661 Drag and drop file import always fails
- bug #4651 don't open console with esc
- bug #4664 select min() displays 1 row, but reports the table amount of rows returned
- bug #4666 Undefined indexes in table stucture print view of a view
- bug #4663 Export missing back ticks for order table name
- bug #4668 Remove from central columns error
- bug #4670 CSV import reads both commas and values into first column after first row
- bug #4642 phpmyadmin often fails to load due to specific load order
- bug #4671 Unable to move all columns
- bug #4645 Import of export created with mysqldump
- bug #4672 "Distinct values" does not page
- bug #4667 Consistency in borders
- bug #4658 Illegal string offset (Data_length, Index_length)
- bug #4655 Undefined index: collation_connection
- bug #4673 Delimiter causing page lock
 
I still get the errors after uprade as reported in previous threads:

Code:
Notice in ./libraries/Header.class.php#227
Undefined index: collation_connection
Backtrace
./libraries/Header.class.php#257: PMA_Header->getJsParams()
./libraries/Header.class.php#208: PMA_Header->getJsParamsCode()
./libraries/Header.class.php#136: PMA_Header->_addDefaultScripts()
./libraries/Response.class.php#102: PMA_Header->__construct()
./libraries/Response.class.php#131: PMA_Response->__construct()
./libraries/common.inc.php#1067: PMA_Response::getInstance()
./index.php#12: require_once(./libraries/common.inc.php)

Notice in ./index.php#212
Undefined variable: collation_connection
Backtrace

Please note that the errors is only visible on first log in, to see the error again you must clear all cache etc in your browser.

However I solved the problem by setting this value in config.inc.php:

Code:
$cfg['SendErrorReports'] = 'never';

Here is the related bug report: https://sourceforge.net/p/phpmyadmin/bugs/4655/

Another queston: After I upgrade from 4.2.13.1 to 4.3.4 I notice that in config.inc.php the blowfish_secret is not filled out any more? Can DirectAdmin support comment on that? Before it was always filled out, but after upgrade it is just empty '' - I mean like this:

Before upgrade:
Code:
$cfg['blowfish_secret'] = 'a8b7c6d'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

After upgrade:
Code:
$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
 
Last edited:
ditto, DA doesn't use 'cookie' type of auth_type. 'http' is set there by default, so blowfish_secret is not used for HTTP-Auth :)
 
Back
Top