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

#!/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" }
poj

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
    Much better. Solved the rights issue. In Anonymous Authentication switched from "Specific User" to "Application pool identity". Thanks all!!!