Hi all, I just installed you roster it's great!! I love it, very good work
Just a problem that I resolved and I hope i can help other people experiencing the same with php 4.3.11 and MySQL 4.1.19.
After installation and upload of conf.php file I had this error:
Setting.php:line[102]
Couldn't connect to the database
MySQL said:
1045:access denied for user "username'@'localhost' to database 'dbname'
I resolved editing the generated conf.php file replacing the ' " ' with ' ' ' as follows:
$db_host = 'localhost';
$db_name = 'dbname';
$db_user = 'username';
$db_passwd = 'dbpass';
$db_prefix = 'roster_';
I hope it helps