Backup wordpress to S3 bucket
|

How to Backup WordPress Website to AWS S3 Using UpdraftPlus

Backing up your WordPress website is essential for safeguarding your data against unexpected issues. In this guide, we’ll walk you through the process of using UpdraftPlus to back up your WordPress site directly to AWS S3. You’ll learn how to set up UpdraftPlus, configure it to connect with S3, and schedule regular backups to keep your website secure.

WordPress on AWS EC2
|

How to Set Up a WordPress Website on AWS EC2 Instance Using Docker

Deploying a WordPress website on AWS can be streamlined using Docker Compose, which simplifies the setup and management of the environment. In this guide, we’ll walk you through deploying a WordPress site on an EC2 instance using Docker Compose, configuring Nginx as a reverse proxy, and securing your site with SSL.

|

Create WordPress User with Admin Privileges in MySQL

INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`) VALUES (’admin’, MD5(’password’), ‘User Admin’, ‘user@admin.com’, ‘0’);   INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (SELECT MAX(id) FROM wp_users), ‘wp_capabilities’, ‘a:1:{s:13:"administrator";s:1:"1";}’);   INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (SELECT MAX(id) FROM wp_users), ‘wp_user_level’, ’10’);INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`) VALUES…

|

WordPress Errors and Solutions

Infinite redirect loop If there is infinite redirect loop, put this line in functions.php of current theme. remove_filter(‘template_redirect’, ‘redirect_canonical’); WordPress asks for FTP credentials Change ownership of your WordPress directory. chown –R www-data:www-data Nginx: 413 Request Entity Too Large Error Change Nginx config file sudo nano /etc/nginx/nginx.conf # set client body size to 128M #…

WordPress: Building Kage Child Theme – Adding Bootstrap Carousel

Unfortunately, Kage WordPress theme does not come with a slider, or some kinda carousel.  An easy solution is to place a bootstrap carousel instead of the front image. To do so we first of all need to enqueue bootstrap.  Below is the code you can put in functions.php  function kage_child_enqueue_scripts(){ wp_enqueue_script( ‘bootstrap-js’, ‘https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js’, array(‘jquery’), ‘3.3.7’,…

Adding Schema Markup to WordPress Blog

So, you’ve decided to boost your website’s SEO by adding schema markup?  Here is a great article on how to do it https://blog.kissmetrics.com/get-started-using-schema/ After spending some time marking up your post, you may find that your schema markup tags were stripped by TinyMCE editor that is used by WordPress.  In order to solve this problem you need to…

WordPress: Building Kage Child Theme – Creating Social Media Icons

I like Kage WordPress theme https://wordpress.org/themes/kage/ It is minimal, fast, and elegant.  Premium Kage theme has a lot more features than the free one, but sometimes you do not need all extra code when you use only one or two features like a slider or a social menu icons.  Let’s take a look at how to add…