Deze handleiding behandelt een probleem waarbij WordPress het lokale host IP adres (127.0.0.1) weergeeft voor de auteur van een commentaar in plaats van het werkelijke IP adres.
Wij stellen eerst een diagnose van de oorzaak van het probleem en bieden vervolgens een stapsgewijze oplossing om het probleem op te lossen. Wij zullen ook het belang bespreken van het nauwkeurig bijhouden van IP-adressen voor veiligheids- en moderatiedoeleinden.
Aan het eind van deze tutorial heb je het probleem opgelost en kun je de IP-adressen van commenters op je WordPress website nauwkeurig bijhouden. Dit is een must voor iedereen die dit probleem ondervindt en een oplossing zoekt.
Dus je gebruikt Vernis? Cool! Daarom kun je het echte IP-adres van je bezoekers niet zien. Geen zorgen, hier is de complete oplossing.
Om dit probleem op te lossen,
- Inloggen op FTP/SFTP
- Ga naar public_html folder
- Bewerk wp-config.php
- Voeg onderstaande code toe net voor /* That’s all, stop editing! Happy blogging. */
- Wijzigingen opslaan.
/** Required Code for showing correct IP address */
if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$xffaddrs = explode(',',$_SERVER['HTTP_X_FORWARDED_FOR']);
$_SERVER['REMOTE_ADDR'] = $xffaddrs[0];
}
Mark: Dit kleine probleem had ik op Cloudways webhosting.
Alternatief geval
Evenzo, als uw IP onjuist wordt weergegeven na gebruik van Cloudflare, is hier de oplossing –
/** Correct IP in case of Cloudflare **/
if(array_key_exists('HTTP_CF_CONNECTING_IP', $_SERVER)){
$_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
}
Als alternatief, als u LEMP stack met root toegang heeft, voeg dan onderstaande regel toe onder Server Block. U kunt uw configuratiebestand vinden op /etc/nginx/sites-available/
directory.
server {
root /var/www/html;
index index.php index.html index.htm;
server_name .example.com;
# Get real IP
set_real_ip_from 0.0.0.0/0;
set_real_ip_from ::/0;
real_ip_header X-Forwarded-For;
...
In het geval, als je geen comfort voelt in het bewerken van wp-config.php bestand, voeg bovenstaande snippet toe met behulp van Code Snippets plugin. Het zal prima werken. Ik hoop dat deze gids helpt in de juiste richting. Bedankt
Time it shows is of the server not the user. Is it possible to check user time as well?
That’s the exact problem I was facing. The Cloudways support did rectify it twice but they never shared the solution. It was Mustasaam who referred me to this page.
The solution works perfectly for me. Thank you for sharing.
Just one more query, how did you hide the Website option from the comments box? Most of my readers are internet noobs who feel filling out the Website section is mandatory. I too want to get the same removed. Mind sharing an article on my email ID?
Thanks for visiting.
To hide website field, you can use below snippet.
I tried both of method mentioned here but still, I got same error plz help me 🙁
Thanks. Thats exactly what I was looking for. Also using and loving Cloudways! 🙂
Hi dear, Thanks for the kind comment. I am glad to hear from you. 🙂
Hi Gulshan
Nice Post about , error of local host in wordpress keep it up
nice artical sir, very usefull your post thanks for information provide
Hi Pushpendra, Thank you so much for the kind comment. I am so glad you found it useful.
Thank you Gulshan. I thought someone is commenting from my server itself. It looks like this problem exists in Cloudways.
You’re welcome! This problem exist in the Cloudways web hosting. Not a big issue though.
I was looking for the same. It is showing 127.0.0.1. Fixed it. your blog seems very handy for wordpress fixes/optimizations. thanks.
Hi Tirupati,
I am so glad you found my blog. Thank you so much.
Hi, I’ve found your blog from shoutmeloud forum, and it’s great for optimizing wordpress.
What plugin/code you’re using for the responsive mobile menu at the left corner of the header? I need one badly.
Where should I put it Gulshan. Right after <?php opening or /** which is already been there?
Hi,
Thanks for coming back.
You need to put code just before this line
/* That's all, stop editing! Happy blogging. */
Awesome Gulshan. Was having the same issue with the local ip address showing instead of the real ip address.
Glad to know you found it. Thanks