0
votes
0answers
26 views

Exim forward file piping to php - error 127, unable to exec or command does not exist?

I'm trying to pipe all emails going to hi@mydomain.com, to a script. I'm using exim, and a .forward file. Here is my forward file, in the 'hi' directory: Exim filter pipe ...
1
vote
1answer
41 views

Image pipe from php to ffmpeg

I'm tring to feed FFMpeg whith an image sequence through PHP in order to get a video out of it. I'm using this shell command to read from a text file the image filenames: cat $(cat " . ...
2
votes
3answers
68 views

How to check if a received email is legit?

I'm developing a system which gets emails from PIPE, verify if the email address which from the email was sent is in the client database, and write it into the database. The problem is that I don't ...
0
votes
3answers
61 views

php with popen pipe ssh and stdin

I try to communicate two machines by ssh and pipe to get a message from one to another. The second reads the message form the first machine with sdtin and writing in text file. I have a machine ...
0
votes
1answer
55 views

PHP proc_open pipe anomaly (Win7/Apache2.2)

The following code works when executed from the command prompt in windows 7 running "php test.php" (PHP 5) - output is simply "test". But when the php (v5) is run over any browser running on a ...
0
votes
1answer
42 views

Pipe character on location header doesn't work

I´m trying to redirect URL using this: $url = "Location: http://mydomain.com/#!Mypage|000"; header ($url); But the result is a redirection to : http://mydomain.com/#!Mypage%7C000 The problem is ...
0
votes
1answer
79 views

Email piping not working for PHP script. Local delivery failed error

In cPanel I have piped the following to my script: alerts@XXX.com to |/home/XXX/public_html/client/inc/msg/mailReader.php I get the following email returned: This message was created ...
2
votes
1answer
100 views

Creating a Log Detector: Running Shell Scripts from PHP not working. Processes keep running OR broken pipe

My aim is to create a log file reader using PHP and Shell scripting. I plan to run the script at intervals in order to detect the last time a particular entry shows up in the logfile. The way it ...
2
votes
4answers
243 views

How to use named pipes in PHP between different functions or even different processes without fork?

I want to write an Ajax web application, a game to be specific. Two web clients have to communicate with each other via the PHP server. My approach to solve this is to use Ajax between client and ...
1
vote
4answers
75 views

Break a special character in MySQL

I have a requirement where I need to check a pipe | in the database. If found I need to play around differently. Here how my db table looks like //Please check the | character in row 11 And if ...
3
votes
1answer
102 views

PHP if statement: use “OR” or ||? [duplicate]

Possible Duplicate: PHP - and / or keywords if($foo == 0 or $bar == 1 || $baz == 2) { ... } Is it better to use "or" or || and is there any significant difference between them?
1
vote
1answer
90 views

Pipe emails - how to send body, multipart/alternative [solved] / php preg_match_all returns 1 or empty array

Searching for the answer I found this script here However: It can send body of received email as plain text only. In order not to lose data (links) I need to send body in same format as it was ...
1
vote
0answers
96 views

How to save piped email as source (raw) in php?

I've setup my server (cpanel) to pipe email to a php script. The script is a very basic one that I found on a tutorial that saves the inbound emails as a text file. The script works fine, but I was ...
0
votes
0answers
74 views

email piping works, but it still returns an error

I am trying to pipe an email to a php script, in order to process the email automatically. I know I got the piping to work, because I receive an email send to me from the php script, but I also ...
3
votes
1answer
469 views

PHP - Reading line by line from STDIN

I want to do something like this: $ [mysql query that produce meny lines] | php parse_STDIN.php In parse_STDIN.php file I want to be able to parse my data line by line from stdin and do whatever I ...
-2
votes
3answers
50 views

how to produce the output for the next pipe in php in a bash shell?

I am writing a shell to process the web log. One operation is written in php and called in the bash shell, it accept a stdin from the previous pipe and produce the output to the next pipe. I am ...
0
votes
1answer
45 views

Continue reading from the console, after the offer to enter something [closed]

I run terminal. Write root@debian:/home/user# myprog all good >>> read ok root@debian:/home/user# After starting the program myprog brought "all good" and was expected to enter. After ...
2
votes
2answers
122 views

PHP hangs at uncompressing a GZipped file?

I am uncompressing a .gz-file and putting the output into tar with php. My code looks like $tar = proc_open('tar -xvf -', array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2 => ...
0
votes
1answer
112 views

Php sending commands to a background process

I am writing a web-service. The PHP processor should handover the processing to an executable file located on the server. On arrival of a request , the PHP should run the executable & take the ...
0
votes
1answer
79 views

Piping email to PHP - Missing actual email address

I have an email address that pipes all messages to a PHP script. I know how to parse the contents, but I can't find an actual email addresses anywhere in the "to" and "from" headers. Is that something ...
2
votes
2answers
143 views

PHP explain the pipe in error_reporting(E_ALL | E_STRICT);

Please could someone confirm how many parameters are being sent to error_reporting() in the code: error_reporting(E_ALL | E_STRICT); My assumption is that there is only one parameter which is the ...
2
votes
1answer
152 views

Share mercurial command server between multiple processes

I'm using Mercurial to create repositories based on other repositories (i.e. merging them together). This is done by a nice little webinterface using PHP on the server. Unfortunately, for some tasks ...
1
vote
1answer
253 views

smtp email class output is causing error on pipe.php

i'm trying to pipe incoming emails to a php script and respond to them from there im using a smtp mailing class and it's working fine now in piping as u probably know php script should not send ...
2
votes
2answers
318 views

pipe mail to PHP script : cant find the pip.php file

hi i'm trying to pipe incoming emails to php script i did step by step from my manual but when i send an email i get this error from my delivery system : A message that you sent could not be ...
0
votes
1answer
277 views

Explode and Pipe in a $_GET variable

I am passing some data using the URL and I'm trying to use a pipe to seperate the different parts of the data. For example, one of the pieces I'm trying to send is a course code such as ...
0
votes
1answer
138 views

Looking to pipe incoming mail with a script and grab contents and store them as variables

Users will send a text message/email to text@domain.com in the form of #### killed #### and we need to take the first #### and store it as a variable, and then take the second #### and store it as ...
0
votes
2answers
140 views

Test email piping locally

I'm using email piping to parse messages and handle them appropriately in my app. I'd like to figure out a way to test this locally on my Macbook Pro. I use MAMP for development. Any ideas how I can ...
0
votes
1answer
208 views

email to php - working with large attachments

Using this tutorial Use Email Piping to Save Email Attachments I'm on the way to making my own posterous type app - however, when I send large attachments (over 10k), they don't get uploaded? ...
0
votes
2answers
454 views

php regex to match string in pipe delimited text

This is an example line in the document I am processing: 2011-08-08|M|Misc Info|6PM|Away vs. First Words, Second String, Third|Other Info I would like to get everything between "Away vs." and ...
0
votes
3answers
2k views

cPanel pipe mail to PHP script [solved]

It took me a few hours but I finally figured out how to pipe mail to my PHP script with cPanel X3. The actual parsing script is just a test script that I setup which emails me when it's executed. ...
2
votes
3answers
547 views

Piping emails through cPanel and PHP

I know that there have been quite a few posts floating around on this subject but I am still stuck it seems. I have set cPanel up so that any emails that go to support@mydomain.com will be picked up ...
0
votes
2answers
102 views

Confusion Within an Alternation

Suppos that within a regex, if match one alternative from an alternation it stop right there even if still more alternatives left (there are no other tokens in the regex outside the alternation). ...
0
votes
1answer
287 views

Create directories and write files using PHP from a sendmail pipe to program

I have a script that reads emails (with attachments) from a pipe and I'm trying to save the attachment(s) to disk for further processing. I've cobbled together some code from a few sites and for the ...
1
vote
2answers
828 views

Parse email sent from Outlook piped to php

Using this tut: parse emails I was able to get email piping, and attachment/body parsing totally working....as long as the email is not sent from outlook. It executes perfectly from gmail, and ...
0
votes
1answer
189 views

php piping to a program ( get the vars) convert back to an email fomat with no headers etc

I can pipe to a program but how do I convert the email so the code can be emailed and read by email clients? I can email it but its full of other chars. How can i get it without all the extra messy ...
4
votes
2answers
239 views

PHP asynchronous reading (shell scripting)

I have a PHP TCP daemon which provides data to clients. One of the features is to get info from "tail -f messages" command. So I have to run this command asynchronously and in case of new data, send ...
3
votes
4answers
1k views

Email piping with php script

Hi' I want to forward all the emails(which are come to my inbox) to php script and retrieve email content and save it in a file. So do that I was add email forwarder with piping path correctly. ...
0
votes
1answer
601 views

Using PHP to save an inbound e-mail attachments to disk

I am looking to write a PHP script that I can pipe an email too. The script then extracts all attachments and saves them to a folder on the server, discarding the message. I have found many examples ...
0
votes
1answer
139 views

Watching a directory and redirecting to PHP

Greetings, I'm watching a postfix directory using iwatch. iwatch /home/vmail/eamorr/photos/new/ When a new email is sent, iwatch outputs a line such as: [11/Feb/2011 12:23:43] IN_CREATE ...
1
vote
1answer
303 views

PHP - preg_match - assign arbitrary value to a matched element

assuming we have this regex: preg_match('/\b(xbox|xbox360|360|pc|ps3|wii)\b/i' , $string, $matches); now, whenever the regex match for ex. one of the three xbox methods (xbox|xbox360|360), the ...
1
vote
3answers
2k views

POP3 email to MySQL database? What options do I have?

Ok..... basically what I'm trying to do is setup something that will handle all incoming mail on a certain POP3 email address, pass all the relevant data to a PHP script, which will then parse the ...
1
vote
3answers
213 views

Regex Pipe bar question in PHP

I have a line of text that looks like "...X...Y...", where X and Y are both either Ok, Empty, or Open. Using PHP, I'm trying to use preg_match() to figure out what each one is. $regex = ...
5
votes
1answer
790 views

Detect if stdin is a tty device (terminal) or pipe in PHP?

I wrote a php script. I want it show help message when called with standard input connected to a tty device (terminal) before reading and executing interactively, but dont show when called with a file ...
1
vote
1answer
756 views

Pipe dynamic PDF into Imagemagick and convert to PNG

I need to create thumbnails from dynamic (database driven) pdf's. I've used a variation of the script below in the past, but this doesn't seem to be working for me now (page just hangs). <?php ...
2
votes
1answer
1k views

How could I stop PHP from returning headers when executed from commandline?

This may be a ridiculous question, but it's been bothering me for a while. I have a mail forwarder piped to a PHP script, it receives perfectly, however I have the following error mailed back to me ...
1
vote
1answer
318 views

php extract image from piped email

This is an extension to a question which I asked some time ago. I am now interested in trying to get images out of an email piped to a php script. Where are they stored, or would they have to be ...
1
vote
1answer
753 views

PHP extracting body and attachments from piped email

I understand there are php IMAP functions to extract certain elements from an email stored in a mailbox. What I am trying to discover is whether this can translate to emails piped to a script. The ...
0
votes
2answers
222 views

port pipes all requests to a php file

how can I setup httpd.conf so that I can pipe all requests to that port go to a php file? I am trying to make a socket connection from action script to localhost in flash.
1
vote
1answer
559 views

Problems with pipe in PHP regular expression

I've been writing a plugin for Joomla that automatically processes HTML comments eg. {dropcap}B{/dropcap} and creates a drop cap style. I needed a way to pass on parameters to the plugin so therefore ...