Errors on Multisite
-
The plugin does not work on WordPress Multisite (with multiple databases). Specifically the code in ‘menu-pages/manage-appointments.php’ creates a problem:
$conn = mysql_connect(DB_HOST,DB_USER,DB_PASSWORD);
if(!$conn) die(“Failed to connect to database!”);
$status = mysql_select_db(DB_NAME, $conn);
if(!$status) die(“Failed to select database!”);That connection is not usable for fetching appointments (since it will look in the wrong database).
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Errors on Multisite’ is closed to new replies.