PHP Fatal Error: Failed to create COM object: Server Execution Failed

3.6k Views Asked by At

I am using PHP to create a COM object to read and write to an excel file but when I run this script it gives me this error:

Uncaught exception 'com_exception' with message 'Failed to create COM object 'excel.application':Access is denied.

Then I followed these instructions and now I'm getting the following error message:

PHP Fatal Error: Uncaught exception 'com_exception' with message 'Failed to create COM object `excel.application':Sever execution failed

<?php
 $excel = new COM("excel.application") or die ("Cannot open Excel");
?>

Does any one have an explanation for this error message or solutions?

0

There are 0 best solutions below