JtL Shop 4 Pagespeed

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
Hallo Leute

Ich habe mir heute mit Pagespeed mal die Ergebnisse angeschaut. Nun ist mir aufgefallen das ich häufig die Meldung (Ablaufdatum nicht festgelegt) für Bilder erhalte. Darunter sind ist unter anderem das Shoplogo ....tern/shoplogo/logo.png ) und etliche Bilder die ich selber eingebunden habe sowie die Artikelbilder der Startseite.

Es läuft alles unter Browser-Caching nutzen!

Gruß
Jo
 

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
AW: JtL Shop 4 Pagespeed

Ich habe jetzt etwas geoogelt und schon in der htaccess nachgeschaut

<IfModule mod_expires.c>
ExpiresActive on
# set default
ExpiresDefault "access plus 24 hours"

# cache common graphics
ExpiresByType image/jpg "access plus 1 months"
ExpiresByType image/gif "access plus 1 months"
ExpiresByType image/jpeg "access plus 1 months"
ExpiresByType image/png "access plus 1 months"
ExpiresByType image/x-icon "access plus 1 months"

# cache CSS
ExpiresByType text/css "access plus 1 months"

# cache other filetypes
ExpiresByType text/javascript "access plus 1 months"
ExpiresByType application/javascript "access plus 1 months"
ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>

ist bei mir vorhanden. Eigentlich sind damit doch alle jpgs etc angegeben oder??? Bei den Fehlern liegen die Bilder sowohl im temmplates Ordner wie auch im mediafiles Ordner
 

martinwolf

Offizieller Servicepartner
SPBanner
6. September 2012
3.431
280
AW: JtL Shop 4 Pagespeed

Setz mal direkt die Cache-Control neu:

Code:
<IfModule mod_headers.c>
   Header unset ETag
   FileETag None
   Header set Connection keep-alive

