Bonjour,
Alors, voici où j'en suis : il faut que je change tous les anciens PATH par le nouveau PATH... Le problème, c'est que mon path était sur le root de www. Comment vais-je identifier l'ancien path ?
voici ce que dit le tutorial :
//shows all files with OLD_PATH element
find . -type f -exec grep -q "OLD_PATH" '{}' \; -print
//Replaces OLD_PATH string in all occurrences in every file to NEW_PATH
find . -type f -print | xargs sed -i -e ’s/OLD_PATH/NEW_PATH/g’
Mon problème c'est donc comment trouver le OLD_PATH
Merci