phpMyAdmin 2.9.0.2 released

for once I would like to not have to modify the default themes of phpMyAdmin. Why do they insist on having font-size's for the visually challenged all the time?
 
update - FreeBSD 5.4

howdy, anyone have any ideas how to update phpmyadmin using FreeBSD 5.4, anyone got any cheat sheets
 
Gheez, another update? What did they change now again. LOL

Anyways well what I do for a theme is untar the theme I want, rename it to original.bak, delete the old original in the themes folder and copy the one I renamed as original. That way I have my default theme back quite easily.. :)
 
IMHO you are best to always wait a few days with them to update unless it's a critical security update. They always do this.
 
Re: update - FreeBSD 5.4

ansi said:
howdy, anyone have any ideas how to update phpmyadmin using FreeBSD 5.4, anyone got any cheat sheets
Code:
cd /usr/local/directadmin/scripts/
./phpMyAdmin.sh

now before you run the phpMyAdmin.sh script you will want to edit it with your favorite editor (vi, nano, pico, emacs) and change the line at the top of the file starting with "VER=" to the version you want like for this one you would set it to:
VER=2.9.0.2


Hope my crappy instructions help
 
When I login to PMA i get to see this at the bottom:
---
Invalid hostname for server 2. Please review your configuration.
Invalid hostname for server 3. Please review your configuration.
---

First time I notice this, so not sure when this first occured.
 
you now need to go into the phpmyadmin config file in /var/www/html/phpMyAdmin

and comment out the additional server config lines. Why those where left in WHO KNOWS... but you are gonig to need to comment them out.
 
mdr said:
Thx Wael, but I' using FreeBSD ;)
try this :)
Edit
Code:
nano -w /var/www/html/phpMyAdmin-x.x.x.x/config.inc.php
Remove this
Code:
$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['extension']       = 'mysql';
$cfg['Servers'][$i]['compress']        = FALSE;
$cfg['Servers'][$i]['controluser']     = '';
$cfg['Servers'][$i]['controlpass']     = '';
$cfg['Servers'][$i]['auth_type']       = 'config';
$cfg['Servers'][$i]['user']            = 'root';
$cfg['Servers'][$i]['password']        = '';
$cfg['Servers'][$i]['only_db']         = '';
$cfg['Servers'][$i]['verbose']         = '';
$cfg['Servers'][$i]['pmadb']           = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable']   = ''; // 'pma_bookmark'
$cfg['Servers'][$i]['relation']        = ''; // 'pma_relation'
$cfg['Servers'][$i]['table_info']      = ''; // 'pma_table_info'
$cfg['Servers'][$i]['table_coords']    = ''; // 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']       = ''; // 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']     = ''; // 'pma_column_info'
$cfg['Servers'][$i]['history']         = ''; // 'pma_history'
$cfg['Servers'][$i]['verbose_check']   = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
                                       = '';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['extension']       = 'mysql';
$cfg['Servers'][$i]['compress']        = FALSE;
$cfg['Servers'][$i]['controluser']     = '';
$cfg['Servers'][$i]['controlpass']     = '';
$cfg['Servers'][$i]['auth_type']       = 'config';
$cfg['Servers'][$i]['user']            = 'root';
$cfg['Servers'][$i]['password']        = '';
$cfg['Servers'][$i]['only_db']         = '';
$cfg['Servers'][$i]['verbose']         = '';
$cfg['Servers'][$i]['pmadb']           = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable']   = ''; // 'pma_bookmark'
$cfg['Servers'][$i]['relation']        = ''; // 'pma_relation'
$cfg['Servers'][$i]['table_info']      = ''; // 'pma_table_info'
$cfg['Servers'][$i]['table_coords']    = ''; // 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']       = ''; // 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']     = ''; // 'pma_column_info'
$cfg['Servers'][$i]['history']         = ''; // 'pma_history'
$cfg['Servers'][$i]['verbose_check']   = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
                                       = '';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

END

replace phpMyAdmin-x.x.x.x with last ver.


Wael
 
Thanks Wael!
Did that one this weekend and it's fine now! Still wonder why this is in the config-file by default though.
 
thanks nobleclem finally got round to updating phpMyadmin. instructions are pretty straight forward :) thanks !!!
 
Back
Top