Question:
Can someone help me install an PHP script? I get an error. Read and you'll see the error it says it....?
mark m
2008-12-02 10:58:05 UTC
It gives the same error over 1000 times if no hundreds of thousands

Warning: fopen(online_users.txt) [function.fopen]: failed to open stream: Permission denied in /home/smsultra/public_html/includes/functions.php on line 609

Warning: fclose(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 610

Warning: fopen(online_users.txt) [function.fopen]: failed to open stream: No such file or directory in /home/smsultra/public_html/includes/functions.php on line 618

Warning: flock() expects parameter 1 to be resource, boolean given in /home/smsultra/public_html/includes/functions.php on line 619

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 621

Warning: fgets(): supplied argument is not a valid stream resource in /home/smsultra/public_html/includes/functions.php on line 623

Warning: feof(): supplied
Three answers:
gonecaca
2008-12-02 11:01:36 UTC
you need to give your script permission access to the folder where the files are stored
anonymous
2008-12-02 22:26:43 UTC
fopen(online_users.txt) [function.fopen]: failed to open stream: Permission denied in /home/smsultra/public_html/includes/func... on line 609



From here the other errors cascase. If you cannot open the file and get a valid file_resource you cannot close it, etc, etc.



Give permissions to the directory tree / path in which the file is placed.



chmod 755 or 775 (you need the read and write option enabled)
anonymous
2008-12-02 19:02:28 UTC
This pile of errors doesn't tell anyone much. Apparently, you're trying to open a file, and the script can't find it in the location your script says it is.



But without seeing the code, I doubt we'll be able to help. or at least what the script is for.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...