PROBLEM FIXED
We fixed this problem, by putting
Like so:
#!/usr/local/bin/php -q<?php
I'm setting up an email piping system on a cPanel server.
The code I'm using works on one server (also cPanel), but not the other.
#!/usr/local/bin/php -q
<?php
// disable the errors
ini_set('error_reporting', 0);
ini_set('display_errors', 'Off');
ini_set('log_errors', 'Off');
// load files
require_once('classes/support.class.php');
require_once('classes/config.class.php');
// start classes
$support = new support();
$config = new config();
// start database
$sql = new mysqli(config::$db['host'],config::$db['user'],config::$db['pass'],config::$db['db']);
// start output buffering
ob_start();
// security fix
$raw_email = "";
$email = array();
// get the email
if($fd = @fopen("php://stdin",'r')){
while(!feof($fd)){
$raw_email .= fread( $fd, 1024 );
}
// close
@fclose($fd);
}else{
// we can't open it, so stop execution!
exit();
}
The error generated is
pipe to |/home/__/public_html/support/pipe.php
generated by pipe@__.co.uk
local delivery failed
Email piping works correctly on the same server with a different script.
Can anyone help me?
\r\nand that was causing a problem. Alternatively, you could trydos2unixto convert the newlines to\n– drew010 Dec 29 '11 at 21:59