Script URL: mboard
Version of script:13
Hosting company:junkyard
URL of phpinfo.php:http://www.wsu.edu/~converse/php/mboard/mboard.php
URL of session_test.php:http://www.wsu.edu/~converse/php/mboard/mboard.php?
What terms did you try when SEARCHING for a solution:
Write your message below:
I keep getting the error message:
Error locking a file, please try again later!Error locking a file
I pretty sure my permissions are okay, but I can't figure out what else to try.
Error locking a file
Can't be of any help unless you upload phpinfo file to your server. You will find it in the "READ THIS BEFORE POSTING A NEW QUESTION!!" topic.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Seems like your OS doesn't support PHP "flock" command. Try editing mboard.php in a plain text editor and change all instances of to and delete all this code:
Code: Select all
if (flock($fp, LOCK_EX)) {
Code: Select all
if (1) {
Code: Select all
flock($fp, LOCK_UN);
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools