in reply to Re: File Can Not Write
in thread File Can Not Write

Aloha, I didn't mean for this to get posted without the explanation I had but when I hit update it published accidently. I am still trying to find the best way to paste my code. I've read where I have to use
so it will look half way decent. I use BBEdit to write scripts. I get no error from the script not even the bottom line prints to the screen. JWG

Replies are listed 'Best First'.
Re^3: File Can Not Write
by polettix (Vicar) on May 06, 2005 at 22:55 UTC
    I use BBEdit to write scripts.
    Begin to use code tags instead :)
    not even the bottom line prints to the screen
    I don't get the full meaning of this sentence, but I understand that you don't see the "I was Here!" message, correct? If so, your program is exiting at the die statement, but you don't see it in the browser - go look in the logs. If you want error messages be displayed in the browser, use CGI::Carp:
    use CGI::Carp qw(fatalsToBrowser);
    Now all fatal messages (triggered by die) will be output to the browser as well as the log file.

    Flavio (perl -e 'print(scalar(reverse("\nti.xittelop\@oivalf")))')

    Don't fool yourself.
Re^3: File Can Not Write
by stonecolddevin (Parson) on May 06, 2005 at 23:57 UTC
    Then edit your original node...
    meh.