doucelingerie.com Posted April 10, 2014 Share Posted April 10, 2014 bonjour alors voila j'ai ma boutique qui tourne sous prestashop 1.6 avec un serveur mutualisé 1and1 jusqu'a cette nuit pas de problème. mais cette nuit j'ai activé pour mon nom de domaine (doucelingerie.com) le 1&1 CDN powered by CloudFlare et la catastrophe je me retrouve avec une erreur 500 sur le front office de ma boutique. le back office lui est tjs accésible et j'ai aussi un blog wordpress dans un sous dossier www.doucelingerie.com/blog qui lui fonctionne aussi. je pense donc que le problème ne viens pas du serveur mais de prestashop ( enfin j'en sais rien ) je me dit que peut etres c'est un problème de configuration de mon .htacces mais ce n'est qu'un hypothèse. j'avou que je suis perdu que je ne sais pas comment faire. merci de votre aide mon .htacces # ~~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 RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^blog.doucelingerie.com$ [OR] RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] 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} ^blog.doucelingerie.com$ [OR] RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^blog.doucelingerie.com$ [OR] RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox 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 RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> AddType application/vnd.ms-fontobject .eot AddType font/ttf .ttf AddType font/otf .otf AddType application/x-font-woff .woff <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" ExpiresByType image/svg+xml "access plus 1 year" ExpiresByType image/vnd.microsoft.icon "access plus 1 year" ExpiresByType application/font-woff "access plus 1 year" ExpiresByType application/x-font-woff "access plus 1 year" ExpiresByType application/vnd.ms-fontobject "access plus 1 year" ExpiresByType font/opentype "access plus 1 year" ExpiresByType font/ttf "access plus 1 year" ExpiresByType font/otf "access plus 1 year" ExpiresByType application/x-font-ttf "access plus 1 year" ExpiresByType application/x-font-otf "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 Link to comment Share on other sites More sharing options...
doucelingerie.com Posted April 10, 2014 Author Share Posted April 10, 2014 vraiment personne pour m'aider désolé d'insister mais la je galére grave Link to comment Share on other sites More sharing options...
vetementmodetendance Posted April 12, 2014 Share Posted April 12, 2014 Bonsoir, j'ai aussi une erreur 500, je viens tout juste d'installer prestashop sur un serveur mutualisé Ikoula. Le support dit que c'est parce que j'ai pas pris un serveur Linux mais Windows. Comment avez-vous résolue le problème svp ? Link to comment Share on other sites More sharing options...
Nightbutterfly Posted February 10, 2015 Share Posted February 10, 2015 Le post date je sais mais si ca peut aider quelqu'un Je suis sous Linux et le CDN 1and1 fait beuguer mon site J'ai pourtant un hébergement 1&1 Serveur 2012 L 2 Core Donc un conseil, n'activez pas le CDN sur votre boutique Prestashop Cordialement / Christophe Link to comment Share on other sites More sharing options...
Eolia Posted February 10, 2015 Share Posted February 10, 2015 Un conseil, n'allez pas chez 1&1 pour héberger un site e-commerce. Erreur à répétition, changement de version php sans prévenir personne, quotas et limitations, service client...aux abonnés absents, etc.... Link to comment Share on other sites More sharing options...
Moi c Seb Posted February 10, 2015 Share Posted February 10, 2015 J'ai eu des erreurs 500 et aussi plus de css sur le BO j'ai modifié les paramètres du CDN et tout a refonctionné normalement. Exemple de paramètre qui fonctionne pour moi. Paramètres généraux Mode Développement: ARRÊT IPv6: MARCHE SPDY*: MARCHE Toujours en ligne™: MARCHE SSL*: ARRÊT ------------------------------------------------------------ Paramètres Performance Profil Performance: Expert Niveau de cache: Maximum TTL minimum: 4 heures Auto Minify: Rocket Loader™ (Chargement asynchrone JavaScript): ARRÊT Mirage™ (chargement d'images intelligent): ARRÊT Polish™ (compression d'image)*: ARRÊT Railgun™ (chargement rapide de contenu dynamique)**: MARCHE ------------------------------------------------------------ Paramètres Sécurité Profil Sécurité: Moyen Niveau de sécurité de base: Moyen TTL session: 1 heure Protection de l'adresse email: ARRÊT Server Side Excludes (SSE): MARCHE Contrôle de l'intégrité du navigateur: ARRÊT Protection des hotlinks: ARRÊT 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