[COLOR=#ff0000]   <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$">
      Header set Cache-Control "max-age=2592000, public"
   </filesMatch>[/COLOR]
   <filesMatch "\\.(css)$">
      Header set Cache-Control "max-age=604800, public"
   </filesMatch>
   <filesMatch "\\.(js)$">
      Header set Cache-Control "max-age=604800, private"
   </filesMatch>
   <filesMatch "\\.(xml|txt)$">
      Header set Cache-Control "max-age=604800, public, must-revalidate"
   </filesMatch>
   <filesMatch "\\.(html|htm|php)$">
      Header set Cache-Control "max-age=604800, private, must-revalidate"
   </filesMatch>
</IfModule>
 

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
AW: JtL Shop 4 Pagespeed

Setz mal direkt die Cache-Control neu:

Code:
<IfModule mod_headers.c>
   Header unset ETag
   FileETag None
   Header set Connection keep-alive

[COLOR=#ff0000]   <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$">
      Header set Cache-Control "max-age=2592000, public"
   </filesMatch>[/COLOR]
   <filesMatch "\\.(css)$">
      Header set Cache-Control "max-age=604800, public"
   </filesMatch>
   <filesMatch "\\.(js)$">
      Header set Cache-Control "max-age=604800, private"
   </filesMatch>
   <filesMatch "\\.(xml|txt)$">
      Header set Cache-Control "max-age=604800, public, must-revalidate"
   </filesMatch>
   <filesMatch "\\.(html|htm|php)$">
      Header set Cache-Control "max-age=604800, private, must-revalidate"
   </filesMatch>
</IfModule>

Habe jetzt
Code:
<IfModule mod_expires.c>
   ExpiresActive on
   # set default
   ExpiresDefault "access plus 24 hours"

   # cache common graphics
   ExpiresByType image/jpg "access plus 1 months"
   ExpiresByType image/gif "access plus 1 months"
   ExpiresByType image/jpeg "access plus 1 months"
   ExpiresByType image/png "access plus 1 months"
   ExpiresByType image/x-icon "access plus 1 months"

   # cache CSS
   ExpiresByType text/css "access plus 1 months"

   # cache other filetypes
   ExpiresByType text/javascript "access plus 1 months"
   ExpiresByType application/javascript "access plus 1 months"
   ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>


<ifModule mod_headers.c>
   Header unset ETag
   FileETag None
   Header set Connection keep-alive
   
   <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$">
      Header set Cache-Control "max-age=2592000, public"
   </filesMatch>
   <filesMatch "\\.(css)$">
      Header set Cache-Control "max-age=604800, public"
   </filesMatch>
   <filesMatch "\\.(js)$">
      Header set Cache-Control "max-age=604800, private"
   </filesMatch>
   <filesMatch "\\.(xml|txt)$">
      Header set Cache-Control "max-age=216000, public, must-revalidate"
   </filesMatch>
   <filesMatch "\\.(html|htm|php)$">
      Header set Cache-Control "max-age=1, private, must-revalidate"
   </filesMatch>
</ifModule>

drin und keine Veränderung. Weiter sind mediafiles und teamplate Bilder betroffen. Sowie die addthis.js
 

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
AW: JtL Shop 4 Pagespeed

Leider besteht das Problem noch immer. Trotz Cache leeren etc. Ich bekomme die Fehler einfach nicht weg
 

holzpuppe

Sehr aktives Mitglied
14. Oktober 2011
1.709
251
Leipzig
AW: JtL Shop 4 Pagespeed

Theoretisch sollte es mit der Standardeinstellung funktionieren.

Pagspeed spuckt bei mir nur noch die js. von google aus.

Code:
<IfModule mod_expires.c>
   ExpiresActive on
   # set default
   ExpiresDefault "access plus 24 hours"

   # cache common graphics
    ExpiresByType image/jpg "access plus 1 months"
    ExpiresByType image/gif "access plus 1 months"
    ExpiresByType image/jpeg "access plus 1 months"
    ExpiresByType image/png "access plus 1 months"
    ExpiresByType image/x-icon "access plus 1 months"

   # cache CSS
    ExpiresByType text/css "access plus 1 months"

   # cache Fonts
    ExpiresByType application/x-font-ttf "access plus 1 months"
    ExpiresByType application/x-font-opentype "access plus 1 months"
    ExpiresByType application/x-font-woff "access plus 1 months"
    
   # cache other filetypes    
    ExpiresByType text/javascript "access plus 1 months"
    ExpiresByType application/x-javascript "access plus 1 month"
    ExpiresByType application/javascript "access plus 1 months"
    ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>

Ansonsten mal die komplette htaccess posten. Cache leeren nicht vergessen. ;)
 

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
AW: JtL Shop 4 Pagespeed

Theoretisch sollte es mit der Standardeinstellung funktionieren.

Pagspeed spuckt bei mir nur noch die js. von google aus.

Code:
<IfModule mod_expires.c>
   ExpiresActive on
   # set default
   ExpiresDefault "access plus 24 hours"

   # cache common graphics
    ExpiresByType image/jpg "access plus 1 months"
    ExpiresByType image/gif "access plus 1 months"
    ExpiresByType image/jpeg "access plus 1 months"
    ExpiresByType image/png "access plus 1 months"
    ExpiresByType image/x-icon "access plus 1 months"

   # cache CSS
    ExpiresByType text/css "access plus 1 months"

   # cache Fonts
    ExpiresByType application/x-font-ttf "access plus 1 months"
    ExpiresByType application/x-font-opentype "access plus 1 months"
    ExpiresByType application/x-font-woff "access plus 1 months"
    
   # cache other filetypes    
    ExpiresByType text/javascript "access plus 1 months"
    ExpiresByType application/x-javascript "access plus 1 month"
    ExpiresByType application/javascript "access plus 1 months"
    ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>

Ansonsten mal die komplette htaccess posten. Cache leeren nicht vergessen. ;)


hier meine komplette htaccess

Code:
<IfModule mod_expires.c>
   ExpiresActive on
   # set default
   ExpiresDefault "access plus 24 hours"

   # cache common graphics
   ExpiresByType image/jpg "access plus 1 months"
   ExpiresByType image/gif "access plus 1 months"
   ExpiresByType image/jpeg "access plus 1 months"
   ExpiresByType image/png "access plus 1 months"
   ExpiresByType image/x-icon "access plus 1 months"

   # cache CSS
   ExpiresByType text/css "access plus 1 months"

   # cache other filetypes
   ExpiresByType text/javascript "access plus 1 months"
   ExpiresByType application/javascript "access plus 1 months"
   ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>


