Hello to all!
Based on my simulation, latest version of phpMyAdmin wont really work as from my previous posted. But since i do really need the phpMyAdmin to be on my Elastix 2.2, i try to play around... (Don't do the same what i did in my production server, it's kind of stupid to risk it, LOL).
Here is my notes:
1. I use "yum -y install phpmyadmin" in SSH command. (I am pretty sure most of you guys did this already)
2. Locate the installed phpmyadmin ( it is located in /etc/) and move the folder in /var/www/html/modules/
3. Delete the link file config.inc.php and create a new one as per EWNT and copy paste this lines:
<?php
/* Servers configuration */
$i = 0;
/* Server localhost (config:root) [1] */
$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';
/* End of servers configuration */
?>
4. save it and now you try to opening the phpmyadmin:
yourIP/modules/phpMyAdmin
I hope this will work with you too... and if you encounter any trouble, don't mind to post it here but don't contact me, i might not know the answer (LOL).
Thanks!
Jessie