ID:          49035
 Updated by:  [email protected]
 Reported By: parviz_ahmadi at yahoo dot com
-Status:      Open
+Status:      Bogus
 Bug Type:    COM related
 PHP Version: 5.2.10
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




Previous Comments:
------------------------------------------------------------------------

[2009-07-23 15:30:28] parviz_ahmadi at yahoo dot com

Description:
------------
Dear Sir/ Madam,
what is solution in PHP5 if There is no COM extension in PHP 5 for
creating object below :
$browser = new COM("InternetExplorer.Application");
Also my host operating system in linux and php 5.2.9 .
Thank you.
Parviz.

Reproduce code:
---------------
---
<?php
set_time_limit(2000) ;
$browser = new COM("InternetExplorer.Application") or die("Unable to
instantiate COM");
$handle = $browser->HWND;
$browser->Visible = true;
$browser->Fullscreen = true;
$browser->Navigate("http://www.libgd.org";);

/* Still working? */
while ($browser->Busy) {
    com_message_pump(4000);
}
$im = imagegrabwindow($handle, 0);
$browser->Quit();
imagepng($im, "iesnap.png");
imagedestroy($im);
?> ---


Actual result:
--------------
Fatal error: Class 'COM' not found in ***/test.php on line 3



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=49035&edit=1

Reply via email to