Martin_Oops Posted February 27, 2014 Share Posted February 27, 2014 Na een overstap van Shopfactory en Logivert stoei ik nu met een prestashop versie 1.5.6.2 Maar hoe krijg ik Gzip draaiend? Zo ziet mn .htaccess er nu uit: Host is trouwens Strato. IK hoop dat er iemand is die me kan helpen ;-) # ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution # http://www.prestashop.com - http://www.prestashop.com/forums <IfModule mod_rewrite.c> <IfModule mod_env.c> SetEnv HTTP_MOD_REWRITE On </IfModule> RewriteEngine on RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^ladyoops.nl$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/gif "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType text/css "access plus 1 week" ExpiresByType text/javascript "access plus 1 week" ExpiresByType application/javascript "access plus 1 week" ExpiresByType application/x-javascript "access plus 1 week" ExpiresByType image/x-icon "access plus 1 year" </IfModule> FileETag INode MTime Size <IfModule mod_deflate.c> <IfModule mod_filter.c> AddOutputFilterByType DEFLATE text/html text/css text/javascript application/javascript application/x-javascript </IfModule> </IfModule> #If rewrite mod isn't enabled ErrorDocument 404 /index.php?controller=404 # ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again # compress text, HTML, JavaScript, CSS, and XML <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> AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript # remove browser bugs BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html Header append Vary User-Agent mod_gzip_on Ja Link to comment Share on other sites More sharing options...
Martin_Oops Posted February 28, 2014 Author Share Posted February 28, 2014 Zo toch tof zijn als er iemand?? reageert Link to comment Share on other sites More sharing options...
schoenmakertje Posted February 28, 2014 Share Posted February 28, 2014 Ik kan je niet helpen, maar het Nederlandse gedeelte van het forum is niet zo actief. Je kan beter het Engelse gebruiken. Ben zelf een oud Shopfactory gebruiker, en ik ben wel te vrede over Prestashop. Welkom Link to comment Share on other sites More sharing options...
Martin_Oops Posted March 17, 2014 Author Share Posted March 17, 2014 Ik kan je niet helpen, maar het Nederlandse gedeelte van het forum is niet zo actief. Je kan beter het Engelse gebruiken. Ben zelf een oud Shopfactory gebruiker, en ik ben wel te vrede over Prestashop. Welkom Opgelost Php.ini aanpassen naar max_input_vars = 4000 zlib.output_compression = On zlib.output_compression_level = 9 Klaar Link to comment Share on other sites More sharing options...
schoenmakertje Posted March 17, 2014 Share Posted March 17, 2014 en wat is het voordeel van gzip?? Link to comment Share on other sites More sharing options...
Martin_Oops Posted March 17, 2014 Author Share Posted March 17, 2014 Nou in mijn geval is de site 73% lichter, dus veel betere laad tijden dan daarvoor, Via http://gtmetrix.com/ zat ik eerst op een laadtijd van ruim 13 sec naar Canada, nu 3.7 sec Link to comment Share on other sites More sharing options...
schoenmakertje Posted March 18, 2014 Share Posted March 18, 2014 Oke, maar dit kan aan meerdere dingen liggen. Geef eens een linkje van je site, ben wel even benieuwd naar hoe een mede oud Shopfactory gebruiker het doet Link to comment Share on other sites More sharing options...
Martin_Oops Posted March 18, 2014 Author Share Posted March 18, 2014 Dat begrijp ik , allereerst alle overbodige modules gedeactiveerd in PS die maken PS ook heel zwaar. Maar shop staat nog in de test dus niet altijd zichtbaar. Testsite is http://www.ladyoops.nl deze komt straks in de plaats van http://www.ladyoops.com Link to comment Share on other sites More sharing options...
schoenmakertje Posted March 18, 2014 Share Posted March 18, 2014 Maar dit is geen Shopfactory site toch?? Of deze moet je drastisch hebben verbouwd! Link to comment Share on other sites More sharing options...
Martin_Oops Posted March 18, 2014 Author Share Posted March 18, 2014 Nee dit is nog Logivert (Com) En NL is nu Prestashop 1.6 Na gedonder met Shopfactory de boel opgezegd en een snelle oplossing toen gevonden bij Logivert, maar is zeker niet optimaal, erger nog dan SF Link to comment Share on other sites More sharing options...
schoenmakertje Posted March 18, 2014 Share Posted March 18, 2014 Logivert heb ik ook nog wel eens mee geëxperimenteerd, was inderdaad waardeloos. Wel te vrede over Prestashop?? Al geupdate naar de nieuwste versie?? Link to comment Share on other sites More sharing options...
Martin_Oops Posted March 18, 2014 Author Share Posted March 18, 2014 Om kort te zijn...... Het ziet er mooi uit voor de klant en backoffice is ook okay,,,Maar......... wat is het verrekte traag Moet er nog een hoop aan sleutelen voordat ik 'm live zet. En jij? Tevreden? Jep, heb 1.6 nu draaien Link to comment Share on other sites More sharing options...
schoenmakertje Posted March 21, 2014 Share Posted March 21, 2014 Jawel hoor ik ben wel tevreden. Maar ik denk dat dat makkelijk is vergeleken met Shopfactory. Site is redelijk snel, maar kan altijd sneller. Daarom toch nog nog even nieuwsgierig naar gzip compressie, is dat om de afbeeldingen kleiner te maken? Heb je een site waar ik wat meer info daar over kan vinden?? Link to comment Share on other sites More sharing options...
schoenmakertje Posted March 21, 2014 Share Posted March 21, 2014 Blijkbaar heeft mijn designer gzip al in geschakeld. Het is te test via de volgende site http://www.whatsmyip.org/http-compression-test/ of het in of uit geschakeld is. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now