<ifModule mod_headers.c>
   Header unset ETag
   FileETag None
   Header set Connection keep-alive
   
   <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$">
      Header set Cache-Control "max-age=2592000, public"
   </filesMatch>
   <filesMatch "\\.(css)$">
      Header set Cache-Control "max-age=604800, public"
   </filesMatch>
   <filesMatch "\\.(js)$">
      Header set Cache-Control "max-age=604800, private"
   </filesMatch>
   <filesMatch "\\.(xml|txt)$">
      Header set Cache-Control "max-age=216000, public, must-revalidate"
   </filesMatch>
   <filesMatch "\\.(html|htm|php)$">
      Header set Cache-Control "max-age=1, private, must-revalidate"
   </filesMatch>
</ifModule>

<IfModule mod_rewrite.c>
   RewriteEngine on

   #REWRITE ANPASSUNG 1 (REWRITEBASE)
   #Wenn Ihr Shop in einem Unterverzeichnis (also z.B. meinedomain.de/meinverzeichnis) installiert ist, so kommentieren Sie die kommende Zeile aus und passen Sie den Verzeichnisnamen an
   #RewriteBase /meinverzeichnis

   #REWRITE ANPASSUNG 2 (auf www.meinedomain.de umleiten)
   #Ihr Shop sollte nicht unter www.meinedomain.de und nur meinedomain.de erreichbar sein, siehe: http://wiki.jtl-software.de/index.php?title=JTL-Shop3-Neuinstallation#4._Einrichtung_einer_Domainweiterleitung
   RewriteCond %{HTTP_HOST} ^xxx.de
   RewriteRule ^(.*)$ http://xxx.de/$1 [r=301,L]

   #Regeln fuer das Rewrite der URLs von JTL-Shop4
   #Aendern Sie an diesen Zeilen nichts!
   RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ includes/sitemap.php?datei=$1 [L]
   RewriteRule ^asset/(.*)$ includes/libs/minify/g=$1 [L]
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^. index.php [L]


</IfModule>

Hoffe mir kann jemand helfen ;)
 

holzpuppe

Sehr aktives Mitglied
14. Oktober 2011
1.709
251
Leipzig
AW: JtL Shop 4 Pagespeed

Merkwürdig.

Meine sieht so aus:
Code:
php_value memory_limit 128M
php_value max_execution_time 120
<IfModule mod_deflate.c>
   <FilesMatch "\\.(js|css|html|htm|php|xml)$">
      SetOutputFilter DEFLATE
   </FilesMatch>
</IfModule>

<IfModule mod_expires.c>
   ExpiresActive on
   # set default
   ExpiresDefault "access plus 24 hours"

   # cache common graphics
    ExpiresByType image/jpg "access plus 1 months"
    ExpiresByType image/gif "access plus 1 months"
    ExpiresByType image/jpeg "access plus 1 months"
    ExpiresByType image/png "access plus 1 months"
    ExpiresByType image/x-icon "access plus 1 months"

   # cache CSS
    ExpiresByType text/css "access plus 1 months"

   # cache Fonts
    ExpiresByType application/x-font-ttf "access plus 1 months"
    ExpiresByType application/x-font-opentype "access plus 1 months"
    ExpiresByType application/x-font-woff "access plus 1 months"
    
   # cache other filetypes    
    ExpiresByType text/javascript "access plus 1 months"
    ExpiresByType application/x-javascript "access plus 1 month"
    ExpiresByType application/javascript "access plus 1 months"
    ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>

<IfModule mod_headers.c>
    Header unset ETag
    FileETag None
</IfModule>

<IfModule mod_rewrite.c>
    RewriteEngine on

   #REWRITE ANPASSUNG 1 (REWRITEBASE)
   #Wenn Ihr Shop in einem Unterverzeichnis (also z.B. meinedomain.de/meinverzeichnis) installiert ist, so kommentieren Sie die kommende Zeile aus und passen Sie den Verzeichnisnamen an
   RewriteBase /

   #REWRITE ANPASSUNG 2 (auf www.meinedomain.de umleiten)
   #Ihr Shop sollte nicht unter www.meinedomain.de und nur meinedomain.de erreichbar sein, siehe: http://guide.jtl-software.de/index.php?title=JTL-Shop3-Neuinstallation#4._Einrichtung_einer_Domainweiterleitung
   #RewriteCond %{HTTP_HOST} ^meinedomain.de
   #RewriteRule ^(.*)$ http://www.meinedomain.de/$1 [r=301,L]

   #Regeln fuer das Rewrite der URLs von JTL-Shop4
   #Aendern Sie an diesen Zeilen nichts!
   RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ includes/sitemap.php?datei=$1 [L]
   RewriteRule ^asset/(.*)$ includes/libs/minify/g=$1 [L]
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^. index.php [L]
   
