I need to be able to use word to do some actions in my web site.
Ms word was recently installed but when I try to access it It just stucks the scripts and I get the following error msg.
CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers.
I'm just trying to see if I can open word
and using this script
<?php
$word=new COM("Word.Application") or die("Cannot start word for you");
print "Loaded word version ($word->Version)n";
$word->Quit();
print "Done ...........n";
?>
if for example I'll add some
print "begining of script";
befor the COM command it will executes but that will be the only output I'll get .
I've tryed looking at google for the answer but couldn't find any solutions for this.