Never mind.
After pulling my hair out for a few days, we finally got formencoder to work on 2003 Windows IIS 6.0 (using PHP 5.2.1). Our server administrator did a great job setting up a cgi-bin for executables and setting proper permissions.
Looks like the $SOCKET_FILTERS paths needed to be set properly (absolute paths with back slashes instead of forward slashes - $REAL_DOCUMENT_ROOT caused errors) and we had to use "httpencode" instead of the normal "encode" filter.
$SOCKET_FILTERS = array(
"httpencode"=>array("site"=>"www.yoursite.com",
"port"=>80,
"path"=>"/cgi-bin/fmencoder.exe",
"params"=>array(array("name"=>"key",
"file"=>"C:\\absolute\\path\\to\\cgi-bin\\pubkey.txt"))),


Reply With Quote
Bookmarks