Single Line Wordpress Install
Posted on July 20, 2008
I'm getting a pro at installing Wordpress now.I'm trying to cut down my install time to a minimum.
Here's a one line Linux command to;
- Download the latest Wordpress.
- Unzip, move files from the wordpress/ directory to the root.
- Clean up some unnecessary files.
- Create some necessary files.
- Set some necessary permissions.
wget http://wordpress.org/latest.zip && unzip latest.zip && mv wordpress/* . && touch robots.txt sitemap.xml sitemap.xml.gz .htaccess && chmod 777 robots.txt sitemap.xml sitemap.xml.gz .htaccess && rm license.txt readme.html latest.zip && mkdir wp-content/uploads && chmod 777 wp-content/uploads
Now I just need to create the MySQL database and user from that command and I'm laughing.
Related posts:
- Custom Page Templates Not Showing in Wordpress
I've recently starting getting an annoying error in Wordpress, I'm not sure if its my... - Wordpress 2.5 Upgrade
This morning I upgraded to the latest Wordpress 2.5, along with, perhaps, 500,000 other people...... - Crawl Rate Tracker and Wordpress 2.5 Manual Fix
A quick update on people that need the Crawl Rate Tracker to work with Wordpress... - Using Wordpress header and footers externally
I needed to integrate a Wordpress header (header.php) and footer (footer.php) into an external application.... - Redirecting WordPress index.php to root
If you check the Page Rank of http://bloke.org against http://bloke.org/index.php, which are both, to a...