All in One Migration Tool: https://wordpress.org/plugins/all-in-one-wp-migration/
Elementor Site Builder: https://www.youtube.com/watch?v=Tkrhpy3RIX0
Images: https://unsplash.com/
Use the Virtualmin Install Script for Wordpress. You can update WP easily in the future.
Use Virtualmin to assign a free LetsEncrypt SSL certificate.
https://www.thepolyglotdeveloper.com/2014/12/force-https-pages-wordpress-site/
https://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
Troubleshooting - CLI: https://wpengine.com/support/troubleshoot-ssh-gateway/
Troubleshooting - Wordpress https://wpengine.com/support/troubleshoot-WordPress/
https://www.wpbeginner.com/beginners-guide/how-to-change-the-wordpress-admin-email/
These commands create an admin user with ID 1 in the mydatabase
database…modify (first line) as needed.
INSERT INTO `mydatabase`.`wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('1', 'myusername', MD5('mypasssword'), 'Full Name', 'my@email.address', 'http://my.url', '2023-05-30 00:00:00', '', '0', 'Full Name'); INSERT INTO `mydatabase`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '1', 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'); INSERT INTO `mydatabase`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '1', 'wp_user_level', '10');
https://www.inmotionhosting.com/support/edu/wordpress/migrate-wordpress-site-from-wp-engine/
cd database/location/ mysql -u dbusername -p dbname < ./mysql.sql
chown username:username -R * # Set website user as the owner find . -type d -exec chmod 775 {} \; # Change folder permissions to rwxrwxr-x find . -type f -exec chmod 664 {} \; # Change file permissions to rw-rw--r--
If you have caching enabled:
https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/