[Haskell-cafe] Server hosting
Steffen Schuldenzucker
sschuldenzucker at uni-bonn.de
Fri May 6 20:18:31 CEST 2011
On 05/06/2011 08:07 PM, Andrew Coppin wrote:
> [...]
> I currently have a website, but it supports only CGI *scripts* (i.e.,
> Perl or PHP). It does not support arbitrary CGI *binaries*, which is
> what I'd want for Haskell. In fact, I don't have control over the web
> server at all; I just put content on there.
I don't really expect this to work, but...
<?php
$argsstr = ...
$ok = 0
passthru( './my_real_cgi '.$argsstr, $ok );
exit( $ok );
?>
More information about the Haskell-Cafe
mailing list