I have several scripts that use COM to do miscellaneous reports through Excel and Word. They worked fine up until yesterday. Now for some odd reason, the only way they will work is through the debugging engine in Zend Studio or by running it through a command prompt. They won't work when pulling up the script in a web browser.
The only thing I have done lately is install Perl and that gets me wondering if installing it has messed with my IIS permissions, but I can't seem to find anything that points to that. Any thoughts?
[UPDATE]
Okay, so I've done a system restore to rollback to before installing PERL. Still no luck. A little more information though...when debugging in Zend Studio, still no problems. When I start it in the browser, the browser goes blank, and doesn't throw an error, however, MS Word is not visible--BUT IT IS running in task manager. Here's the simplest code I could try with it
<?php
$word = new COM("Word.Application");
$word->Visible = true;
?>
MS Word pops up when debugging and in command line mode, but nothing through browser.