View Single Post
  #6  
Old 07-02-2012, 01:53 AM
NiteWave NiteWave is offline
LiteSpeed Staff
 
Join Date: Sep 2009
Posts: 2,218
for
Quote:
open(F,">$c->{htdocs_tmp_dir}/$sid.html");
print F $str;
close F;
you add a few lines, e.g.,
Quote:
open(F,">$c->{htdocs_tmp_dir}/$sid.html");
print F $str;
close F;
open(F,">$c->{htdocs_tmp_dir}/test.html");
print F $str;
close F;
then after upload, check if test.html exists, and verify its permission by
ls -l test.html
Reply With Quote