Hello,
I have a error which shouldn´t be occuring 😕
The snippet of code is :
[code=php]
$path = "/home/com567b/$Db_work_dir/";
$orig_file = $path.'original.txt';
$work_file = $path.'work.txt';
$input_art = file_get_contents($work_file);
[/code]
The error:
Warning: file_get_contents(/home/com567b/inline_skates/work.txt): failed to open stream: No such file or directory in /home/com567b/public_html/auto_build_theos.php on line 255
When I look at my server with FileZilla, my workfile is most definitely there!
/projects/inline_skates/work.txt
Can anyone suggest what I can do here ?
Can I perform another check to display if the program can see the file ?
Could it be a permission thing ?
Permissions are 777 on this file and the directory.
Thanks for any ideas 🙂
Dave