Copy site from Angelia to Dev55

From GLMWiki
Jump to: navigation, search

Checklist

  • Create a site on dev55
    • Setup nginx directives for wordpress in website options tab
    • No backups
    • No stats
  • Adjust the permissions for the web directory (do this first and after you copy the files over)
    • chmod g+rws web
    • chmod -R g+rw web
    • find . -type d -perm /g=x ! -perm /g=s -exec sudo chmod g+s '{}' \;
  • Copy the files from angelia to dev55
    • (on dev55) rsync -av angelia:(path to site)/ (path to new site web)
    • adjust permissions on files again
  • Get copy of the database (creds are in wp-config.php)
    • mysqldump -u [username] -p[password] [database_name] > [database_name].sql
  • Create database on dev55 (if it doesn't exists)
    • using ispconfig create user, using the client of Gaslight
      • When adding the user don't put the c2 part of the user name in (auto prefix)
    • using ispconfig create database assigning it to the website
      • When adding the database don't put the c2 part of the database (auto prefix)
  • Restore the database from your file
    • Edit the file and replace the url
      • in vim
        •  :%s/www.sitename.com/sitename.gaslightmedia.com/g
    • mysql -u [username] -p[password] [database_name] < [database_name].sql