It's known issue...
(B
(B--
(BYasuo Ohgaki
(B
(BAdam Voigt wrote:
(B> Figured it out, turns out I had actually bothered to copy the php.ini
(B> from the recommended on the server it didn't work on, if I removed the
(B> config file (forcing PHP to use the default options), it worked fine,
(
Figured it out, turns out I had actually bothered to copy the php.ini
from the recommended on the server it didn't work on, if I removed the
config file (forcing PHP to use the default options), it worked fine,
I narrowed the problem down to the output_buffering setting, changing
it from 4096 (prob
You are correct, I tried it on an identical system and it worked.
But it still refuses to work on my other system. They both
run RH8 with PHP 4.2.3, the only difference (that I can see)
is that I'm connecting to the box it doesn't work on through SSH,
I don't have a third box from which to test thi
Running your code here gives me:
8:27am thinkpad:~> ./foo
Attach code? > 12345
12345
8:27am thinkpad:~>
Seems to work fine.
-Rasmus
On 31 Oct 2002, Adam Voigt wrote:
> Now I have this, same behavior as before, maybe I'm using the flush
> function incorrectly but the manual seems to sugge
Now I have this, same behavior as before, maybe I'm using the flush
function incorrectly but the manual seems to suggest this
is the way to use it:
#!/usr/local/php_4.2.3/bin/php -q
";
flush();
$f = fopen("php://stdin","r");
$data = fread($f,5);
fclose($f);
echo "\n\n$data\n\n";
?>
On Thu, 2
flush()
On 31 Oct 2002, Adam Voigt wrote:
> Is this normal?
> I have:
>
> #!/usr/local/php_4.2.3/bin/php -q
>
> error_reporting(E_ALL);
>
> echo "\n\nAttach code? > ";
>
> $f = fopen("php://stdin","r");
> $data = fread($f,5);
> fclose($f);
>
> echo "\n\n$data\n\n";
>
> ?>
>
> And it refuses to e
Is this normal?
I have:
#!/usr/local/php_4.2.3/bin/php -q
";
$f = fopen("php://stdin","r");
$data = fread($f,5);
fclose($f);
echo "\n\n$data\n\n";
?>
And it refuses to echo "Attach code?" until after
I hit 5 keys on the console and hit enter, when infact
it is supposed to be a prompt for the