Thanks Marlov,
Thats a big step in the right direction. The config.inc.php was empty, so I entered the lines that you listed including the db. However, that does not seem to be enough. I get the fllowing on the index page:
Quote:
Probably reason of this is that you did not create configuration file. You might want to use setup script to create one.
Error
MySQL said:
#1045 - Access denied for user 'root' 'localhost' (using password: NO)
|
The top of the setup page looks like this:
Host localhost -- MySQL
extension -- mysql
Authentication type -- config:root
phpMyAdmin advanced features -- disabled
Configuration overview button provides the following results:
Servers (1) -- localhost (config:root) [1]
SQL files upload -- disabled
Exported files on server --disabled
Charset conversion --disabled
Configuration display button yields:
PHP Code:
<?php
*
* Generated configuration file
* Generated by: phpMyAdmin 2.8.1 setup script by Michal Čihař <michal@cihar.com>
* Version: $Id: setup.php,v 1.23.2.8.2.2 2006/05/15 07:57:09 nijel Exp $
* Date: Tue, 06 Jun 2006 15:38:53 GMT
*
* 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]['controluser'] = 'prefix_userb';
$cfg['Servers'][$i]['controlpass'] = 'pwordb';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'pworda';
$cfg['Servers'][$i]['only_db'] = 'resumer_template';
* End of servers configuration *
?>
This output is surprising since it reflects content from prior attempts to create the config file through setup. The controluser and user info should be swapped. What file is producing this output?
I'm a bit over my head here. All help is immensely appreciated.