Jorge,
What parameters are you using in exec()? I have got problems when I pass parameters to exec() as a variable.
That is, I build the string that I want exec() (or system()) to execute, and then for example (simplified)
$application = '"c:\program files\windows media player\mplayer2.exe"';
exec('$appliaction');
That won't work.. however this will:
exec('"c:\program files\windows media player\mplayer2.exe"');
Why why why why why? This is driving me nutz! :-)
Any help appreciated!
/Jocke