Skip to content

Instantly share code, notes, and snippets.

@robneu
Last active April 3, 2018 07:20
Show Gist options
  • Save robneu/8727430 to your computer and use it in GitHub Desktop.
Save robneu/8727430 to your computer and use it in GitHub Desktop.
How to Install WordPress via SSH - Installing WordPress via the command line is one of the fastest, easiest ways to get up and running on WordPress. Running this command will take literally 30 seconds. Assuming you've already created a database, all you have to do is run the WordPress install script and you're ready to start publishing!
wget -qO- http://wordpress.org/latest.tar.gz | tar xz && cp -rpf wordpress/* . && rm -r wordpress
@szepeviktor
Copy link

This is a bit shorter:

wget -qO- http://wordpress.org/latest.tar.gz | tar xz && cp -rpf wordpress/* . && rm -r wordpress

even shorter: http://wp-cli.org/commands/core/download/

@robneu
Copy link
Author

robneu commented Jul 12, 2014

Nice!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment