wps-hide-login
Last commit date
languages
11 years ago
index.php
11 years ago
readme.txt
11 years ago
uninstall.php
11 years ago
wps-hide-login.php
11 years ago
readme.txt
82 lines
| 1 | === WPS Hide Login === |
| 2 | |
| 3 | Contributors: tabrisrp, WPServeur |
| 4 | Tags: rename, login, wp-login, wp-login.php, custom login url |
| 5 | Requires at least: 4.1 |
| 6 | Tested up to: 4.2 |
| 7 | Stable tag: 1.1 |
| 8 | License: GPLv2 or later |
| 9 | License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 10 | |
| 11 | Change wp-login.php to anything you want. |
| 12 | |
| 13 | == Description == |
| 14 | |
| 15 | *WPS Hide Login* is a very light plugin that lets you easily and safely change the url of the login form to anything you want. It doesn’t literally rename or change files in core, nor does it add rewrite rules. It simply intercepts page requests and works on any WordPress website. The wp-admin directory and wp-login.php page become inaccessible, so you should bookmark or remember the url. Deactivating this plugin brings your site back exactly to the state it was before. |
| 16 | |
| 17 | = Compatibility = |
| 18 | |
| 19 | Requires WordPress 4.1 or higher. All login related things such as the registration form, lost password form, login widget and expired sessions just keep working. |
| 20 | |
| 21 | It’s also compatible with any plugin that hooks in the login form, including |
| 22 | |
| 23 | * BuddyPress, |
| 24 | * bbPress, |
| 25 | * Limit Login Attempts, |
| 26 | * and User Switching. |
| 27 | |
| 28 | Obviously it doesn’t work with plugins that *hardcoded* wp-login.php. |
| 29 | |
| 30 | Works with multisite, but not tested with subdomains. Activating it for a network allows you to set a networkwide default. Individual sites can still rename their login page to something else. |
| 31 | |
| 32 | If you’re using a **page caching plugin** you should add the slug of the new login url to the list of pages not to cache. For W3 Total Cache and WP Super Cache this plugin will give you a message with a link to the field you should update. |
| 33 | |
| 34 | = GitHub = |
| 35 | |
| 36 | https://github.com/tabrisrp/wps-hide-login |
| 37 | |
| 38 | = Description Française = |
| 39 | WPS Hide Login est un plugin très léger qui vous permet facilement et en toute sécurité de modifier l'URL de connexion en ce que vous voulez. |
| 40 | |
| 41 | Il ne renomme pas ou ne modifie pas de fichiers dans le noyau, et n'ajoute pas de règles de réécriture. Il intercepte tout simplement les demandes de page et fonctionne sur n'importe quel site WordPress. |
| 42 | |
| 43 | La page wp-login.php et le répertoire wp-admin deviennent donc inaccessibles, vous devrez donc bookmarker ou vous rappeler l'url. Désactiver ce plugin ramène tout simplement votre site à son état initial. |
| 44 | |
| 45 | Compatibilité |
| 46 | Nécessite WordPress 4.1 ou supérieur. |
| 47 | |
| 48 | Si vous utilisez un plugin de cache, vous devrez ajouter la nouvelle URL de connexion à la liste des pages à ne pas mettre en cache. |
| 49 | |
| 50 | == Installation == |
| 51 | |
| 52 | 1. Go to Plugins › Add New. |
| 53 | 2. Search for *WPS Hide Login*. |
| 54 | 3. Look for this plugin, download and activate it. |
| 55 | 4. The page will redirect you to the settings. Change your login url there. |
| 56 | 5. You can change this option any time you want, just go back to Settings › General › WPS Hide Login. |
| 57 | |
| 58 | == Screenshots == |
| 59 | 1. Setting on single site installation |
| 60 | 2. Setting for network wide |
| 61 | |
| 62 | == Frequently Asked Questions == |
| 63 | |
| 64 | = I forgot my login url! = |
| 65 | |
| 66 | Either go to your MySQL database and look for the value of `whl_page` in the options table, or remove the `wps-hide-login` folder from your `plugins` folder, log in through wp-login.php and reinstall the plugin. |
| 67 | |
| 68 | On a multisite install the `whl_page` option will be in the sitemeta table, if there is no such option in the options table. |
| 69 | |
| 70 | == Changelog == |
| 71 | |
| 72 | = 1.1 = |
| 73 | * Fix : CSRF security issue when saving option value in single site and multisite mode. Thanks to @Secupress |
| 74 | * Improvement : changed option location from permalinks to general, because register_setting doesn't work on permalinks page. |
| 75 | * Improvement : notice after saving is now dismissible (compatibility with WP 4.2) |
| 76 | * Uninstall function is now in it's separate file uninstall.php |
| 77 | * Some cleaning and reordering of code |
| 78 | |
| 79 | = 1.0 = |
| 80 | |
| 81 | * Initial version. This is a fork of the Rename wp-login.php plugin, which is unmaintained https://wordpress.org/plugins/rename-wp-login/. All previous changelogs can be found there. |
| 82 |