Re: [EMAIL PROTECTED] Writing a cgi script for downloading

2007-07-09 Thread Carlos Eduardo Maiolino
See if the directory of scripts have a permission "ExecCGI" in the Options Directive. Ex: Options +ExecCGI wrote: Do you have sed installed? if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test

Re: [EMAIL PROTECTED] Writing a cgi script for downloading

2007-07-06 Thread Hamilton Vera
Do you have sed installed? if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test "X$deplibs_check_method" = "Xnone"; then $echo "*** Warning: inter-library dependencies are not sup

[EMAIL PROTECTED] Writing a cgi script for downloading

2007-07-06 Thread Tommy Nordgren
When users click a download link on my website, I want to display a form for registering Contact Info for the user in a database, and then when the user confirms the form, start downloading a (Binary) file. How can I do this with Apache, and a CGI script in Perl or Python? --