All posts tagged wordpress
Step 1: create db user CREATE USER ‘blog_user’@’%’; GRANT ALL PRIVILEGES ON blog_db.* To ‘blog_user’@’%’ IDENTIFIED BY ‘s3cret’; To change it later you can use: SET PASSWORD FOR ‘blog_user’@’%’ = PASSWORD(‘xxxx’); Step 2: install WordPress Login into your AWS instance and run the following: wget http://wordpress.org/latest.tar.gz mv wordpress blog mv . . . Read more
If you get this error while uploading a new theme, your web server is rejecting the upload due to the overall size of the file. WordPress is unfortunately giving you a rather ambiguous message in response. This is not a theme issue or bug. In order to increase your PHP . . . Read more
Up until now my blog (lucaslouca.com) was hosted on a traditional/old fashioned hosting provider, Their service provided a fixed 10GB of hosting storage together with FTP access and a cPanel. So here are the reasons why I switched over to AWS: – Less expensive – More flexible due to the . . . Read more