Guest User

Untitled

a guest
Feb 10th, 2018
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. composer install && composer update -vv &&
  2. find var vendor pub/static pub/media app/etc -type f -exec chmod u+w {} ;
  3. find var vendor pub/static pub/media app/etc -type d -exec chmod u+w {} ;
  4. chmod u+x bin/magento
  5.  
  6. find . -type d -exec chmod 755 {} ; && find . -type f -exec chmod 755 {} ;
  7. chmod u+x bin/magento
  8.  
  9. php bin/magento setup:install
  10. --base-url="http://example.co.uk/"
  11. --db-host="localhost"
  12. --db-name="databasename"
  13. --db-user="databaseuser"
  14. --db-password="databasepass"
  15. --admin-firstname="Yourname"
  16. --admin-lastname="Yourname"
  17. --admin-email="hello@example.co.uk"
  18. --admin-user="admin"
  19. --admin-password="setpasswordhere"
  20. --language="en_GB"
  21. --currency="GBP"
  22. --timezone="Europe/London"
  23. --use-rewrites="1"
  24. --backend-frontname="admin"
Add Comment
Please, Sign In to add comment