wordpress评论ip异常问题

在多层nginx中,获取到的ip为最后一个nginx的上层nginxip

具体获取评论ip的代码为

wp-includes/comment.php

if ( ! isset( $commentdata['comment_author_IP'] ) ) {
        $commentdata['comment_author_IP'] = $_SERVER['REMOTE_ADDR'];
    }

解决方法1

在wp-config中添加如下代码重写'REMOTE_ADDR'变量

// Set the real IP address for clients behind a proxy or load balancer.
function set_real_client_ip() {
    if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
        // Check if multiple IPs exist in the header, take the first one.
        $ip_address_list = array_map( 'trim', explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] ) );
        $real_ip = reset( $ip_address_list );
    } elseif ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
        // Fallback to HTTP_CLIENT_IP if available.
        $real_ip = $_SERVER['HTTP_CLIENT_IP'];
    } else {
        // Use REMOTE_ADDR as fallback.
        $real_ip = $_SERVER['REMOTE_ADDR'];
    }

    // Set the REMOTE_ADDR to the real IP address.
    $_SERVER['REMOTE_ADDR'] = $real_ip;
}

// Call the function to set the real IP address.
add_action( 'init', 'set_real_client_ip' );

方法2,安装reverse-proxy-comment-ip-fix插件

插件市场里搜不到,可以上github下载
Tags · WPPlugins/reverse-proxy-comment-ip-fix · GitHub

下载zip包上传到插件安装界面就可以

插件本质上在pre_comment_user_ip加了过滤器执行对应函数里的操作

相关推荐
dd要努力变优秀!4 小时前
Nginx简述
运维·nginx
hhzz4 小时前
nginx的可视化配置工具nginxWebUI的使用
运维·nginx
飞花舞者10 小时前
nginx代理服务器配置不正确出现的小bug
运维·nginx·bug
飞的肖16 小时前
nginx 实现 正向代理、反向代理 、SSL(证书配置)、负载均衡 、虚拟域名 ,使用其他中间件监控
nginx·中间件·负载均衡
xiao-xiang1 天前
nginx-lua模块处理流程
运维·nginx·lua
Web极客码1 天前
初学者如何保护WordPress网站内容
安全·wordpress·密码
程序员雄杰1 天前
centos7.6 安装nginx 1.21.3与配置ssl
运维·nginx·ssl
一张假钞2 天前
使用RSyslog将Nginx Access Log写入Kafka
运维·nginx·kafka
扶桃笙2 天前
2025封禁指定国家ip-安装xtables-addons记录
网络安全·centos·ip·xtables-addons
苹果醋32 天前
MySQL Binlog 同步工具go-mysql-transfer Lua模块使用说明
java·运维·spring boot·mysql·nginx