The features 'Visual subnet display' doen't work every time...
Sometimes, the display is ok, sometimes the features display anything... I don't understand why...
I had the same problem on Windows Server 2012 r2. Its a 64bit system.
The problem is in the file app/subnets/subnet-visual.php
On line 9 and 10 there is an typecast to INT. On Windows systems INT-values are php-internal max 32bit signed.
To solve the problem remove these two typecasts. The gmp_and() function dont need the value as INT, it understands the string input too.
For all Windows-Users it would be nice to solve this Problem in the next version ;)
PS:
Why it sometimes works and sometimes not:
IPs lower than 128.0.0.0 fit into an 32bit signed value. So they are calculated right and the visual display works fine. With larger IPs the visual display dont work.
Matthias Becher
Last edit: Matthias Becher 2016-07-28
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
I do a "verify database" everything is fine.
Here screenshoot :

View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
32 bit system ?
I had the same problem on Windows Server 2012 r2. Its a 64bit system.
The problem is in the file app/subnets/subnet-visual.php
On line 9 and 10 there is an typecast to INT. On Windows systems INT-values are php-internal max 32bit signed.
To solve the problem remove these two typecasts. The gmp_and() function dont need the value as INT, it understands the string input too.
Original line 9 and 10:
Working line 9 and 10
For all Windows-Users it would be nice to solve this Problem in the next version ;)
PS:
Why it sometimes works and sometimes not:
IPs lower than 128.0.0.0 fit into an 32bit signed value. So they are calculated right and the visual display works fine. With larger IPs the visual display dont work.
Matthias Becher
Last edit: Matthias Becher 2016-07-28