3
bebosh, Welcome to the XOOPS Forum!
Quote:
choose the database name it says "MySQL" and there are no other choices.
That is the database type selection and it is correct that only MySQL is present.
You may test your database with this dbtest.php, that contains:
mysql_connect("MY SQL SERVER", "USERNAME", "PASSWORD") or die(mysql_error());
echo "Connected to MySQL
";
mysql_select_db("Xoops2") or die(mysql_error());
echo "Connected to Database";
?>
You need to replace MY SQL SERVER by the server, probably localhost and USERNAME and PASSWORD by your values.
The databasename is already set to Xoops2.
What does it say?