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 used your guides to install LAMP and Wordpress… they worked perfectly… thank you for your time and effort!
Thank you for your kind words! Please let us know if there are any other article topics that you’d like to see. =]
I’m having an extremely frustrating problem installing wordpress on my centos 6.3 guest (vmware workstation) … I’m at the step where I am supposed to run the install.php file from a web browser, and I can’t run the file because it’s not there in the package! I’ve re-downloaded the wordpress package several times now, and every time I look inside the wp-admin folder, the install.php file is nowhere to be found. Any idea why this would be happening?
The install.php file should come automatically with Wordpress. I just ran through these steps once again on a droplet with Centos 6.3 and it worked without the issue you described above.
What message do you get when you try to access the Wordpress install page?
Hi there, your tutorials are easy to follow and well documented! Thanks ;) I need some help, I cannot setup the automatic wordpress update because i don’t have the good credentials for ftp user in wordpress. How can I add a user/pwd for wordpress access to my server ? Help will be really appreciated ;)
You can actually use SSH instead of FTP to update wordpress.
There are a few steps you need to take:
Install the EPEL repo: <pre>sudo rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm</pre><br/>
Install the php-ssh2 module: <pre>sudo yum install php-pecl-ssh2</pre><br/>
Reload Apache: <pre>sudo service httpd reload</pre><br/>
Then, once you are in wordpress and trying to update something, you will be able to choose another connection. You will see in the section where it asks you for the FTP user and password, there will be another option to use the connection type SSH2. Using SSH2, put in your server userid and password and you should be able to update wordpress.
Great stuff. However, I get the following error when browsing to the <ip address>/wp-admin/install.php page:
Can’t select database
We were able to connect to the database server (which means your username and password is okay) but not able to select the intranet database.
Are you sure it exists?
Does the user intranetuser have permission to use the intranet database?
On some systems the name of your database is prefixed with your username, so it would be like username_intranet. Could that be the problem?
Any assistance would be great. Thanks.
Thank you Very MUCH! Appreciate this post. There is a few thing however that I had to change:
Directory structure. First of all, most users will be inside the root folder when running the following command:
wget http://wordpress.org/latest.tar.gz
So, you need to download the package to the right directory, which is: /var/www/html. Your shell console should
show the following to know you are downloading in the right directory:
[root@yourservername html]# wget http://wordpress.org/latest.tar.gz
Running the following command:
tar -xzvf latest.tar.gz
created a ‘wordpress’ folder inside my ‘html’ folder. This means that when you visit your site, you will have to go
to: www.mysite.com/wordpress.
To take all the files out of the wordpress directory up one directory(into the hmtl folder), run the following
command when inside the ‘wordpress’ folder
shopt -s dotglob ## activate dotglob
mv ./* …/
shopt -u dotglob ## deactivate dotglob
Configuring the wp-config.php file If you are stupid like me, you would assume that you should add your user to the config file like this define(‘DB_USER’, ‘wordpressuser@localhost’); like it the post, DO NOT add the @localhost… This caused my site to respond with the annoying ‘database not found’ message
Thanks again for your help
my wordpress is runing but i cant upload themes using the upload function of wordpress: Unable to create directory wp-content/uploads/2013/07. Is its parent directory writable by the server?
this is the message and i upload the theme from ftp but i cant see the theme in my wordpress desktop
i have a shared hosting and i upload the theme all work in these shared hosting.