|
Posted by d on 04/16/06 21:01
"Jerry Stuckle" <jstucklex@attglobal.net> wrote in message
news:MMadneuiU8Wt_d_ZnZ2dnUVZ_s-dnZ2d@comcast.com...
>d wrote:
>> "inetquestion" <inetquestion@hotmail.com> wrote in message
>> news:1145162738.962086.291750@v46g2000cwv.googlegroups.com...
>>
>>>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>";
>>>
>>>?>
>>
>>
>> There is no reason to use eval. It's evil.
>>
>> "If eval is the answer, you're asking the wrong question"
>
> I don't see anyone using eval here.
that's what I get when I post after having a few beers :)
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstucklex@attglobal.net
> ==================
Navigation:
[Reply to this message]
|