</IfModule>
 

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
AW: JtL Shop 4 Pagespeed

Also auch nach der Umstellung auf den Shop v4-03 1 ist das Problem weiterhin da. htaccess wurde erneuert

<IfModule mod_expires.c>
ExpiresActive on
# set default
ExpiresDefault "access plus 24 hours"

# cache common graphics
ExpiresByType image/jpg "access plus 1 months"
ExpiresByType image/gif "access plus 1 months"
ExpiresByType image/jpeg "access plus 1 months"
ExpiresByType image/png "access plus 1 months"
ExpiresByType image/x-icon "access plus 1 months"

# cache CSS
ExpiresByType text/css "access plus 1 months"

# cache other filetypes
ExpiresByType text/javascript "access plus 1 months"
ExpiresByType application/javascript "access plus 1 months"
ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>


<ifModule mod_headers.c>
Header unset ETag
FileETag None
Header set Connection keep-alive

<filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
<filesMatch "\\.(css)$">
Header set Cache-Control "max-age=604800, public"
</filesMatch>
<filesMatch "\\.(js)$">
Header set Cache-Control "max-age=604800, private"
</filesMatch>
<filesMatch "\\.(xml|txt)$">
Header set Cache-Control "max-age=216000, public, must-revalidate"
</filesMatch>
<filesMatch "\\.(html|htm|php)$">
Header set Cache-Control "max-age=1, private, must-revalidate"
</filesMatch>
</ifModule>

<IfModule mod_rewrite.c>
RewriteEngine on

#REWRITE ANPASSUNG 1 (REWRITEBASE)
#Wenn Ihr Shop in einem Unterverzeichnis (also z.B. meinedomain.de/meinverzeichnis) installiert ist, so kommentieren Sie die kommende Zeile aus und passen Sie den Verzeichnisnamen an
#RewriteBase /meinverzeichnis

#Regeln fuer das Rewrite der URLs von JTL-Shop4
#Aendern Sie an diesen Zeilen nichts!
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ includes/sitemap.php?datei=$1 [L]
RewriteRule ^asset/(.*)$ includes/libs/minify/g=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^. index.php [L]


</IfModule>
 

F1RT

Gut bekanntes Mitglied
10. Mai 2010
290
15
AW: JtL Shop 4 Pagespeed

nur eine kleine Frage: Kann man das auch für Shop3 nutzen ?
 

holzpuppe

Sehr aktives Mitglied
14. Oktober 2011
1.709
251
Leipzig
AW: JtL Shop 4 Pagespeed

@ag-websolution.de

Es geht doch nicht um die Komprimierung, sondern um ein Ablaufdatum. Also in erster Linie.
 

3jojojo

Sehr aktives Mitglied
20. Januar 2016
780
44
AW: JtL Shop 4 Pagespeed

genau. Wobei bei mir das Problem war das ein Dienst des Servers nicht geladen wurde.
 

mvh

Sehr aktives Mitglied
26. Oktober 2011
748
266
AW: JtL Shop 4 Pagespeed

Also auch nach der Umstellung auf den Shop v4-03 1 ist das Problem weiterhin da. htaccess wurde erneuert

<IfModule mod_expires.c>
ExpiresActive on
# set default
ExpiresDefault "access plus 24 hours"

# cache common graphics
ExpiresByType image/jpg "access plus 1 months"
ExpiresByType image/gif "access plus 1 months"
ExpiresByType image/jpeg "access plus 1 months"
ExpiresByType image/png "access plus 1 months"
ExpiresByType image/x-icon "access plus 1 months"

# cache CSS
ExpiresByType text/css "access plus 1 months"

# cache other filetypes
ExpiresByType text/javascript "access plus 1 months"
ExpiresByType application/javascript "access plus 1 months"
ExpiresByType application/x-shockwave-flash "access plus 1 months"
</IfModule>


