Re: [PHP] Linux command in PHP

2004-05-12 Thread Curt Zirzow
* Thus wrote Mike Mapsnac ([EMAIL PROTECTED]):
> I have script  that basically process a file. If  something found in the 
> file, the script send email.
> 
> Today I tried to add another  option, that gives sound and send email.
> The script works ok when I run from  shell. But when I add the code to 
> cronjob, the email is send but NO SOUND. Any ideas what can cause such 
> problem?
> 
> # Below the code that start the xmms sound
> $alert = "/usr/bin/xmms /home/mike/Desktop/song1.mp3";
>
> `$alert';

This is an X problem, not php. xmms has no clue what :display to 
run xmms on.


Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Linux command in PHP

2004-05-12 Thread Jay Blanchard
[snip]
Today I tried to add another  option, that gives sound and send email.
The script works ok when I run from  shell. But when I add the code to 
cronjob, the email is send but NO SOUND. Any ideas what can cause such 
problem?

# Below the code that start the xmms sound
$alert = "/usr/bin/xmms /home/mike/Desktop/song1.mp3";
`$alert';
[/snip]

The problem is caused by bad code. See http://www.php.net/exec

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php