Last active
February 16, 2017 16:33
-
-
Save ptcmariano/624c848715472b7a18850ddff4d615bd to your computer and use it in GitHub Desktop.
to remember how install wp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://wordpress.org/latest.tar.gz | |
tar -xnf latest.tar.gz | |
mv wordpress/* ./* | |
#db | |
mysql> create user user identified by 'pss'; | |
mysql> grant all privileges on db.* to user; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment