A small bug-report:
Your check for write-permission for $datafile and $mapoutput does not work on a windows-based server:
PHP Code:
[...]
if ((substr (sprintf ('%o', fileperms ($datafile)), 3, 5) != 777) || (substr (sprintf ('%o', fileperms ($mapoutput)), 3, 5) != 777))
{
eval (standard_error ($vbphrase['vbmembermap_write']));
}
[...]
I had to comment out these lines to get it to work. Actually that's no surprise having the different file-systems in mind. On monday I can report the output of "fileperms()" from my system.
Kind regards,
G?rome