config.inc.php problems *confused*

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
hello there,

i have a little problem:

downloaded phpmyadmin 2.6.0-alpha2
installed it on my server. then....

i got stuck with the configuration, read the documentation, but as usual, its not in english * :shock: * *getting headaches when learning a new web language*

anyway:

i get this access denied error:



Warning: Cannot modify header information - headers already sent by (output started at /home/i/ixs/public_html/phpmyadmin/config.inc.php:773) in /home/i/ixs/public_html/phpmyadmin/libraries/auth/config.auth.lib.php on line 81



Welcome to phpMyAdmin 2.6.0-alpha2


phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server.

Error

MySQL said:


Cannot connect: invalid settings.


heres a part of my config.ini.php :




$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$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'] = 'MYSUPPLIEDUSERNAME';
$cfg['Servers'][$i]['controlpass'] = 'PASSWORD';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'MYSUPPLIEDUSERNAME';
$cfg['Servers'][$i]['password'] = '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();







the thing is i dont know which of the controluser, controlpass AND/OR user, pass i need to fill in.... :help: :sad:

can anyone help please?

with anticipated gratitude,
dirmass
 
you can leave the control pass and username ...

and try using the stable release of phpMyAdmin.
 
Back
Top