Seite 1 von 1
[3.2] verzögerte Icon-Darstellung
Verfasst: 09.03.2017 20:58
von vfrblue
Hallo,
mir ist aufgefallen, dass in unserm Forum (siehe Signatur) seit dem Update auf 3.2 die Icons, besonders in der Nav-Leiste und darüber, verzögert dargestellt werden.
Ist das gegeben, oder kann man das ändern? Mich stört es nur wenig, aber einige User werden mich darauf ansprechen.
Gruß Hermann
Re: [3.2] verzögerte Icon-Darstellung
Verfasst: 12.03.2017 22:23
von Talk19zehn
Hm, das ist mir auf deiner Seite auch aufgefallen. Schwierig zu beurteilen: Schau mal
informationshalber ... u.a.(!)...
viewtopic.php?p=1349580#p1349580
http://www.webpagetest.org/
Evtl. finden sich Lösungsansätze. Mit dem Wechsel "lahmt" manches CSS auf zufällig geladenen phpBB-Seiten,

und stimmt somit auch in meiner Beobachtung überein.
MfG
Re: [3.2] verzögerte Icon-Darstellung
Verfasst: 13.03.2017 00:05
von juliokr
Also bei mir kann ich keine Verzögerung sehen.
Allgemeiner Tipp wenn dein Forum auf 3.2 läuft stelle dein Hosting au php7.0 oder 7.1 um falls Du es noch nicht getan hast !
Bringt im allgemeinen eine ganz gute Geschwindigkeit Erhöhung
Re: [3.2] verzögerte Icon-Darstellung (gelöst)
Verfasst: 13.03.2017 02:19
von vfrblue
Ich habe den Fehler gefunden.
Es war die Option "Nutzung von Drittanbieter-Server zulassen" aktiviert.
@juliokr
Ich hatte beide Foren schon jeweils auf 7.0 und auf 7.1 gesetzt. Da gab es dann aber Fehlermeldungen von einer Extension.
Da ist aber schon was in Arbeit.
Re: [3.2] verzögerte Icon-Darstellung (gelöst)
Verfasst: 13.03.2017 11:12
von vfrblue
Ich habe die .htaccess auch noch ein wenig modifiziert:
Code: Alles auswählen
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/shtml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
</IfModule>
# turns cache on for 1 month
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/html "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 month"
</IfModule>
<ifmodule mod_headers.c>
<filesmatch "\\.(ico|jpe?g|png|gif|swf)$">
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=216000, private"
</filesmatch>
</ifmodule>
und das auch:
Bringt das was?