Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Problems with perl!

  • 04-02-2006 12:10am
    #1
    Registered Users, Registered Users 2 Posts: 4,415 ✭✭✭


    So Im setting up an Imageboard and the script is written in Perl, so I set everything up (btw this imageboard doesnt need a SQL based Database or anything) and I set the appropriate permissions and stuff but I get this error:

    Software error:
    Couldn't write to file "index.html" at wakautils.pl line 944.
    For help, please send mail to the webmaster, giving this error message and the time and date of the error.

    Any ideas on how to fix this. The Hash bang is perfect too.


Comments

  • Closed Accounts Posts: 304 ✭✭Zaltais


    Looks distinctly like a permissions problem. Can you change line 944 from
    open FILE,">$file" or die "Couldn't write to file \"$file\"";
    

    to
    open FILE,">$file" or die "Couldn't write to file \"$file\" : $!";
    

    And post the permissions of 'index.html' too...


Advertisement