badnewsday and anyone else who is getting permission errors
Change line 81 of index.php to
Then create a directory called "output" and ensure it is writable from PHP (chmod to 0777 on most shared hosts.)
Regarding 0777, it's almost a non-issue. On a dedicated server, you know what's on the server. On a VPS, same thing. Yes, something you uploaded can write to files on your own server. On a shared plan, any legitimate shared host is going to have some sort of open_basedir protection on to stop other people from writing their own files to your 0777 directory.
Change line 81 of index.php to
Code:
file_put_contents("output/".$time.".csv.", $csv);
Then create a directory called "output" and ensure it is writable from PHP (chmod to 0777 on most shared hosts.)
Regarding 0777, it's almost a non-issue. On a dedicated server, you know what's on the server. On a VPS, same thing. Yes, something you uploaded can write to files on your own server. On a shared plan, any legitimate shared host is going to have some sort of open_basedir protection on to stop other people from writing their own files to your 0777 directory.