Missing IPv6 support

Created on 18 March 2015, about 10 years ago
Updated 5 June 2024, 10 months ago

workaround in ip_ranges.module:

/**
 * Handles denied users.
 *
 * Prints a message and exits if access is denied.
 */
function ip_ranges_deny_access() {
  if(filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {
        // we have an IPv6 visitor
  }
  else{
        // module can handle IPv4 only
        header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
        print 'Sorry, visits from ' . check_plain(ip_address()) . ' have been banned .';
        exit();
  } // end if IPv6
}
✨ Feature request
Status

Active

Version

1.2

Component

Code

Created by

πŸ‡©πŸ‡ͺGermany alladin

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024