-I have written an application in flash5 that sits on our server. The application uses php to write to some text files on the server. On one particular computer in our office the php fails to write to a text file. The script is read (I know because a variable is sent back to flash), but none of the new information appears in the text file.
any ideas? script:
if ($skip == "false"):
if ($previous == "false"):
$fc=fopen($countfile, "r");
$num=fread($fc,filesize($countfile));
fclose($fc);
$fc=fopen($countfile, "w");
fwrite ($fc,"&".$filename."=true&\n".$num);
fclose($fc);
endif;
else: //etc