Check COM accesses. I have seen php crash if wrong values are passed to COM.
Hash out the COM code and see it the error occurs.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Yes, that's what I'd assume too. The problem *looks* like a memory leak
yet only affects one particular site which is why it's so strange. I did
some Googling but came up with little. The only other suspects I found
were related to information being passed to a COM object, and possibly
if you'r
On 2/14/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi guys,
>
> Does anyone know or got an idea of how to access the user accounts of
> Active Directory using PHP?
You can use adLDAP:
http://adldap.sourceforge.net/
..."adLDAP is a PHP class that provides LDAP authentication with
Active Dire
I haven't touched the com code so I'm not even sure where to look
"George Cherian" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Check COM accesses. I have seen php crash if wrong values are passed to
COM. Hash out the COM code and see it the error occurs.
--
PHP Windows M
The easiest way I've found, if you just want to verify their username &
password, you can do this:
$ds=ldap_connect("ldap://yourdc.yourdomain.com";);
// Fix for Windows 2003 AD
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
if ($ds) {
[EMAIL PR
I'm trying to create a thumbnail from a jpeg file but the script stops when it
encounters the function 'imagecreatefromjpeg'. I have 5.1.2 php loaded.
Below is the additional testing code and output which help me find the function
causing the problem. Any input would be helpful!
Thanks
Ted
COD
Howdy,
I have PHP 4.3.7 with https and ftps streams enabled via an alternate
php4ts.dll, Apache 1.3.31 with mod_ssl, and Openssl 0.9.7d working on Win
2000 desktop. However the same exe's don't seem to work on a Win 2003
server as I get errors that don't make any sense given my successful
experie
Do you have the php_gd2.dll module loading? In your php.ini file under
the modules, uncomment the line out then give it a try. Cheers.
Armando
Ted Lorenz wrote:
I'm trying to create a thumbnail from a jpeg file but the script stops when it
encounters the function 'imagecreatefromjpeg'. I have
Hi guys,
Got LDAP working and I am able to authenticate against Active Directory.
But now, does anyone now how to retrieve the username and password that
the user uses to logon to their PC so as to now authenticate for the
application against Active Directory?
Kind Regards,
Dale
--
PHP Windows