Jump to content

Edit History

Zohaib-fk

Zohaib-fk

There is an option to check database is connected successfully using the host, username and password details. If it shows a green message then only we can proceed with the installation process. The manually creating database should not be the issue. You can check details using database management tools adminer link => https://www.adminer.org/

 

You can try PHP mySQL connection with below script

 

 <?php
$servername = "localhost";
$username = "username";
$password = "password";

// Create connection
$conn = new mysqli($servername, $username, $password);

// Check connection
if ($conn->connect_error) {
  die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?> 

 

ggrrgergregrere.thumb.png.d8e74dd5fee7f5df4d0c9ed38d1d945d.png

Zohaib-fk

Zohaib-fk

There is an option to check database is connected successfully using the host, username and password details. If it shows a green message then only we can proceed with the installation process. The manually creating database should not be the issue. You can check details using database management tools adminer link => https://www.adminer.org/

×
×
  • Create New...