Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBrendan Lawton
Courses Plus Student 79 PointsUpload zipped wordpress folder via cPanel file manager if you have a slow connection
..And then unzip the contents. It takes so much less time
2 Answers
Steve Smith
12,955 PointsIf you've got command line access to your server, you can get the latest version of WordPress and unzip it all from the CLI.
wget http://wordpress.org/latest.tar.gz
This will download the current version of WordPress
tar -xzvf latest.tar.gz
This will unzip the file into a wordpress directory.
I recommend moving all the files from inside the wordpress directory out to the root of the web server directory so that your urls don't look like 'mydomain.com/wordpress/'
Do do that change directory into the wordpress directory
cd wordpress
Move everything (*) up one level (..)
mv * ..
Move back to the root directory
cd ..
Then cleanup the empty wordpress folder and the downloaded zip file
rm -R wordpress rm latest.tar.qz
Brendan Lawton
Courses Plus Student 79 PointsEven better!