This type error because of database connection to server.so check your database connection first.
In Joomla database setting write on `configuration.php` file. so check that file on Joomla root folder.
In that file below match setting for database.
public $dbtype = 'mysqli'; //"mysqli" or "mysql"
public $host = 'localhost'; //server name
public $user = 'root'; //name of database user who access database
public $password = ''; //password of below database user
public $db = 'joomla'; //name of database
public $dbprefix = 'joomla_' //database prefix name
Check below setting according to your server all value enter correct or not.(If you not sure about than you can check using `mysql_connect` function on any demo file).
All user data you enter correctly than change database type `mysqli` to `mysql` because some server not support mysql database.
No comments :
Post a Comment