Bonjour,
J'ai une e-boutique sur Prestashop et je souhaiterai pouvoir la mettre à jour cependant j'ai un problème.
En effet, lorsque je souhaite faire la mise à jour, le CMS m'indique:
> "You don't have permission to access /admin/autoupgrade/ajax-upgradetab.php on this server."
Comment puis-faire ?
Merci par avance
Hébergement Cloud Web - [Résolu] Apache : résoudre l'erreur Forbidden You don't have permission to access / on
Related questions
- Modification des variables php.ini
50921
23.01.2019 16:32
- Lancement App front React
40339
26.04.2019 12:54
- FTP and SFTP time out
40171
14.01.2018 08:55
- Accès à la configuration du serveur apache ?
36454
23.10.2017 12:25
- Connexion SSH ?
33257
14.10.2017 09:53
- Retours sur Cloud Web
31914
10.10.2017 15:02
- Transferts FTP/SFTP
30573
21.10.2017 13:00
- Activer Memcached PECL
29880
17.12.2018 13:07
- 504 Gateway Timeout depuis bientôt 24h
27387
24.04.2019 11:19
- Drupal 8 - Composer - lack of memory
25241
19.10.2017 19:33
problème .htaccess?
le renommer temporairement pour vérifier
firewall applicatif activé?
vérifier dans le ou les `.ovhconfig` à la racine de l’hébergement `/` ou dans le sous-répertoire du site `/www` (exemple)
`http.firewall` devrait être à `none`, sinon essayer avec
éventuellement nous indiquer le domaine pour tester
Si je renomme le .htaccess je vais avoir un problème avec les redirections non ?
Par contre je ne trouve aucun fichier du nom .ovhconfig à la racine ou dans le sous-répertoire.
> problème .htaccess?
> le renommer temporairement pour vérifier
En renommant le fichier cela à marcher !
Merci beaucoup
l'idée n'est pas de le supprimer, c'était pour tester.
tu peux nous montrer ici le contenu de `.htaccess` pour voir ce qui peux coincer?
Voici le contenu de mon fichier .htaccess:
~~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
SetEnv HTTP_MOD_REWRITE On
RewriteEngine on
Domain: _monsite.fr_
RewriteRule . - [E=REWRITEBASE:/]
RewriteRule ^api$ api/ [L]
RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L]
Images
RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L]
RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L]
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]
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]
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]
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]
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]
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]
RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L]
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]
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType font/woff2 .woff2
AddType application/x-font-woff .woff
Header set Access-Control-Allow-Origin "*"
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