Gossamer Forum
Home : Products : Others : Fileman :

error in User_ID

Quote Reply
error in User_ID
I have been trying to add a user nipp_ss but it will not allow me to have the _ in the name, is there anyway round this ?.
Quote Reply
Re: error in User_ID In reply to
Hi Steve,

Change in fileman.cgi, sub is_valid_user:

1097: ($user =~ /^([A-Za-z0-9-_]+)$/)

to:

1097: ($user =~ /^([A-za-z0-9\-\_]+)$/)

and you should be set.

Cheers,

Alex