phpMyAdmin login error
Posted by: eatc7402 (---.hsd1.mn.comcast.net)
Date: April 26, 2010 08:29PM

I am TRYING to set up WAMP. i have followed EXACTLY the instructions given
in [blog.jlbn.net]. But i'm done i logout of the phpMyAdmin,
them try to log back in get this....

phpMyAdmin - Error
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

and this in the apache error log...

[Mon Apr 26 13:13:36 2010] [error] [client 127.0.0.1] File does not exist: C:/wamp/www/favicon.ico

i just simply dont understand. It should NOT be this difficult to get swetr up.
Frustrated!!!

eatc7402

Options: ReplyQuote
Re: phpMyAdmin login error
Posted by: yfastud (Moderator)
Date: April 27, 2010 05:31AM


Options: ReplyQuote
Re: phpMyAdmin login error
Posted by: eatc7402 (---.hsd1.mn.comcast.net)
Date: April 27, 2010 11:17PM

I dont think I did anything else. But i decided to just start over AGAIN,
and now it appears to be working. Thanks.

Options: ReplyQuote
Re: phpMyAdmin login error
Posted by: eatc7402 (---.hsd1.mn.comcast.net)
Date: April 28, 2010 05:33AM

well it died again. I was running Apache 2.0.58 with php 5.2.2 and mysql 5.1.36,.
Al was good. But trying to run some previously good php code under those
circumstances did not produce good data driven results. I recalled that the previous
php code ran with a mysql 4.1.x version. So I loader an older 4.1.x version from
Wamp and set my mysql to the 4.1.x version.

Then ALLwent bad.

Now if I try to access phpmyadmin all I get is..,.

phpMyAdmin - Error

Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly....

MySQL said: Documentation
#1045 - Access denied for user 'root'@'localhost' (using password: YES)
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.

No matter what I seem to do I get stuck here.

VERY FRUSTRATING.

eatc7402

Options: ReplyQuote
Re: phpMyAdmin login error
Posted by: matan7890 (87.69.86.---)
Date: April 28, 2010 07:04PM

You changed the config.inc.php right? (the defult is "using password: NO"winking smiley
you need to change the config.inc.php to:
<?php

/* Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

/* End of servers configuration */

$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?>

(that what i'm using...)

-----------------------------------------------------------------------------------
Sorry for the bad english...

Options: ReplyQuote
Re: phpMyAdmin login error
Posted by: eatc7402 (---.hsd1.mn.comcast.net)
Date: April 28, 2010 07:42PM

Well my config.ini.php looks exactly as yours does. And I still get the same error
ans can no longer access phpmyadmin without getting the same error!

eatc7402

Options: ReplyQuote


Sorry, only registered users may post in this forum.