>   I have gotten this error several times (Scattered - Say 10 searches go through, 
>then the next is this) when check to see if a .biz domain is available... 
> 
> Content-type: text/html 
> cgi-lib.pl: Unknown Content-type: application/x-www-form-urlencoded, 
>application/x-www-form-urlencoded 

Replace cgi-lib with CGI.pm and that error will most likely go away.  To
do this, look for the cgi-bin.pl line in reg_system.cgi, remove it or
comment it out and add a line to use CGI.pm (with cgi-lib emulation--see
example below).  If you comment out the cgi-lib line you will end up with
the following:

#do "$PATH_LIB/cgi-lib.pl";
use CGI qw(:cgi-lib);

Personally, I am disappointed that OpenSRS is still distributing the
client code with cgi-lib.  cgi-lib usage should have died out years ago.



Reply via email to