ДОБРОГО ВРЕМЕНИ СУТОК УВАЖАЕМЫЕ ЗНАТОКИ =) в журнале показывают такие ошибки
2015-01-20 17:39:51 - PHP Notice: Undefined index: in /сайт/catalog/controller/common/seo_pro.php on line 53
2015-01-20 17:39:51 - PHP Warning: Cannot modify header information - headers already sent by (output started at /сайт/index.php:108) in /сайт/catalog/controller/common/seo_pro.php on line 82
2015-01-20 17:39:51 - PHP Warning: Cannot modify header information - headers already sent by (output started at /сайт/index.php:108) in /сайт/vqmod/vqcache/vq2-system_engine_controller.php on line 28
2015-01-20 17:39:51 - PHP Warning: Cannot modify header information - headers already sent by (output started at /сайт/index.php:108) in /сайт/vqmod/vqcache/vq2-system_engine_controller.php on line 29
2015-01-21 20:51:01 - PHP Warning: unlink(/сайт/system/cache/cache.seo_pro.1421866261): No such file or directory in /сайт/system/library/cache.php on line 45
2015-01-21 22:53:02 - PHP Warning: file_get_contents(сайт/system/cache/cache.seo_pro.1421869922): failed to open stream: No such file or directory in /сайт/system/library/cache.php on line 9
2015-01-23 18:26:02 - PHP Notice: unserialize(): Error at offset 8179 of 8192 bytes in /сайт/system/library/cache.php on line 11
Когда в настройках в разделе "сервер" тип ЧПУ оставляю по умолчанию, то никаких ошибок, стоит выбрать тип ЧПУ Seo_Pro, то раз в сутки примерно появляются эти ошибки.
__________
РЕШЕНИЕ:
в файле /catalog/controller/common/seo_pro.php
перед 53 строкой укажите
if(!isset($queries[$part])) continue;
это будет так
reset($parts);
foreach ($parts as $part) {
if(!isset($queries[$part])) continue;
$url = explode('=', $queries[$part], 2);
if ($url[0] == 'category_id') {
и ошибка пропадает. Спасибо говорим пользователю freelancer
Без него все еще мучился бы с этой ошибкой, спасибо ему еще раз :-)