<ifModule mod_headers.c>
Header unset ETag
FileETag None
Header set Connection keep-alive

<filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>
<filesMatch "\\.(css)$">
Header set Cache-Control "max-age=604800, public"
</filesMatch>
<filesMatch "\\.(js)$">
Header set Cache-Control "max-age=604800, private"
</filesMatch>
<filesMatch "\\.(xml|txt)$">
Header set Cache-Control "max-age=216000, public, must-revalidate"
</filesMatch>
<filesMatch "\\.(html|htm|php)$">
Header set Cache-Control "max-age=1, private, must-revalidate"
</filesMatch>
</ifModule>

<IfModule mod_rewrite.c>
RewriteEngine on

#REWRITE ANPASSUNG 1 (REWRITEBASE)
#Wenn Ihr Shop in einem Unterverzeichnis (also z.B. meinedomain.de/meinverzeichnis) installiert ist, so kommentieren Sie die kommende Zeile aus und passen Sie den Verzeichnisnamen an
#RewriteBase /meinverzeichnis

#Regeln fuer das Rewrite der URLs von JTL-Shop4
#Aendern Sie an diesen Zeilen nichts!
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ includes/sitemap.php?datei=$1 [L]
RewriteRule ^asset/(.*)$ includes/libs/minify/g=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^. index.php [L]


</IfModule>

Hallo,

kurze Bemerkung zu filesMatch
s. https://httpd.apache.org/docs/current/mod/core.html, suche dort nach FilesMatch

Eigentlich sollte es FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|jpe|woff|svg)$" lauten, ohne Leerzeichen dazwischen.
Die Erklärung bezieht sich auf RegEx -Regeln \\.ico$ = \<Ein Zeichen>ico<Zeilen-Ende>
und \.ico$=.ico<Zeilen-Ende>

Grüße, MVH
 
