Показать сообщение отдельно
  #1 (permalink)  
Старый 09.04.2018, 14:00
Новичок на форуме
Отправить личное сообщение для adwebzoom Посмотреть профиль Найти все сообщения от adwebzoom
 
Регистрация: 09.04.2018
Сообщений: 7

Ошибка Ajax Error!!! error
Доброго дня!
Сайт на https
Установлен модуль на сайт - слайдер на главной странице.
При сохранении настроек при изменении чего-либо, возникает ошибка Ajax Error!!! error
Соответственно не могу сохранить изменения в слайдере.
Через консоль, описание ошибки такое: Заблокирована загрузка смешанного активного содержимого «http://............ru/modules/csslid...csslider.php»
Смотрю код, но ничего подозрительного не вижу
<?php
/**
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2015 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/

include_once('../../config/config.inc.php');
include_once('../../init.php');
include_once('csslider.php');
$context = Context::getContext();
$csslider = new CsSlider();

if (Tools::getValue('data'))
{
	$layer_obj = Tools::getValue('data');
	$csslider->saveCaptions($layer_obj);
}
if (Tools::getValue('delete') && Tools::getValue('delete') == 1)
{
	$id_caption_del = Tools::getValue('id_caption');
	$csslider->deleteCaptions($id_caption_del);
}
if (Tools::getValue('deleteall') && Tools::getValue('deleteall') == 1)
{
	$id_slide = Tools::getValue('id_slide');
	$csslider->deleteAllCaptions($id_slide);
}
if (Tools::getValue('img_del') && Tools::getValue('img_del') != '')
{
	$img_del = Tools::getValue('img_del');
	$folder = Tools::getValue('folder');
	$csslider->deleteImage($img_del, $folder);
}
if (Tools::getValue('action') == 'updateSlidesPosition' && Tools::getValue('slides'))
{

	$slides = Tools::getValue('slides');

	foreach ($slides as $position => $id_slide)
	{
		$res = Db::getInstance()->execute('
			UPDATE `'._DB_PREFIX_.'csslider` SET `position` = '.(int)$position.'
			WHERE `id_csslider` = '.(int)$id_slide
		);
	}
	$csslider->clearCache();
}
die;


Просмотрел все файлы модуля, для замены http на https, но ничего не нашел.
Также пробовал отключать блокировку в браузере через команду security.mixed_content.block_active_content = False, но не помогло. Все равно при сохранении вылетает ошибка. Как еще можно диагностировать ошибку и её устранение?
Ответить с цитированием