
07-02-2012, 01:53 AM
|
|
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
|