Доброго времени суток. При попытке отправить AJAX запрос в консоли ошибка: jquery-2.1.4.min.js:4 Mixed Content: The page at '
https://*****.com/cargo/calc-temp/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint '
http://****.com/cargo/handler.php'. This request has been blocked; the content must be served over HTTPS.
На локальной компьютере проблем нет.
Запрос:
$.ajax({
type: "POST",
url: "handler.php",
data: form_data,
success: function(response) {
},
error: function(response) {
alert('Error');
}
});
Пробовал менять url на относительный, полный, с http, https - ничего не помогло.