Code: Select all
Uncaught Error: Call to undefined function mysql_connect() in /usr/www/identifier/public/forums/functions/db.php:324
- Download the shim here: https://raw.githubusercontent.com/dshaf ... /mysql.php
- Upload the mysql.php file to your webhosting. Place it in the includes folder for your website, or a directory where typical config files can be found, if available
- Locate a common file that is that is included everywhere in your software. Often this file is called "config.php" or "Settings.php" or similar. Edit that file to add this before other PHP statements:
Code: Select all
include_once('./mysql.php');
- This assumes the shim is in the same directory as the config file. If it's one directory up, you'll use '../mysql.php' and if it's one directory down, you'll use './folder_name/mysql.php'.
- If you do not have a common config file, the line above will need to be included in all files using MySQL.