Ähnliche Themen
Titel Forum Antworten Datum
Neu Sortierung nach Bestand - so wie im JTL Shop 4 JTL-Shop - Ideen, Lob und Kritik 0
Neu Wie kann ich bestimmte Wörter in der Suchfunktion von JTL-Shop ausschließen? Allgemeine Fragen zu JTL-Shop 0
Neu JTL Shop 5.3.x - PHP Fatal Error - PriceRange.php JTL-Shop - Fehler und Bugs 2
Neu Fehlermeldung im JTL Shop 5.2.2 Frontend - Wo zu finden für Debugging? JTL-Shop - Fehler und Bugs 0
Neu Korrekte Darstellung der Differenzbesteuerung im JTL Shop Allgemeine Fragen zu JTL-Shop 2
Neu Google shopping JTL SHOP 4 - "geht" nicht mehr Allgemeine Fragen zu JTL-Shop 1
Neu Workflows Buchhaltung und Steuer inklusive JTL POS, JTL Voucher und JTL Shop Schnittstellen Import / Export 0
Neu Abgleich mit JTL Shop läuft nach zahlreichen erfolgreichen Durchläufen nicht mehr weiter JTL-Shop - Fehler und Bugs 11
Neu JTL Shop Performance - Composer Allgemeine Fragen zu JTL-Shop 1
Neu JTL Hosting - Shop Backup? User helfen Usern - Fragen zu JTL-Wawi 0
Neu JTL Shop 5 Fehler beim Abglich JTL-Shop - Fehler und Bugs 9
Neu JTL SHOP 5 - Email Anfragen Zwichenspeicher / Log Allgemeine Fragen zu JTL-Shop 3
Artikelverkauf über JTL-Shop mit Bestand 0 in der JTL WaWi JTL-Wawi 1.9 13
Neu Klarna Bestellungen wird vom JTL shop 5 nicht abgeschlossen JTL-Shop - Fehler und Bugs 2
Neu Bestehenden JTL-Shop übernehmen Onlineshop-Anbindung 7
Neu JTL Shop SSH Zugang und Hostingpanel User helfen Usern - Fragen zu JTL-Wawi 2
JTL Shop 5 Hosting auf einem IONOS Server - Performance Allgemeine Fragen zu JTL-Shop 13
Neu cKundenNr im JTL Shop nicht gesetzt. Auch kKundengruppe. Wie Rückkanal zum Shop aktualisieren? JTL-Wawi - Fehler und Bugs 3
Neu CIN Farbkonfigurator Plugin JTL-Shop 5 Plugins für JTL-Shop 0
Neu Zonen in Bannerverwaltung verschieben sich [JTL Shop 5.2.2] Betrieb / Pflege von JTL-Shop 0
Neu Versandkosten staffeln in JTL Shop 5 Gelöste Themen in diesem Bereich 6
Neu Schon ab JTL Starter parallel zu einem JTL CFE Shop: Gambio-Shop mit Connector 3.1.0 Gambio-Connector 0
Neu JTL Shop 5.3 - 20 GB reichen nicht aus Allgemeine Fragen zu JTL-Shop 3
Neu Domain für JTL Shop bei externem Hoster Allgemeine Fragen zu JTL-Shop 3
Neu JTL Shop 5.2.3 lädt Consent Manager Symbol in einem unendlichen Loop (Flimmern) JTL-Shop - Fehler und Bugs 1
Neu JTL Shop 5 - Unsichtbare Kategorie Allgemeine Fragen zu JTL-Shop 3
Neu Update auf JTL Shop 4.05 Build 9 auf Community Free Edition JTL-Shop - Fehler und Bugs 1
Gelöst Schwerwiegender JTL-Vouchers Fehler in Ihrem Shop JTL-Vouchers - Fehler und Bugs 3
Neu Hackerangriff auf JTL Shop Allgemeine Fragen zu JTL-Shop 17
Neu Eigene Felder in Neuregistrierungs-Email an Kunden ausgeben JTL-Shop 5.2.4 Allgemeine Fragen zu JTL-Shop 0
Kategorien Abgleich mit dem JTL Shop JTL-Wawi 1.9 4
Neu AWIN Produktdatenfeed aus dem JTL Shop Allgemeine Fragen zu JTL-Shop 3
Wichtig 👉 Sicherheitslücke in JTL-Shop 5 bis 5.3.2 (betr. alle Versionen des Shopsystems) News, Events und Umfragen 17
Neu Logo Größe Verändern - JTL Shop 5.3.0 Gelöste Themen in diesem Bereich 7
Neu JTL Shop zeigt die Bilder nicht mehr an JTL-Shop - Fehler und Bugs 4
JTL WAWI 1.9 Auftrag (englisch) aus JTL Shop 5 - Diverse Variablen nur in deutsch JTL-Wawi 1.9 0
Neu Umsatz Unterschiede zwischen JTL Shop und Google Analytics Allgemeine Fragen zu JTL-Shop 0
Neu Partner für JTL Shop WAWI und MS SQL Server gesucht Dienstleistung, Jobs und Ähnliches 2
Neu Hoster Empfehlung für JTL Shop gesucht Allgemeine Fragen zu JTL-Shop 9
Neu PayRexx jetzt mit eigenem Plugin für den JTL-Shop Plugins für JTL-Shop 23
Neu Anfrage bezüglich Popup-Plugin für JTL-Shop Plugins für JTL-Shop 1
Neu Nach Installation von JTL-Shop 5.3.2 kein Zugriff auf Backend und Shop Installation / Updates von JTL-Shop 8
Neu Auswahl der Artikel in Box "Kauftipp" auf der Startseite – JTL Shop 5 Allgemeine Fragen zu JTL-Shop 1
Neu Läuft der JTL-Shop 4 mit der PHP Version 8.2.20 ??? Einrichtung von JTL-Shop4 2
Neu JTL Shop Konfigurator - Artikelgewichte addieren Allgemeine Fragen zu JTL-Shop 0
Neu JTL-Shop 5 nach Installation nur weiße Seiten bei Kategorien. Andere Seiten werden angezeigt Gelöste Themen in diesem Bereich 3
Neu Wichtige Statistiken im JTL Shop auswerten, wie? Allgemeine Fragen zu JTL-Shop 2
Neu Dropshipping automatisieren. Mein Shop und Lieferant nutzen JTL WAWI Arbeitsabläufe in JTL-Wawi 1
Neu Merkmale Filter JTL Shop 5 benutzerdefiniert anzeigen Allgemeine Fragen zu JTL-Shop 0
JTL-Shop Upselling & Stripe-Anbindung Einrichtung JTL-Shop5 2

Ähnliche Themen