Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Writing Files Outside of My CGI-BIN

by tachyon (Chancellor)
on Mar 23, 2003 at 23:22 UTC ( [id://245334]=note: print w/replies, xml ) Need Help??


in reply to Re: Writing Files Outside of My CGI-BIN
in thread Writing Files Outside of My CGI-BIN

Actually the default user now tends to be 'apache' but of course the logic is correct. $! will reveal the error if it fails (usually Permission Denied).

#!/usr/bin/perl my $file = '/path/to/some/file'; open FILE, ">$file" or die_nice( "Could not open $file, Reason $!\n" ) +; print FILE "Woo-hoo!"; close FILE; print header(), "<h2>Wrote $file OK</h2>"; sub die_nice( print header(), shift; exit } sub header { return "Content-type: text/html\n\n" }
cheers

tachyon

s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-19 19:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found