I am getting this error ////////////// Fatal error: Uncaught Error: Call to undefined function mysql_escape_string() in /var/www/html/wp-content/themes/twentysixteen/functions.php:60 Stack trace: #0 /var/www/html/wp-settings.php(387): include() #1 /var/www/html/wp-config.php(93): require_once(‘/var/www/html/w…’) #2 /var/www/html/wp-load.php(39): require_once(‘/var/www/html/w…’) #3 /var/www/html/wp-blog-header.php(13): require_once(‘/var/www/html/w…’) #4 /var/www/html/index.php(17): require(‘/var/www/html/w…’) #5 {main} thrown in /var/www/html/wp-content/themes/twentysixteen/functions.php on line 60 /////////////
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
mysql_* commands have been removed in PHP7 and have been depreciated (not recommended for use) since PHP 4.3.0 (Released: 27 December 2002). I am guessing that someone edited this from the default twentysixteen/functions.php file since it does not include a mysql_escape_string() command.
mysqli_real_escape_string() provides a drop in replacement under the mysqli module (installed in package php7.0-mysql) that should help you resolve this. I would also recommend looking for any other mysql_ type calls in your theme to ensure they are updated or removed.
All mysql_* functions were removed in PHP 7, use an updated theme or contact the author.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.