Hi
I am running XAMPP 1.7.3 with my Windows XP service pack 3. I've set up my phpmyadmin with username = root and password = Baut19inci. My phpmyadmin database name = timetable.
I set up my config.php to reflect my phpmyadmin timetable settings. When I try access my logon.php through localhost/timetable and type in the timetable default login username = ADMIN and Password = 1234, the screen keeps telling me I am using the "wrong username and password".
When I check my timetable database in phpmyadmin, there is only 1 username and password under userid, which is the default ADNIN & 1234. When I use the timetable software on my website server and phpmyadmin it works fine with the logon credentials, but on XAMPP it refuses to login.
This is the config.php script for my timetable phpmyadmin database for user root@localhost:
<?php
define('DB_NAME', 'timetable');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost:3306');
// define('DB_NAME', 'timetable');
// define('DB_USER', 'root');
// define('DB_PASSWORD', 'Baut19inci');
// define('DB_HOST', 'localhost');
//define('DB_CHARSET', 'utf8');
//define('DB_COLLATE', '');
//define('DEBUG', false);
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
//require_once(ABSPATH . 'settings.php');
?>
Is there anything I have to do to any XAMPP files or is there an issue with the above config.php script?
I am really great-full for any assistance that anyone can provide, as I am a novice on all this.
Kindest Regards
Geoff....


