下面的代碼來運行我用下面的代碼轉換的PPT IMG如何在的cPanel
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<?php
$ppApp = new COM("PowerPoint.Application");
$ppApp->Visible = True;
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"])));
$FileName = "MyPP";
$ppName = "MySlides.ppt";
//*** Open Document ***//
$ppApp->Presentations->Open(realpath($ppName));
//*** Save Document ***//
$ppApp->ActivePresentation->SaveAs($strPath."/".$FileName,17); //'*** 18=PNG, 19=BMP **'
//$ppApp->ActivePresentation->SaveAs(realpath($FileName),17);
$ppApp->Quit;
$ppApp = null;
?>
PowerPoint Created to Folder <b><?php $FileName?></b>
</body>
</html>
其工作只在HTTP://本地主機,但如果我在Web服務器使用相同的代碼(cPanel託管位置)的位置顯示以下錯誤。
致命錯誤:類 'COM' 在/home/domainname/public_html/index.php沒有發現在第9行
cpanel howted location – Alex