Force SSL Usage In The WordPress Admin - WordPress Security | WP Learning Lab - Best Webhosting

Thanks! Share it with your friends!

URL

You disliked this video. Thanks for the feedback!

Sorry, only registred users can create playlists.

ULTRAFAST, CHEAP, SCALABLE AND RELIABLE! WE STRONGLY RECOMMEND ACCU WEB HOSTING COMPANY

Force SSL Usage In The WordPress Admin - WordPress Security | WP Learning Lab

Watch Wordpress WPLearningLab Video: Force SSL Usage In The WordPress Admin - WordPress Security | WP Learning Lab.
Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL
Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist
Force SSL Usage In The WordPress Admin - WordPress Security | WP Learning Lab

define('FORCE_SSL_ADMIN', true);

In this tutorial I'm going to show you how to secure your WordPress admin by forcing every signed in session to use an SSL certificate (HTTPS).

SSL certificates are hosting account add-ons you can easily buy which allow you to encrypt all the traffic on your website using what is called a Secure Socket Layer. This is the same encryption that banks use.

By forcing all signed in users to use the HTTPS protocol you are ensuring that all information based between the user and the server is encrypted.

To make this happen all you have to do is add a single line of code to your wp-config.php file. Let's get to it.

First login into your hosting account cPanel. Then find and click on the File Manager icon and choose the Document Root for the website that you are hardening. This will open the root of the website in another tab.

You can also log into the website root using FTP if you are more comfortable with that.

In the website root folder find and open the wp-config.php file. Paste the code from the top of the entry near the bottom of the file, just above where it says, "That's All! Stop Editing!".

Save the file and your will have forced SSL usage in the WordPress admin.

Please note that you do need to have an SSL certificate installed on your domain, otherwise this won't work. You can contact your webhost to purchase one or find one online by googling "SSL Certificate".

I hope this information helps you! If you have any questions leave a comment below or ping me @WPLearningLab on Twitter.

--------------

If you want more excellent WordPress information check out our website where we post WordPress tutorials daily.

http://wplearninglab.com/

Connect with us:

WP Learning Lab Channel: http://www.youtube.com/subscription_center?add_user=wplearninglab

Facebook: https://www.facebook.com/wplearninglab

Twitter: https://twitter.com/WPLearningLab

Google Plus: http://google.com/+Wplearninglab

Pinterest: http://www.pinterest.com/wplearninglab/

Published:
Category: Wordpress WPLearningLab
81 Views

