Page tree

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This How-To shows you, how to update a translate5 installation which is set up as shown in the translate5 Ubuntu installation How-To

Update the file tree

Open the command line.

Change to translate5 directory:

cd /var/www/translate5/

Update translate5 and its submodules and dependencies via git

git pull
git submodule foreach git pull
cd application/modules/editor
git submodule foreach git pull
cd /var/www/translate5/library/ZfExtended
git submodule foreach git pull

Update the database structure

Log into your mysql via command line

mysql 

INSERT INTO Zf_acl_rules (`module`, `role`, `resource`, `right`) values('default', 'noRights', 'database', 'all') ON DUPLICATE KEY UPDATE `module` = 'default', `role` = 'noRights', `resource` = 'database', `right` = 'all';

That's it. You are done. translate5 is up2date (smile)

  • No labels