Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: Perl CGI with SQLite Windows and IIS

by RedJeep (Sexton)
on Mar 19, 2018 at 20:11 UTC ( [id://1211266]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl CGI with SQLite Windows and IIS
in thread Perl CGI with SQLite Windows and IIS

@huck,
Thanks for the reply. I checked and the database file, sample.db, currently has full control for user IIS_IUSERS. I appreciate the help! Any other ideas on what to check?
  • Comment on Re^2: Perl CGI with SQLite Windows and IIS

Replies are listed 'Best First'.
Re^3: Perl CGI with SQLite Windows and IIS
by poj (Abbot) on Mar 19, 2018 at 21:25 UTC

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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1211266]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-19 07:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found