View Single Post
  #4  
Old 27th March 2020, 20:00
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Thumbs up
Quote:
Originally Posted by Ecko View Post
i get this error after editing config.php (MySQL support not available.)



Are you using MYSQLI ? and PHP7 ?


If so backend/functions.php

Find
Code:
function_exists("mysql_connect") or die("MySQL support not available.");
Replace with
Code:
function_exists("mysqli_connect") or die("mysql support not available.");
Reply With Quote