phpmyadmin

Hi I wanted to use phpmyadmin, i can’t access because i dont user/pass.

Don’t remember if i configured it in the installation process. I’m using a windows server.

Please help.

Take a look in the web server folders, must have this one “conf.php” located in:

/httpdocs/dolibarr/conf/conf.php

In it, if it works as the hosted versión, (I supouse it must), you can open this file and review the Mysql info, about line 13

$dolibarr_main_db_host=‘localhost’;
$dolibarr_main_db_port=‘3306’;
$dolibarr_main_db_name=‘main_db_name’;
$dolibarr_main_db_prefix=‘whatever_’;
$dolibarr_main_db_user=‘main_db_user’;
$dolibarr_main_db_pass=‘main_db_pass’;
$dolibarr_main_db_type=‘mysql’;

Here you have all what you need.

Good Luck