Forum

Rules📌

Help keep our community respectful and collaborative by following these rules:

  • No Unsolicited Payment Requests:Do not ask for money or paid services unless the person seeking help requests it.
  • Keep Discussions Public:Questions and answers should stay in the forum unless the original poster requests a private conversation.
  • Post in Correct Categories:Place each post in its specific category to help keep the forum organized and accessible.
  • No Spam or Self-Promotion: Advertising unrelated products, services, or self-promotion without consent is not allowed.
  • Respectful Communication: Engage with others respectfully and avoid offensive or disruptive behavior.

Violating these rules may result in warnings or bans.

Read more here

Create connect.php

Create a file named connect.php and paste this code inside

<?php
// Include the WoWonder config file to use its database settings
include('config.php');

// Create a connection using the credentials from config.php
$sqlConnect = new mysqli($sql_db_host, $sql_db_user, $sql_db_pass, $sql_db_name);

// Check connection
if ($sqlConnect->connect_error) {
die("Connection failed: " . $sqlConnect->connect_error);
}

// Set character encoding to UTF-8 for consistency with WoWonder
$sqlConnect->set_charset("utf8");
?>


Place it in your wowonder root

Reply to this topic Share on my timeline

0 Replies

No replies to show