Make links for typo3 folders.
Backup database in source:
mysqldump -u {user} -p {databasename} > typo3_db.sql
Copy the file typo3_db.sql to destination.
Build new database in destination:
mysql -u root -p
mysql> grant all privileges on {datenbankname}.* \
to {username}@localhost identified by '{passwort}';
mysql> quit ;
mysql -u {username} -p
mysql> create database {databasename};
mysql> quit ;
mysql -u {username} -p {databaseame} < typo3_db.sql
No comments:
Post a Comment