in reply to Re: Re: Uploading files to server
in thread Uploading files to server
Last, but not less important, check the permissions. Maybe you shouldn't be able to write.#!/usr/local/bin/perl -w use CGI; use strict; my $q = new CGI; print $q->header; print $q->start_html("Example"); my $file = $q->param('file'); my $up = $q->upload("$file"); while (<$up>) { print; } exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Uploading files to server
by Calilo (Initiate) on Oct 15, 2001 at 04:37 UTC |