ID:               25759
 Updated by:       [EMAIL PROTECTED]
 Reported By:      david dot nicholls at camden dot gov dot uk
-Status:           Open
+Status:           Feedback
 Bug Type:         COM related
 Operating System: Windows 2000
 PHP Version:      5CVS-2003-10-06 (dev)
 New Comment:

Try it with exception handlers: 

try {
  $comUsers = new COM($acctStr);
}
catch (exception $e) {
  print_r($e);
}


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

[2003-10-06 09:26:02] david dot nicholls at camden dot gov dot uk

Description:
------------
Following on from bug 25732 I am trying PHP5-dev from CVS

Code that worked previously under 4.3.3 now fails silently

error_reporting = E_ALL is set

Reproduce code:
---------------
$acctDomain = "Camden";
echo "Making COM connection using ADSI\n\r";
$acctStr = "WinNT://".$acctDomain;
echo "$acctStr\n\r";
$comUsers = new COM($acctStr);
echo "new COM Sucessful";

Expected result:
----------------
'new COM Sucessful' to be printed at console or an error code

Actual result:
--------------
Nothing, just brings back command promt


C:\Inetpub\wwwroot\ntadmin>php comtest.php
Content-type: text/html
X-Powered-By: PHP/5.0.0b2-dev

Making COM connection using ADSI
WinNT://Camden

C:\Inetpub\wwwroot\ntadmin>


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


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

Reply via email to