I have a Joomla website configured in my local wamp. I have another server where my database resides. Now I want to connect that database into my local wamp to run my website. I have tried following in configuration.php.
I have applied all the required permission to remote server
public $host = 'xx.xx.xx.xx';
public $db = 'database_name';
public $user = 'username';
public $password = 'password';
I also used wild card (%.%.%.%) on remote database server. But unfortunately I am not able to connect it.
Can anyone help me to sort out this issue?