JtL Shop 4 Pagespeed

3jojojo

Sehr aktives Mitglied
20. Januar 2016
783
45
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
783
45
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.629
325
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
783
45
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
783
45
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.713
253
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
783
45
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.713
253
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
783
45
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.713
253
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
783
45
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
1.015
371
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 JTL-Shop 5.2.3 – Google-Shoppin-Plugin 2.3.0: Mehrere Rückgaberichtlinien (DE + Ausland) bei einem Feed / return_policy_label Plugins für JTL-Shop 0
Neu JTL SHOP 5.6 und Konfigurationsartikel Allgemeine Fragen zu JTL-Shop 0
Neu Neues E-Commerce Business mit JTL Wawi - Jtl Shop - Lexware Office (online) - Fragen Starten mit JTL: Projektabwicklung & Migration 2
Neu Bestellung aus JTL-Shop wird nicht in die Wawi übernommen Allgemeine Fragen zu JTL-Shop 1
Neu Nach Update auf JTL Shop 5.6.1 - Play/Pause Buttons im Layout!? Installation / Updates von JTL-Shop 6
Neu JTL Shop Mailversand geht nicht mehr - Address blicked Allgemeine Fragen zu JTL-Shop 5
Neu JTL-Shop: Veraltete URLs & Weiterleitungen in der Sitemap – wie lösen? Allgemeine Fragen zu JTL-Shop 0
Neu Coupon-Steuer Plugin: Korrekte Steuerberechnung für JTL-Shop Coupons Plugins für JTL-Shop 1
Neu 20.11.2025 Hosting JTL Shop Tod :+( Allgemeine Fragen zu JTL-Shop 15
Neu How to properly update order status through JTL Shop plugin? Allgemeine Fragen zu JTL-Shop 4
Neu Hohe CPU-last auf Shopserver - JTL Shop Query? Allgemeine Fragen zu JTL-Shop 9
Neu Dokumentation: Kundenverknüpfung JTL-Wawi (Version 1.10.15.0) zu JTL-Shop JTL-Shop 5.2 Onlineshop-Anbindung 0
Neu Preisfehler Anzeige JTL Shop 5 JTL-Shop - Fehler und Bugs 1
Neu 🚀 Pilotkunden gesucht: HS Dynamic Pricing Plugin für JTL-Shop Plugins für JTL-Shop 0
Neu Probleme bei WooCommerce JTL-Connector, keine Aktivierung möglich, Bestands-Shop lahmgelegt Onlineshop-Anbindung 0
Neu 🚀 JTL Shop Performance Check (Free): Kostenloses Plugin Plugins für JTL-Shop 0
Neu Downgrade von 3 JTL-Shop-Lizenzen auf 1 – Frage zur Umstellung der Domains User helfen Usern - Fragen zu JTL-Wawi 1
Neu JTL SHop 5.4 KAtegoriebild Allgemeine Fragen zu JTL-Shop 5
Neu Welcher Hoster ist für JTL-Shop 5 empfehlenswert? User helfen Usern 12
Neu Aktuellen JTL Shop installieren *Fehler* Installation / Updates von JTL-Shop 0
Neu JTL Shop Versand Preisstaffel mit negativen Werten?? Allgemeine Fragen zu JTL-Shop 0
Neu JTL Shop - OSS - Länderauswahl notwendig ?! JTL-Shop - Ideen, Lob und Kritik 1
Neu JTL Shop Brevo Plugin meldet keine Abmeldungen an JTL Shop + Kontakte landen nicht in der Willkommenssequenz Plugins für JTL-Shop 0
Neu Suche Freelancer für Aufsetzen JTL B2B Shop Dienstleistung, Jobs und Ähnliches 3
Neu JTL-Shop Admin Bereich und Shop nur noch 504 Gateway Time-out ( Hosting über JTL ) User helfen Usern - Fragen zu JTL-Wawi 4
Neu JTL-Shop 5.5.2 – Fehlerhafter Canonical-Tag im Blog-Template verhindert Indexierung durch Google JTL-Shop - Fehler und Bugs 2
Neu JTL Shop Update von 5.3.3 auf 5.6 mit der Community Free Edition - WaWi funktion weiter gegeben? User helfen Usern - Fragen zu JTL-Wawi 1
Neu JTL Shop - Rabatt pro Kunde möglich ? Allgemeine Fragen zu JTL-Shop 8
Neu JTL-Shop TECHNIK (SalePix) – Problem mit Render Blocking Requests User helfen Usern - Fragen zu JTL-Wawi 2
Neu Kategorierabatte pro Kunde im JTL-Shop Einrichtung von JTL-Shop4 2
Neu Tailwind als Basis für JTL Shop 6 ? Templates für JTL-Shop 2
Neu Gewinnbasierte Provision & gezielte Kunden-Zuordnung im JTL Shop / Wawi User helfen Usern 0
Neu Wie kommen die Versandarten aus JTL-Wawi in den JTL-Shop? Betrieb / Pflege von JTL-Shop 7
Neu JTL Shop - Umwandlung Domain von Test auf Live Allgemeine Fragen zu JTL-Shop 1
Neu Neues Plugin: JTL Closed Shop – Zugangsbeschränkung, Pre-Sale & Wartungsmodus für deinen JTL-Shop Plugins für JTL-Shop 2
Neu JTL-Shop 5.6 - Aktuell 5.6.1 Releaseforum 1
Neu Download-Artikel mit dem Download-Modul anbieten JTL SHOP Plugins für JTL-Shop 6
Neu Die folgenden Dateien sind nicht identisch mit den Dateien der aktuellen Version von JTL-Shop. Allgemeine Fragen zu JTL-Shop 0
Neu Auswahl im JTL Shop - keine Rechnung beilegen - wie in Wawi einlesen ? User helfen Usern - Fragen zu JTL-Wawi 6
Neu PromoBar-Portlet für JTL-Shop 5 – Aktionsleiste, Gutschein & Countdown Plugins für JTL-Shop 1
Neu JTL-Shop-Template Technik – optimiert für Performance & Conversion Templates für JTL-Shop 11
Neu GA4-Tracking für JTL-Shop 5 – sauberes E-Commerce & Kategoriepfade Plugins für JTL-Shop 1
Neu Artikelseiten 500 HTTP Fehler PayPal Plugin 2.1.0 JTL Shop 5.4.0 Plugins für JTL-Shop 4
Neu Auftragsbezogene Pickliste auch im JTL-WMS (nicht nur mobil) nutzen JTL-WMS / JTL-Packtisch+ - Ideen, Lob und Kritik 0
Seit dem Update auf JTL Wawi 1.11.4 funktioniert der Workflow "Datei Schreiben" nicht JTL-Wawi 1.11 1
JTL Wawi 1.11.4 "Dashboard übernehmen" funktioniert nicht JTL-Wawi 1.11 1
Neu JTL Pos - Bon - Artikelname kürzen Allgemeine Fragen zu JTL-POS 0
JTL-Wawi App (1.11.x) – Lizenz angeblich belegt nach Löschen aller App-Registrierungen / kein Reset möglich JTL-Wawi App 2
Smart App Control blockiert start von JTL-Wawi JTL-Wawi 1.11 0
Manuelle Workflows nicht mehr ausführbar (App 1.11.0 JTL 1.11.5) JTL-Wawi App 4

Ähnliche Themen