Posted by Jerry Stuckle on 04/16/06 19:19
inetquestion wrote:
> I've narrowed the code to a problem with php/iplanet on linux. When I
> run the following code from the command line "$status" comes back as
> "0" as it should. However when I hit it with a browser, status is "-1".
> Im guessing it has something to do with the way iplanet is invoking
> php, or how php was compiled. Oddly enough I have the same setup
> running on windows with php 4&5 and it always returns "0". Lucky for me
> I suppose... Anyone know how to fix this? Is it as simple as
> recompiling with additional options?
>
> You can view my results here: http://www.69camaro.us/test/go.php
>
> OS: fedora C4
> PHP: 4.4.2
> Iplanet: 6.1 sp5
>
> <?php
>
> $command='echo "hello world"';
> $results = array();
> $Output = exec($command, $results, $status);
>
> print " Output: $Output<br><br>";
> print "command: $command <br>";
> print "results: $results <br>";
> print " status: $status <br>";
>
> ?>
>
I'd suggest it's probably a permissions problem. Anything in your error logs?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|