in reply to Re^2: Perl CGI with SQLite Windows and IIS
in thread Perl CGI with SQLite Windows and IIS
Write a small test program
poj#!/usr/bin/perl use strict; use warnings; use CGI qw(:standard); use CGI::Carp 'fatalsToBrowser'; my $dir = "c:/inetpub/wwwroot/data"; print header('text/plain'); if ( open my $fh,'>',$dir.'/write.txt' ){ print "OK : write.txt created in $dir"; close $fh; } else { print "ERROR : No write permission to $dir" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl CGI with SQLite Windows and IIS
by RedJeep (Sexton) on Mar 19, 2018 at 22:46 UTC |