PHP / SMARTY / SHOPWARE - EINBINDUNG EINES PHP-SCRIPTES

Sehr geehrte Forum-Mitglieder, ich versuche folgende Spript per PHP in Shopware einzubinden. Folgende Versuch habe ich gestartet. FOOTER.TPL ------------------------- {php} {include_php file="/pfad/tsgoogle.php"} {/php} TSGOOGLE.PHP-Datei -------------------------<?php $tsId = “XXXXXXXXXXXXXXXXXXX”;
if ($xml = simplexml_load_file(“https://www.trustedshops.com/bewertung/show_xml.php?tsid=”.$tsId)) {
$result = $xml->ratings->result[1]; $max = “5.00”; $count = $xml->ratings[“amount”];?> Kundenbewertungen von Trusted Shops: =$result;?> / =$max;?> bei =$count;?> Bewertungen<?php }?>------------------------- Leider bekomme ich eine Fehlermeldung und das Template läßt sich garnicht mehr richtig starten. Ich bitte um Hilfe??? mfg

Versuche mal anstatt <?php und ?> auch in der PHP-Datei dies: {php} {/php} So hatte es bei mir funktioniert :slight_smile:

Hallo danke für den Tipp. Geht leider trotz Änderung immer noch nicht. Folgender Fehler wird ausgegeben. Fehler: Fatal error: Uncaught exception ‘SmartyCompilerException’ with message ‘Syntax Error in template “/istspdrj/www.istore24-shop.de/shop/templates/istore24/frontend/index/footer.tpl” on line 4 “{/php}” include_php: file ““www.istore24-shop.de/shop/tsgoogle.php”” is not readable’ in /istspdrj/www.istore24-shop.de/shop/engine/Enlight/Vendor/Smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php:404 Stack trace: #0 /istspdrj/www.istore24-shop.de/shop/engine/Enlight/Vendor/Smarty/libs/sysplugins/smarty_internal_compile_include_php.php(44): Smarty_Internal_TemplateCompilerBase->trigger_template_error(‘include_php: fi…’) #1 /istspdrj/www.istore24-shop.de/shop/engine/Enlight/Vendor/Smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php(252): Smarty_Internal_Compile_Include_Php->compile(Array, Object(Smarty_Internal_SmartyTemplateCompiler), NULL, NULL, NULL) #2 /istspdrj/www.istore24-shop.de/shop/engine/Enlight/Vendor/Smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php(114): Smarty_Internal_TemplateC in /istspdrj/www.istore24-shop.de/shop/engine/Enlight/Vendor/Smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 404 mfg

Lass mal in der footer.tpl das {php} und {/php} weg :slight_smile: und den include so: {include file=‘PFAD’}