Author: Zenon Panoussis
Email: [EMAIL PROTECTED]
Message:
 
> Question: are you running your own web server? Is the cgi-bin of 
> your particular domain and user account *really* set to the cgi-bin 
> directory that you are using? Are you sure? 

If you don't know how the web server is configured, here is how 
to test it. 

Put this in a file called test.pl :

#!/usr/bin/perl -w
use CGI ':standard';

print header();
print start_html();
print h5("This works");
print end_html();

Do chmod a+x test.pl and place the file in the same directory 
as your search.cgi . Do ./test.pl on the shell; that should 
give you a simple HTML page. Now call the script from your 
browser with http://your.domain/cgi-bin/test.pl or with 
http://your.domain/your_dir/cgi-bin/test.pl . Does it work? 
If not, your problem is in the server configuration and the 
location of your cgi-bin. 

Z



Reply: <http://search.mnogo.ru/board/message.php?id=1372>

______________
If you want to unsubscribe send "unsubscribe udmsearch"
to [EMAIL PROTECTED]

Reply via email to