pbpo Posted November 4, 2013 Share Posted November 4, 2013 (edited) Mam problem ze sliderem banerów na głównej. Tzn sam moduł działa i wszystko fajnie śmiga. Jednak w panelu w modułach wyskakuje mi taki błąd: Próbowałem coś z tym zrobić ale w pliku " /home/supron/public_html/prestashop/classes/Module.php(578) : eval()'d code on line 1 " nie ma '?' PLIK PONIŻEJ // If class already exists, don't include the file if (!class_exists($module, false)) { $filepath = _PS_MODULE_DIR_.$module.'/'.$module.'.php'; $file = trim(file_get_contents(_PS_MODULE_DIR_.$module.'/'.$module.'.php')); if (substr($file, 0, 5) == '<?php') $file = substr($file, 5); if (substr($file, -2) == '?>') $file = substr($file, 0, -2); // if (false) is a trick to not load the class with "eval". // this way require_once will works correctly if (eval('if (false){ '.$file.' }') !== false) require_once( _PS_MODULE_DIR_.$module.'/'.$module.'.php' ); else $errors[] = sprintf(Tools::displayError('%1$s (parse error in %2$s)'), $module, substr($filepath, strlen(_PS_ROOT_DIR_))); } nie wiem jak ten problem rozwiązać Problem rozwiązałem ładując pliki oryginalnego slidera nic innego nie pomagałoWgrałem pliki CSS , JS php i TPL oryginalnego slidera i to pomogło Edited November 4, 2013 by pbpo (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted November 4, 2013 Share Posted November 4, 2013 problem nie jest w pliku o którym mowa w błędzie, otwórz proszę główny plik .php modułu i sprawdź co masz w linii 578 Link to comment Share on other sites More sharing options...
pbpo Posted November 4, 2013 Author Share Posted November 4, 2013 Główny plik php modułu olcjqueryslider ma zaledwie 194 linie kodu Link to comment Share on other sites More sharing options...
vekia Posted November 4, 2013 Share Posted November 4, 2013 EDIT: dopiero zauważyłem, że problem rozwiązany Link to comment Share on other sites More sharing options...
Recommended Posts