carly Posted November 21, 2008 Report Share Posted November 21, 2008 hallo kann mir einer sagen wo ich denn google traking code einbinden muss und auf welche seiten???? danke im vorraus carly Link to comment Share on other sites More sharing options...
carly Posted November 23, 2008 Author Report Share Posted November 23, 2008 hallo kann mir damit keiner helfen??????????? Link to comment Share on other sites More sharing options...
MichaelVorarlberg Posted November 23, 2008 Report Share Posted November 23, 2008 verzeichnis "INCLUDES" datei "application_bottom.php" Vor dem: "echo '</body></html>';" Musst du deinen Code einbauen. Diese Datei wird bei jeder Seite angezeigt und somit hast du dein Tracking für Google-Analytics für alle deine Seiten mir nur 1 Änderung. Link to comment Share on other sites More sharing options...
carly Posted November 24, 2008 Author Report Share Posted November 24, 2008 hallo danke fuer die info, habe es getetestet und es geht, danke fuer die info mfg Link to comment Share on other sites More sharing options...
PeterE Posted June 7, 2010 Report Share Posted June 7, 2010 Hallo, brauche mal eure Hilfe. Ich versuche unten angeführten Code in die datei "include/application_bootom.php" einzubauen. (Shopsystem xtc 3.0.4 SP1) Laut Forum muss er vor der Zeile echo '</body></html>'; ?> eingefügt werden. Leider ergibt das die Fehlermeldung: Parse error: parse error, unexpected '<' in /www/632/htdocs/electronic/includes/application_bottom.php on line 41 Was mache ich da falsch? Habe leider keine Lösung im Forum gefunden. "Google tracking code" <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxxx-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> lg Peter Link to comment Share on other sites More sharing options...
Noris Clean Posted June 7, 2010 Report Share Posted June 7, 2010 Kenne mich zwar mit dem 3er Shop nicht aus, aber für mich sieht es einfach nur nach falsch maskieren bzw. unmaskierten Zeichen innerhalb des PHP-Codes aus. Welche Zeile ist denn Nr. 41? Ich tippe einmal diese hier: <script type="text/javascript"> Wenn dem so ist versuche doch einfach einmal den folgenden Code: echo ' <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-16830787-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>'; Somit wird das JavaScript maskiert für PHP ausgegeben. Link to comment Share on other sites More sharing options...
PeterE Posted June 7, 2010 Report Share Posted June 7, 2010 Kenne mich zwar mit dem 3er Shop nicht aus, aber für mich sieht es einfach nur nach falsch maskieren bzw. unmaskierten Zeichen innerhalb des PHP-Codes aus. Welche Zeile ist denn Nr. 41? Ich tippe einmal diese hier: <script type="text/javascript"> Wenn dem so ist versuche doch einfach einmal den folgenden Code: echo ' <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxxxx-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>'; Somit wird das JavaScript maskiert für PHP ausgegeben. Hallo Noris, ich habe deinen Code eingebaut. (als Editor verwende ich PSPad) folgende Fehlermeldung kommt jetzt. Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in /www/632/htdocs/electronic/includes/application_bottom.php on line 45 line 45 =_gaq.push(['_setAccount', 'UA-16830787-1']); Link to comment Share on other sites More sharing options...
Noris Clean Posted June 7, 2010 Report Share Posted June 7, 2010 Ok, sehe schon warum dass nun kommt... Könntest du mir die datei mal schicken, dann bau ichs ein geht einfacher für uns beide [email protected] Link to comment Share on other sites More sharing options...
Noris Clean Posted June 8, 2010 Report Share Posted June 8, 2010 Hallo Peter, wollte nur mal nachfragen ob alles geklappt hat? Viele Grüße Ingo Link to comment Share on other sites More sharing options...
PeterE Posted June 8, 2010 Report Share Posted June 8, 2010 Hallo Peter, wollte nur mal nachfragen ob alles geklappt hat? Viele Grüße Ingo Hallo Ingo, ja mit deiner Lösung funktioniert es. Einfügen des Codes nach echo (Zeile 41) und vor body tag mit deinem angepassten script. Hier noch mal deine Lösung: echo '<script type="text/javascript">'; echo " var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxxxxx-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>"; echo '</body></html>'; ?> Vielen Dank für deine schnelle Hilfe. Peter Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.