Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I have a question regarding where the WordPress files are located after this step:
Download Wordpress When you are ready, log into your server and change to your home directory. We will download the files here:
I have looked elsewhere for “best practices” for installing WordPress to handle multiple blogs and I need enlightenment.
Can someone explain why software such as WordPress is not installed into a subdirectory of /usr/bin ? MySQL lives at /usr/bin/mysql
@billmarel: MySQL is binary software. WordPress is just a bunch of php scripts – a regular website. Websites shouldn’t be stored in /usr/bin.
I hope that clears stuff up :]
Not really:
I have a question regarding where the WordPress files are located after this step:
Download Wordpress When you are ready, log into your server and change to your home directory. We will download the files here:
Why does WP need to be installed in my home directory?
@billmarel: WP doesn’t need to be installed in your home directory. You can install it <em>anywhere</em> you like. However, installing it in your home directory is the easiest way to do it without having any permissions issues et al.
I had mucho problemo making none default permalinks work in WordPress. After much hair pulling, I found this article:
http://wordpress.org/support/topic/pretty-permalinks-problem-not-found?replies=15
In that post the author rem’d out AllowOverride to make permalinks work
After reading this on apache: http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride I elected to set the AllowOverride to All.
I’ve updated the article to mention that AllowOverride must be set to “All” if you need pretty permalinks to work. Thanks for the suggestion!
Permalinks in wordpress works with .htaccess files. They are special config files for single website.
If you want to learn more about them you can find a nice read here: http://net.tutsplus.com/tutorials/other/the-ultimate-guide-to-htaccess-files/
chown www-data:www-data * -R
Nooo! Use suexec / suphp / mod_ruid2 for security reason.
@digi I followed this guide and all was fine but reading what you wrote: chown www-data:www-data * -R Nooo! Use suexec / suphp / mod_ruid2 for security reason. Could you explain what should be done inside this Howto to use mod_ruid2 ? I searched on Google but didn’t find any clear howto I could use.
Done. Thank you for this guide! Some follow-up questions for what happens after…
Correct me if any of the following steps are wrong…
Let’s say that FirstSite was originally hosted on Dreamhost. First I’m going to add all the necessary DNS records to DigitalOcean.
Then I am going to log in to the domain registrar and change the DNS servers to point to NS1.digitalocean.com / NS2… / NS3…
Then what? My understanding is that now the database is full of values like “http://xx.xx.xx.xx/firstsite.com” when I want it to be “http://firstsite.com” . I find this to be a problem - I don’t think that Wordpress will just up and solve that on its own - so what should be done?