I have created a pipe script in CPanel and have placed the hashbang:#!/usr/bin/php -q at the beginning of my script. The script does run and places a log of the email into a table in my DB as it should.

But...It sends an email back claiming that the email did not go through and appears as...

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

 pipe to |/home/xxxxx/xxxxx.php
   generated by support@xxxxxxx.net

The following text was generated during the delivery attempt:

------ pipe to |/home/xxxxxx/xxxx.php
      generated by support@xxxxxxxxx.net ------

PHP Deprecated:  Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and greater in Unknown on line 0
<br />
<b>Deprecated</b>:  Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and greater in <b>Unknown</b> on line <b>0</b><br />

I have removed all private information but nothing that is relevant to my issue.

What could be my issue?

link|improve this question

65% accept rate
feedback

2 Answers

up vote 1 down vote accepted

How did you add the pipe in CPanel?

If you follow this guide: http://www.phpshare.org/articles/Piping-Incoming-Mail-with-PHP.html

It says to add the following into CPanel:

|php -q /home/phpshare/public_html/handler.php

Did you ALSO include the -q flag in CPanel as that guide describes?

link|improve this answer
feedback

I think you must have upgraded your servers php version recently i.e 5.2.x to 5.3.

PHP 5.3 doesn't support magic_quotes_gpc.

So comment out or remove that line in php.ini. On cPanel server the path of php.ini is /usr/local/lib/php.ini

For commenting you should use ";" without quotes.

; magic_quotes_gpc = on

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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