[Solved] Issues with my login [closed]


Go to your common.php file.

$username = "dbusername"; 
$password = "dbpassword"; 

Change above 2 lines with your host’s username and password.

Most likely:

$username = "root"; 
$password = ""; 

or,

may be you are using your localhost settings on a remote web server. Change below lines with respective details.

$username = "dbusername"; 
$password = "dbpassword"; 
$host = "localhost"; 

1

solved Issues with my login [closed]