Created
July 28, 2017 19:17
-
-
Save iamkingsleyf/425c9e92de750e48ed4f2151754ab83a to your computer and use it in GitHub Desktop.
wp-config real ip with autosave
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use X-Forwarded-For HTTP Header to Get Visitor's Real IP Address | |
if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { | |
$http_x_headers = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] ); | |
$_SERVER['REMOTE_ADDR'] = $http_x_headers[0]; | |
} | |
// Modify AUTO SAVE INTERVAL | |
define( 'AUTOSAVE_INTERVAL', 300 ); // Seconds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment