Here is a trick that might help you figuring out the CGIPath:
Copy the following code, save it as 'cgipath.cgi', upload it to the ubbcgi directory, chmod to 755 and run it from the browser.
[CODE]#!/usr/bin/perl -w
##########################
# Figuring out CGIPath
##########################
use strict;
use CGI qw(:standard);
my $ThisScript = 'cgipath.cgi';
my $CGIPath = $ENV{SCRIPT_FILENAME};
$CGIPath =~ s//$ThisScript$//;
print header, start_html(-title=>'CGI Path'), h3('The Absolute CGI Path for the ubbcgi directory is:'), br, h3("$CGIPath"), end_html;[/CODE]Regards