email piping : problem in finding the path of script

oblivion

New member
Joined
Apr 20, 2012
Messages
3
hi im trying to find the path of my pipe.php script to setup email piping

according to one of the errors that i got this is the address of my public_html


Code:
Deprecated: Function eregi() is deprecated in /home/mif07ksilc/domains/site.com/public_html/class/phpmailer.php on line 1189

so i thought this must be the path and i did forward my email to


Code:
"|/home/mif07ksilc/domains/site.com/public_html/pipe.php"

but apparently it's not the path and email couldn't reach the destination

i've tried to use

Code:
"|/usr/local/bin/php -q /domains/site.com/public_html/pipe.php"
as someone suggested but it didn't work


is there a way to findout the correct path ?
 
Hello,

but apparently it's not the path and email couldn't reach the destination

What error do you get, and what is the destination?

"|/usr/local/bin/php -q /domains/site.com/public_html/pipe.php"

That's incorrect, I'd rather say. You should use there full path to your pipe.php

p.s. Try to Google it with a request "pipe.php site:directadmin.com" as this has been discussed here several times already.
 
Code:
"|/usr/local/bin/php -q /domains/site.com/public_html/pipe.php"
[..] is there a way to findout the correct path ?

Like zEitEr said, you should use the full path. Try adding /home/username/ before what you already have in the path, and it should work fine. Like this:
Code:
"|/usr/local/bin/php -q /home/mif07ksilc/domains/site.com/public_html/pipe.php"
 
Last edited:
Here is what I use correctly in DA.

Code:
"| /home/admin/domains/domain.com/public_html/interface/email/piping.php"
 
Back
Top