Enable HSTS Preload for a WordPress website - Enable HSTS Preload for a WordPress website

Enable HSTS Preload for a WordPress website

To enable HSTS Preload on a WordPress website (https://hstspreload.org/?domain=wpxss.com) you need to add the following code snippet in the .htaccess file: If you have access to the server settings *(You are using a VPS or DEDICATED server) then you can enable it server-wide for all domains by adding the snippet to the /etc/apache2/conf.d/includes/pre_main_global.conf file TIP: … Read full article →

htaccess - How to find and create the .htaccess file

How to find and create the .htaccess file

.htaccess is a hidden text file that contains additional configuration for websites hosted on Apache (and LiteSpeed) server. With .htaccess file you can create redirects, password-protect directories, block IPs and much more. For some examples on .htaccess files make sure to check this .htaccess Cheatsheet. How to find the .htaccess file On cPanel after you … Read full article →

Increase Maximum Upload File Size in WordPress - ✅ How to Increase Maximum Upload File Size in WordPress [SOLVED]

✅ How to Increase Maximum Upload File Size in WordPress [SOLVED]

Here is How to Increase Maximum Upload File Size in WordPress: Increase Maximum Upload File Size using the .htaccess file Change the numbers to the values that you need: Increase Maximum Upload File Size using wp-config.php Open up your wp-config.php file and add the following code inside: Increase Maximum Upload File Size in WordPress using … Read full article →

wp cron - Why is ?doing_wp_cron being added to my URLs

Why is ?doing_wp_cron being added to my URLs

WordPress background processing tasks such as publishing scheduled posts, backups or auto-updates may append ?doing_wp_cron to your URLs. Most common plugins that cause this issue are: All-In-One WP Migration and UpDraftPlus Backups. Disable doing_wp_cron in URL using wp-config.php To remove ?doing_wp_cron from URLs using the wp-config.php file simply edit the file and remove the line containing: Disable … Read full article →