did you create a user w/ a password on your mysql database?
if not, in your MySQL monitor:
Select your database:
use mysql;
type in this SQL statement:
GRANT ALL ON . TO sebycot@localhost IDENTIFIED BY "password";
Exit your mysql monitor:
exit
then reload the grant tables:
mysqladmin reload
this will be your new username and password:
user = sebycot
pass = password
Let me know if that helps?