Este error aparece en Prestashop en la version 1.4.0.17
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in webservice/dispatcher.php on line 67
unexpected T_PAAMAYIM_NEKUDOTAYIM se refiere a ‘double semicolon’ dospuntos doble «::»
La linea completa en cuestión es esta :
[shell]$result = $class_name::getInstance()->fetch($key, $method, $_GET[‘url’], $params, $bad_class_name, $input_xml);[/shell]
y debe sustituirse los «::» por «->» de esta forma
[shell]$result = $class_name->getInstance()->fetch($key, $method, $_GET[‘url’], $params, $bad_class_name, $input_xml);[/shell]
Deja una respuesta