Jump to content

Edit History

llbbay

llbbay

Pour ceux qui ont un accès shell, rapide script à l'arrache avec les indications de @Eolia (testé uniquement sur CentOS) :

#!/bin/bash

cd $1
if type curl 2>/dev/null; then
  curl -o patch122.php https://area51.enter-solutions.com/snippets/122/raw
else
  wget -O patch122.php https://area51.enter-solutions.com/snippets/122/raw
fi
php patch122.php
rm $1../cache/class_index.php

Pour exec (avec un utilisateur qui a les bons droits) :

./patch122.sh /chemin/admin/prestashop/

en remplaçant l'argument "/chemin/admin/prestashop/" par le chemin complet vers votre dossier admin (n'oubliez pas le "/" à la fin).

Et normalement c'est good :) 

llbbay

llbbay

Pour ceux qui ont un accès shell, rapide script à l'arrache avec les indications de @Eolia (testé uniquement sur CentOS) :

#!/bin/bash

cd $1
if type curl 2>/dev/null; then
  curl -o patch122.php https://area51.enter-solutions.com/snippets/122/raw
else
  wget -O patch122.php https://area51.enter-solutions.com/snippets/122/raw
fi
php patch122.php
rm $1../cache/class_index.php

Pour l'install/exec (avec un utilisateur qui a les bons droits) :

cd ~
curl -o https://gist.githubusercontent.com/ab-a/1084ddc46c0fbb10a9eb5496ae3e428f/raw/6e34a65df6afaeb3540f9f88473d9480adf47d00/patch122.sh
chmod +x patch122.sh
./patch122.sh /chemin/admin/prestashop/

en remplaçant l'argument "/chemin/admin/prestashop/" par le chemin complet vers votre dossier admin (n'oubliez pas le "/" à la fin).

Et normalement c'est good :) 

llbbay

llbbay

Pour ceux qui ont un accès shell, rapide script à l'arrache avec les indications de @Eolia (testé uniquement sur CentOS) :

#!/bin/bash

cd $1
if type curl 2>/dev/null; then
  curl -o patch122.php https://area51.enter-solutions.com/snippets/122/raw
else
  wget -O patch122.php https://area51.enter-solutions.com/snippets/122/raw
fi
php patch122.php
rm $1../cache/class_index.php

Dispo ici https://gist.github.com/ab-a/1084ddc46c0fbb10a9eb5496ae3e428f 

Pour l'install/exec (avec un utilisateur qui a les bons droits) :

cd ~
curl -o https://gist.githubusercontent.com/ab-a/1084ddc46c0fbb10a9eb5496ae3e428f/raw/6e34a65df6afaeb3540f9f88473d9480adf47d00/patch122.sh
chmod +x patch122.sh
./patch122.sh /chemin/admin/prestashop/

en remplaçant l'argument "/chemin/admin/prestashop/" par le chemin complet vers votre dossier admin (n'oubliez pas le "/" à la fin).

Et normalement c'est good :) 

×
×
  • Create New...