Create a new file and try these (one after another of course) :
$resFile = fopen('./testfile.txt', 'w');
fputs($resFile, 'This is a simple test');
fclose($resFile);
$resFile = fopen('./testfile.txt', 'w');
flock($log, LOCK_EX);
fputs($resFile, 'This is a simple test');
flock($log, LOCK_UN);
fclose($resFile);
$resFile = fopen('./testfile.txt', 'w');
flock($log, LOCK_EX);
$dtstamp = '(date)';
$email = '(email)';
$article = '(article)';
$strString = $dtstamp ."|" .$email ."|" .$article;
fputs($resFile, $strString);
flock($log, LOCK_UN);
fclose($resFile);
If there is any problems with file, you will see it...
So try these things (separately) and tell me it they work...