i'm getting error in browser console log, both chrome , firefox
get doaminipaddress.port/n/d85639d2ff510307eedab9f654a0d8a4.js?q=y52w3gixhd…886&url=http%3a%2f%2domain.net%2fassets%2fscripts%2fjquery.min.js 406 (not acceptable)
but jquery right there in folder rest of js files
if open jquery directly in browser, opens correctly.
i've tried
- changed path absolute
- renamed script folder
- checked tags closed
- header section checked incase if want look
header section
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <link href='http://fonts.googleapis.com/css?family=roboto:500,900,300,700,400' rel='stylesheet' type='text/css'> <link href="./assets/style/bootstrap.css" rel="stylesheet" type="text/css" /> <link href="./assets/style/style.css" rel="stylesheet" type="text/css" /> <link href="./assets/style/responsive.css" rel="stylesheet" type="text/css" /> <link href="./assets/style/animate.css" rel="stylesheet" type="text/css" /> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" /> <link href="./assets/style/custom.css" rel="stylesheet" type="text/css" /> <!-- html5 shim , respond.js ie8 support of html5 elements , media queries --> <!-- warning: respond.js doesnt work if view page via file:// --> <!--[if lt ie 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head>
i checked same error related question on either have problem while using framework or ajax i'm not using framework , weird behavior sometime loads correctly , i'm totally lost why gives error , next refresh attempt, jquery load correctly.
"406 not acceptable" means server can't deliver whatever content type specified in accept header in request. content type browser asking for?
Comments
Post a Comment