DCOM is Distributed COM. its COM, but allows you to run objects off another machine. Which is what you are doing.
For resolution..refer to <A HREF="http://www.phpbuilder.com/mail/php-windows/2001011/0098.php">THIS</A> Mail Archive message..
Dimitar Sarafov wrote:
How can I run COM object from remote server?
$word=new COM("word.application", "ServerName") or die("Cannot start word for you");
print "Loaded word version ($word->Version)\n";
$word->visible =1 ;
//$word->Documents->Open("test.html", 0, 0, 0, '', '', 0, '', '', 7, 'Windows-1251');
$word->Documents[1]->SaveAs("name", 0);
$word->Quit();
the output is:
Warning: DCOM is disabled in D:\path....\scriptname.php on line 6
Cannot start word for you
what is "DCOM" ???