I have a simple script written to process received email. Here are the tested scenarios:

A. Script function is to send an email indicating an email was received at piped address.

-tested by browser - Success

-tested by CLI - Success

-tested by piping - Success

B. Script function is to parse and write files to folder, AND send email indicating email was received at piped address

-tested by browser - Files written and email sent.

-tested by CLI - Files written and email sent.

-tested by piping - Files NOT written, BUT email is sent.

I have simplified the script to the basic function of reading and writing the piped message. I suspect the issue is a permission problem, but I can not find any supporting evidence.

I am not fluent in CLI, but can perform some task. I am not sure where to look for log files for the piped scenario.

Piping works just fine in all tested scenarios. Here is the simplified code that fails when invoked by piping:

#!/usr/bin/php -q
<?php
/* Read the message from STDIN */
$fd = fopen("php://stdin", "r"); 
$email = ""; // This will be the variable holding the data.
while (!feof($fd)) {
$email .= fread($fd, 1024);
}
fclose($fd);
/* Saves the data into a file */
$fdw = fopen("/my/folder/mail.txt", "w");
fwrite($fdw, $email);
fclose($fdw);
/* Script End */

Thanks for any help.

Modified code to:

#!/usr/bin/php -q
<?php
/* Read the message from STDIN */
$email = file_get_contents('php://stdin');

/* Saves the data into a file */
$fdw = fopen("/Volumes/Cobra/Sites/email/mail.txt", "w+");
if (! $fdw) {
    error_log("Unable to open mail.txt for output.", 1, "myemail@mydomain.com", "From: admin@mydomain.com");
} else {
    fwrite($fdw, $email);
}

fclose($fdw);

/* Script End */

Error message was emailed. Now what? What user does the pipe-invoked script run as?

link|improve this question
1  
Enable error logging and log all errors including warnings and notices. Then check the error log after you've invoked the pipe. It shows you the error(s) you have. If you don't understand the error messages, add them to your question and ask what you don't understand. php.net/error-reporting – hakre Nov 7 '11 at 16:46
Please forgive my ignorance... I have error reporting on, but my error does not happen when I test this through a browser. I have an Xserve running Snow Leopard Server. The only log files I see are for web sites. Is there a php log somewhere that I can view? – vmaxheli Nov 7 '11 at 17:39
Yes PHP has it's own logging - if you configure PHP error logging (see the link in my prev comment, scroll a bit, all php ini settings related to error handling incl. logging are on that page). Configure it, then you can check that error log. – hakre Nov 7 '11 at 17:40
feedback

1 Answer

up vote 0 down vote accepted

If it's a permissions problem, then either fopen will return FALSE on failure. You're not checking for that case, and assumes everything worked. Try

$fd = fopen('php://stdin', 'r');
if (!$fd) {
   die("Unable to open stdin for input");
}

$fdw = fopen(...);
if (!$fdw) {
   die("Unable to open mail.txt for output");
}

If neither die() triggers, then it's not a permissions issue.

As one stylistic thing, unless your real code is much more complicated and does want to process stdin in chunks, you could just do:

$email = file_get_contents('php://stdin');
link|improve this answer
I added the die() condition. This is where I am lost... where do I look for the message "Unable to open mail.txt for output."? – vmaxheli Nov 7 '11 at 17:34
cron jobs email their output to the account that they ran under. You could use something like error_log('...') to have PHP write out the message as well, but then you're in the same boat - if the error log file can't be written to, you won't get any messages. – Marc B Nov 7 '11 at 17:37
If the error log can't be written, configure it to syslog (temporarily). php.net/manual/en/function.error-log.php - see destination parameter. – hakre Nov 7 '11 at 17:42
modified original post. – vmaxheli Nov 7 '11 at 19:22
there's getmyuid(), getmygid(), get_current_user(), etc... – Marc B Nov 7 '11 at 19:24
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.