Possum wrote:I have a counter php script that saves its count to "counter.dat" on the server. I have not been able to get the script to run. I was worried that the server may not allow php to save to this file.
Ah, ok
Do you have writing access to this script? You may have to set it manually yourself..
// Set the writeproperties
chmod($newfpath, 0755);
And of course.. If you are trying to write to the file, you might have to make sure it exists.
If you keep having trouble, post the section that performs the write, and the paths it is trying to write to.