> > > > Yes the user cgi script is running have permissions to execute that > > script....... > > > > Infact with the above mentioned methods I am able to execute the script > > very well but my cgi script is waiting until it is getting finished, > which I > > dont want. > > > > I only want my cgi script to call the external perl script and exit. > > You're going to need to write a shell script that calls your program like > so: > > CGI: > system('/path/to/start_program.sh') > > SH: > perl /path/to/perl_script.pl & > > -- >
Doesnt seem to work :( Thanks