fastCGI work with perl syswrite???
Michael Smith (mjs@cursci.co.uk)
Tue, 02 Jul 1996 10:40:07 +0100
Message-Id: <31D8EE77.4BCE4050@cursci.co.uk>
Date: Tue, 02 Jul 1996 10:40:07 +0100
From: Michael Smith <mjs@cursci.co.uk>
To: fastcgi-developers@openmarket.com
Subject: fastCGI work with perl syswrite???
Further to my previous message, can one use commands like syswrite in
perl?
If I have the following script
...
print STDOUT "Content-type: text/html\n\nTesting\n";
$temp="hellooooooooooooooooooooooooooo";
syswrite(STDOUT,$temp,10);
print STDOUT "end test\n";
Then on output I only get
Testing
end test
whereas with ordinary perl (& no fastCGI I get"
Testing
hellooooooend test
This suggests to me that syswrite is not compatible with fastCGI; but
hopefully I am wrong!
Any comments anyone please?
Despite my difficulties, I am a big fan of the fastCGI project :)
Cheers dudes
Mike