Слайдер Owl получает изображения из базы данных. На локальном хосте это работает, но на моем веб-сервере изображения не отображаются, но вы можете щелкнуть отсутствующее изображение и получить информацию о нем. В чем проблема?
Supporters.php:
[img]https://meridentreeofthought.co.uk/2026/img/supporters/"
alt="" class="img-responsive"
id="getSupporter" data-bs-toggle="modal" data-bs-target="#view-modal">
Основной код:
$(document).ready(function () {
jQuery(function () {
jQuery.ajax({
url: "vendor/kln-design/php/supporters.php",
dataType: "html",
success: function (data) {
$("#suppoters_carousel").html(data);
},
error: function (xhr, error) {
alert("error. see console for details");
console.error(error);
},
});
});
});
Подробнее здесь: https://stackoverflow.com/questions/798 ... s-no-image