Related Videos

  • Brute Force Login Attacks Explained - Better WordPress Security | WP Learning Lab

    Brute Force Login Attacks Explained - Better WordPress Security | WP Learning Lab

    by Best Webhosting Added 80 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Brute Force Login Attacks Explained - Better WordPress Security | WP Learning Lab #1 Biggest Security Threat Facing WordPress this year: http://bit.ly/WordPress-Security2 What is a Brute Force Attack? A hacker gains access to your website by guessing a correct usernam

  • Limit WordPress WP-Admin Access To Specific IPs - Keep Brute Force Hackers Out | WP Learning Lab

    Limit WordPress WP-Admin Access To Specific IPs - Keep Brute Force Hackers Out | WP Learning Lab

    by Best Webhosting Added 88 Views / 0 Likes

    Limit WordPress WP-Admin Access To Specific IPs - Keep Brute Force Hackers Out | WP Learning Lab # BEGIN Restrict WP-Admin Access To Specific IPs Order Deny,Allow Allow from 123.456.789.111 Deny from all # END Block WP-Admin Access To Specific IPs In this tutorial I'm going to show you how you can disable wp-admin access to only IP addresses that you specify. This works great if you have a static IP or a known dynamic IP range that you always access t

  • Change WordPress Admin Username Via MySQL - Brute Force Attack Prevention | WP Learning Lab

    Change WordPress Admin Username Via MySQL - Brute Force Attack Prevention | WP Learning Lab

    by Best Webhosting Added 78 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Change WordPress Admin Username Via MySQL - Brute Force Attack Prevention | WP Learning Lab UPDATE wp_users SET user_login = 'Your New Username' WHERE user_login = 'Admin'; In this tutorial I'm going to show you how to change the Admin username on your WordPress accou

  • Here's How To Never Use Your WordPress Admin User For Better WordPress Security | WP Learning Lab

    Here's How To Never Use Your WordPress Admin User For Better WordPress Security | WP Learning Lab

    by Best Webhosting Added 77 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Here's How To Never Use Your WordPress Admin User For Better WordPress Security | WP Learning Lab On most websites the WordPress admin user username is exposed in the source code of the website. Protect your site by using this strategy to never reveal the WordPress admin user account. This way, if a user's account is hacked, they don't have admin privileges and a the damage

  • How To Limit The Login Attempts On WordPress For Free? Security To  Prevent Brute Force

    How To Limit The Login Attempts On WordPress For Free? Security To Prevent Brute Force

    by Best Webhosting Added 7 Views / 0 Likes

    In today's video tutorial, we'll learn a simple, fast, and effective way to prevent brute force attacks on your WordPress website by limiting the login attempts for free Why Has Online Security Never Been More Essential https://visualmodo.com/online-security-essential/ How To Add a Security Question To Login At WordPress Dashboard? https://www.youtube.com/watch?v=jQOPMPPBvjQ How To Hide WordPress Login Page From Public? Website Security Guide https://

  • Remove The WordPress Admin Bar - Disable Admin Bar For All Users | WP Learning Lab

    Remove The WordPress Admin Bar - Disable Admin Bar For All Users | WP Learning Lab

    by Best Webhosting Added 74 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Remove The WordPress Admin Bar - Disable Admin Bar For All Users | WP Learning Lab add_filter('show_admin_bar', '__return_false'); In this tutorial you're going to learn how to remove the WordPress admin bar. That is the bar that appears at the top of the website when

  • Disable WordPress XMLRPC.PHP - Common Brute Force Hacker Exploit | WP Learning Lab

    Disable WordPress XMLRPC.PHP - Common Brute Force Hacker Exploit | WP Learning Lab

    by Best Webhosting Added 86 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Disable WordPress XMLRPC.PHP - Common Brute Force Hacker Exploit | WP Learning Lab # BEGIN Disable XML-RPC.PHP (left pointy bracket)Files xmlrpc.php(right pointy bracket) Order Deny,Allow Deny from all (left pointy bracket)/Files(right pointy bracket) # END Disable XM

  • Password Protect Your WordPress Login Page - Brute Force Attack Prevention | WP Learning Lab

    Password Protect Your WordPress Login Page - Brute Force Attack Prevention | WP Learning Lab

    by Best Webhosting Added 73 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Password Protect Your WordPress Login Page - Brute Force Attack Prevention | WP Learning Lab # Password protect the wp-login.php file ErrorDocument 401 "Unauthorized Access" ErrorDocument 403 "Forbidden" (left pointy bracket)FilesMatch "wp-login.php"(right pointy brac

  • How To Make Your WordPress More Secure For Free? Sucuri Security Plugin Usage Guide

    How To Make Your WordPress More Secure For Free? Sucuri Security Plugin Usage Guide

    by Best Webhosting Added 7 Views / 0 Likes

    In today's video we'll learn a simple, fast, and effective way to make our WordPress websites more secure, and for free, using the Sucuri Security – Auditing, Malware Scanner, and Security Hardening WordPress plugin. Best Security WordPress Plugins https://visualmodo.com/best-wordpress-security-plugins/ How To Limit The Login Attempts On WordPress For Free? Security To Prevent Brute Force https://www.youtube.com/watch?v=4N_MpCWE-1E How To Add a Securi

  • How To Move WordPress Login Page For WordPress Security & Hack Prevention | WP Learning Lab

    How To Move WordPress Login Page For WordPress Security & Hack Prevention | WP Learning Lab

    by Best Webhosting Added 64 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist How To Move WordPress Login Page For WordPress Security & Hack Prevention | WP Learning Lab In this tutorial I'm going to show you how to use the Move Login plugin to move the default WordPress login page. This will help reduce the likelihood of a successful brute for

  • Prevent Script Injection In WordPress - Stop Hackers With WordPress Security | WP Learning Lab

    Prevent Script Injection In WordPress - Stop Hackers With WordPress Security | WP Learning Lab

    by Best Webhosting Added 91 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Prevent Script Injection In WordPress - Stop Hackers With WordPress Security | WP Learning Lab # BEGIN Protect Against Script Injections Options +FollowSymLinks RewriteEngine On RewriteCond %{QUERY_STRING} ((left pointy bracket)|%3C).*script.*((right pointy bracket)|%

  • Block Hacker IPs With The WordFence WordPress Plugin - WordPress Security | WP Learning Lab

    Block Hacker IPs With The WordFence WordPress Plugin - WordPress Security | WP Learning Lab

    by Best Webhosting Added 90 Views / 0 Likes

    Grab Your Free 17-Point WordPress Pre-Launch PDF Checklist: http://vid.io/xqRL Download our exclusive 10-Point WP Hardening Checklist: http://bit.ly/10point-wordpress-hardening-checklist Block Hacker IPs With The WordFence WordPress Plugin - WordPress Security | WP Learning Lab In this tutorial I'm going to show you how to use the WordFence WordPress plugin to block hacker IPs from accessing your website. As well as show you some tricks to finding IPs

RECOMMENDED WEB HOSTING

FASTCOMET

Fastcomet

HOSTGATOR

HOSTGATOR

BLUEHOST

BLUEHOST

SITEGROUND

SITEGROUND

A2 HOSTING

A2 HOSTING

HOSTINGER

HOSTINGER

DREAMHOST

DREAMHOST

ACCU WEBHOSTING

ACCU WEBHOSTING

MILESWEB

MILESWEB

HOSTPAPA

HOSTPAPA


RSS