Servus an alle,
ich möchte gerne ein Backup einer alten 1.9 Installation machen. Ich konnte keinen Produkt Export machen weil beim Profilexport der Arbeitsspeicher ausgelastet ist und beim normalen Export bekomme ich eine Fehlermeldung. Ich erachte das System also nicht als sehr stabil.
Ich möchte lokal debuggen, live traue ich mich nicht.
Das Datenbank Backup hat über Sicherungen im Backend hat geklappt, aber ich wage kein Backup des Dateisystems und der Bilder zu machen, da ich fürchte es könnte crashen.
Was ist der sicherste Weg um ein lokales Backup von dieser Magento Installation zu machen?
Der Provider bietet eine Zip Export Möglichkeit über ein PHP Script an, das klingt vielversprechend oder?
Hättet ihr einen Tipp für mich.
Liebe Grüße
If you have shell access to your server then you can compress the files using the command line. In this case you can also connect to MySQL using command line and export the database.
To compress a directory run following command
tar -zcvf archive-name.tar.gz directory-name
To export database to dump file, connect to MySQL using the
mysqldump -h <host> -u <username> -p <database> > dumpfile.sql
Operations using command line are fast and you do not get timeout errors.
Dankeschön