
Originally Posted by
LibertyFlag
This server is behind a firewall with NAT forwarding port 80 to the servers internal ip address 192.168.0.???
Everything seems to be working so far, except the ip address resolution. The footer reports 0.0.0.0 and Who's Online reports 2 entries for each connection.
Try editing your tpl_footer.php file:
Find this:
Code:
<div id="siteinfoIP"><?php echo TEXT_YOUR_IP_ADDRESS . ' ' . $_SERVER['REMOTE_ADDR']; ?></div>
replace like this:
Code:
<div id="siteinfoIP"><?php echo TEXT_YOUR_IP_ADDRESS . ' ' . zen_get_ip_address(); ?></div>
Does that help the footer display at all?
If so, your problem is in the firewall retranslations of data. That's a common issue if using proxy configurations.