in reply to Perl CGI-trouble in file uploading
How can we change the destination of the temporary file creation in CGI.pm?
Regarding this one detail, I suspect this is related to what you're looking for -- may not be needed if you've resolved the issue but info is still info:
#!/usr/bin/perl # Needed to avoid dependence on C:\TEMP being world read+write BEGIN { $TempFile::TMPDIRECTORY = './'; } use strict; use CGI;
|
|---|