Menü

OSBNForum

Wordpress auf Litespeed Server?

Offtopic - hier kann über alle Themen diskutiert werden, die sonst nirgendwo reinpassen.

Wordpress auf Litespeed Server?

Beitragvon FliegenToeter » So 6. Jul 2014, 13:28

Hey,

hat von euch schon jemand Erfahrung mit dem Hosting von Wordpress auf einem Litespeed Server?

Bei meinen Nachforschungen im Bereich kostenloses Webhosting habe ich ein paar nette Menschen kennen gelernt und diese haben mir angeboten kostenlos auf ihrem Server zu hosten. Es handelt sich um einen Server bei Hetzner in Deutschland mit Litespeed und SSD.

Nach dem Umzug musste ich feststellen, dass mein Caching Plugin leider nicht mehr funktioniert (W3 Total Cache). Habe daraufhin kurzerhand in der htaccess das Browsercaching und die Komprimierung von Dateien eingestellt:
Code: Alles auswählen
# BEGIN gzip Compression if availiable
<IfModule mod_gzip.c>
 mod_gzip_on       Yes
 mod_gzip_dechunk  Yes
 mod_gzip_item_include file      \.(html?|txt|css|js|php|pl)$
 mod_gzip_item_include handler   ^cgi-script$
 mod_gzip_item_include mime      ^text/.*
 mod_gzip_item_include mime      ^application/x-javascript.*
 mod_gzip_item_exclude mime      ^image/.*
 mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>
# END gzip Compression if availiable

# BEGIN Deflate Compress text files
<ifModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript application/x-shockwave-flash
</ifModule>
# END Compress text files

# BEGIN Expire headers
<ifModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 60 seconds"
  ExpiresByType image/x-icon "access plus 2592000 seconds"
  ExpiresByType image/jpeg "access plus 2592000 seconds"
  ExpiresByType image/png "access plus 2592000 seconds"
  ExpiresByType image/gif "access plus 2592000 seconds"
  ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
  ExpiresByType text/css "access plus 604800 seconds"
  ExpiresByType text/javascript "access plus 216000 seconds"
  ExpiresByType application/javascript "access plus 216000 seconds"
  ExpiresByType application/x-javascript "access plus 216000 seconds"
  ExpiresByType text/html "access plus 900 seconds"
  ExpiresByType application/xhtml+xml "access plus 900 seconds"
</ifModule>
# END Expire headers

# BEGIN Cache-Control Headers
<ifModule mod_headers.c>
  <filesMatch "\.(ico|jpe?g|png|gif|swf)$">
    Header set Cache-Control "public"
  </filesMatch>
  <filesMatch "\.(css)$">
    Header set Cache-Control "public"
  </filesMatch>
  <filesMatch "\.(js)$">
    Header set Cache-Control "private"
  </filesMatch>
  <filesMatch "\.(x?html?|php)$">
    Header set Cache-Control "private, must-revalidate"
  </filesMatch>
</ifModule>
# END Cache-Control Headers


Damit komme ich schon auf einen Page Speed von 90.

Habt ihr vielleicht eine Ahnung, wie ich ein Caching Plugin noch zum laufen kriege um einen 95er Page Speed zu erreichen?
Laut den Serverinhabern soll ich alle Bilder vom Server ausgeben und nicht von directupload, weil die nicht cachen. Gibts da ne Möglichkeit, dass auf meiner Seite die Bilder von directupload trotzdem gecached werden? Oder gibt es einen zuverlässigen Bilderhoster ohne Werbung der das anbietet?

Alles in Allem bin ich über alle Tipps dankbar im Bezug auf Wordpress auf Litespeed.
FliegenToeter
 
Beiträge: 3
Registriert: So 9. Mär 2014, 16:43

Zurück zu Plauderecke

Wer ist online?

Mitglieder in diesem Forum: 0 Mitglieder und 2 Gäste

cron