RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread BigDog
Can u not get it from php.net...the zip file that contains all the
extensions and dlls...not the installer...

That should have the one that you need.

I am still thinking it is an issue with the path...it took me about a
week to get it all working...


On Tue, 2002-11-12 at 23:08, Nick Richardson wrote:
> Still having problems getting mcrypt to work under Windows.  But I think
> I have narrowed it down to me not having the correct version of
> php_mcrypt.dll.
> 
> I downloaded the source for PHP and attempted to compile this myself,
> but can not get it to work.  If anyone has any information about where I
> can get a current php_mcrypt.dll or how I can compile it from the php
> source (and donÿt say google, because I've been there already), please
> let me know.
> 
> I'm about to lose my mind!!
> 
> Thanks!
> //Nick
> 
> -Original Message-
> From: Nick Richardson [mailto:esoteric.web@;gte.net] 
> Sent: Tuesday, November 12, 2002 12:18 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> I'm trying to load it via php.ini w/ extension=php_mcrypt.dll and
> php_mcrypt.dll is in the extension_dir - When php_mcrypt.dll is not in
> the right place, it tells me it can't load the dll.
> 
> Is there something other than the cygwin1.dll and php_mcrypt.dll that I
> have to install on the system - all the documentation (what little there
> is that I have found) has said that I don't need anything other than
> these 2 files.
> 
> -Original Message-
> From: Ray Hunter [mailto:rhunter@;venticon.com] 
> Sent: Monday, November 11, 2002 12:48 PM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]
> Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> Basically, 
> 
> Are you loading the dll via the file or php?  Make sure that the
> directory(s) where the dlls are located are in your windows path.
> 
> If that doesnt work then you can always put the dll in your systems dll
> directory...
> 
> 
> On Mon, 2002-11-11 at 19:58, Nick Richardson wrote:
> > Ok, another question if you can help.
> > 
> > I have (I think) all the components I need (cygwin1.dll,
> > php_mcrypt.dll, etc...).  Php_mcrypt.dll is in the PHP dir, everything
> 
> > else is in %windir%.
> > 
> > When I try to use any of the mcrypt stuff now, I get:
> > 
> > PHP Warning: Unable to load dynamic library './php_mcrypt.dll' - The
> > specified procedure could not be found. in Unknown on line 0
> > 
> > You have any idea what I might be doing wrong?
> > 
> > //Nick
> > 
> > -Original Message-
> > From: .: B i g D o g :. [mailto:bigdog@;venticon.com]
> > Sent: Monday, November 11, 2002 4:50 AM
> > To: Nick Richardson
> > Cc: [EMAIL PROTECTED]
> > Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?
> > 
> > 
> > You need to uncomment the dll in the php.ini file...do a search for it
> 
> > and then uncomment it or add it to the php.ini file...
> > 
> > That will load it...
> > 
> > *Note: i would add that directory to your path that contains the
> > mcrypt dll or all dlls for php and the extension directory to...
> > 
> > 
> > On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> > > Yes, there is a DLL for it, but getting PHP to know it is there is 
> > > where I'm having the problem - I don?t know how to get PHP to under 
> > > windows to do the equivalent of --with-mcrypt in configure under 
> > > linux. - maybe I havn't registered the mcrypt dll's correctly or 
> > > something like that... But I just can't get it to work.
> > > 
> > > Everytime I try to do it I get 'call to undefined function . '
> > > 
> > > //Nick
> > > 
> > > -Original Message-
> > > From: .: B i g D o g :. [mailto:bigdog@;venticon.com]
> > > Sent: Monday, November 11, 2002 4:37 AM
> > > To: Nick Richardson
> > > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> > > Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> > > 
> > > 
> > > 
> > > is there not a dll for mcrypt?
> > > 
> > > 
> > > On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > > > I asked this before, but didn't get a response.
> > > > 
> > > > Anyone out there have any experience a/o know where I can find
> > > > information on getting the mcrypt functionality to work under 
> > > > Win32
> > -
> > > > I have found a port of mcrypt for Win32, and also learned that you
>

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread Nick Richardson
Still having problems getting mcrypt to work under Windows.  But I think
I have narrowed it down to me not having the correct version of
php_mcrypt.dll.

I downloaded the source for PHP and attempted to compile this myself,
but can not get it to work.  If anyone has any information about where I
can get a current php_mcrypt.dll or how I can compile it from the php
source (and don’t say google, because I've been there already), please
let me know.

I'm about to lose my mind!!

Thanks!
//Nick

-Original Message-
From: Nick Richardson [mailto:esoteric.web@;gte.net] 
Sent: Tuesday, November 12, 2002 12:18 AM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?


I'm trying to load it via php.ini w/ extension=php_mcrypt.dll and
php_mcrypt.dll is in the extension_dir - When php_mcrypt.dll is not in
the right place, it tells me it can't load the dll.

Is there something other than the cygwin1.dll and php_mcrypt.dll that I
have to install on the system - all the documentation (what little there
is that I have found) has said that I don't need anything other than
these 2 files.

-Original Message-
From: Ray Hunter [mailto:rhunter@;venticon.com] 
Sent: Monday, November 11, 2002 12:48 PM
To: Nick Richardson
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?


Basically, 

Are you loading the dll via the file or php?  Make sure that the
directory(s) where the dlls are located are in your windows path.

If that doesnt work then you can always put the dll in your systems dll
directory...


On Mon, 2002-11-11 at 19:58, Nick Richardson wrote:
> Ok, another question if you can help.
> 
> I have (I think) all the components I need (cygwin1.dll,
> php_mcrypt.dll, etc...).  Php_mcrypt.dll is in the PHP dir, everything

> else is in %windir%.
> 
> When I try to use any of the mcrypt stuff now, I get:
> 
> PHP Warning: Unable to load dynamic library './php_mcrypt.dll' - The
> specified procedure could not be found. in Unknown on line 0
> 
> You have any idea what I might be doing wrong?
> 
> //Nick
> 
> -Original Message-
> From: .: B i g D o g :. [mailto:bigdog@;venticon.com]
> Sent: Monday, November 11, 2002 4:50 AM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]
> Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> You need to uncomment the dll in the php.ini file...do a search for it

> and then uncomment it or add it to the php.ini file...
> 
> That will load it...
> 
> *Note: i would add that directory to your path that contains the
> mcrypt dll or all dlls for php and the extension directory to...
> 
> 
> On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> > Yes, there is a DLL for it, but getting PHP to know it is there is 
> > where I'm having the problem - I don?t know how to get PHP to under 
> > windows to do the equivalent of --with-mcrypt in configure under 
> > linux. - maybe I havn't registered the mcrypt dll's correctly or 
> > something like that... But I just can't get it to work.
> > 
> > Everytime I try to do it I get 'call to undefined function . '
> > 
> > //Nick
> > 
> > -----Original Message-
> > From: .: B i g D o g :. [mailto:bigdog@;venticon.com]
> > Sent: Monday, November 11, 2002 4:37 AM
> > To: Nick Richardson
> > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> > Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> > 
> > 
> > 
> > is there not a dll for mcrypt?
> > 
> > 
> > On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > > I asked this before, but didn't get a response.
> > > 
> > > Anyone out there have any experience a/o know where I can find
> > > information on getting the mcrypt functionality to work under 
> > > Win32
> -
> > > I have found a port of mcrypt for Win32, and also learned that you
> can
> > 
> > > compile it using cygwin - but I don?t know how to register mcrypt
> > > w/ PHP and 'turn on' the mcrypt* functions.
> > > 
> > > If anyone has any information or urls / how-tos it would be
> > > greatly appreciated!
> > > 
> > > Thanks!
> > > 
> > > //Nick Richardson
> > > // [EMAIL PROTECTED]
> > > 
> > > 
> > > ---
> > > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell 
> > > NO! Checked by AVG anti-virus system (http://www.grisoft.com).
> > > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> > >  
> > --
> > .: B i g D o g :.
> > 
> > 
> > 
> > --
> > PHP General Mailing List (http://www.php.net/)
> > T

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread Nick Richardson
I'm trying to load it via php.ini w/ extension=php_mcrypt.dll and
php_mcrypt.dll is in the extension_dir - When php_mcrypt.dll is not in
the right place, it tells me it can't load the dll.

Is there something other than the cygwin1.dll and php_mcrypt.dll that I
have to install on the system - all the documentation (what little there
is that I have found) has said that I don't need anything other than
these 2 files.

-Original Message-
From: Ray Hunter [mailto:[EMAIL PROTECTED]] 
Sent: Monday, November 11, 2002 12:48 PM
To: Nick Richardson
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?


Basically, 

Are you loading the dll via the file or php?  Make sure that the
directory(s) where the dlls are located are in your windows path.

If that doesnt work then you can always put the dll in your systems dll
directory...


On Mon, 2002-11-11 at 19:58, Nick Richardson wrote:
> Ok, another question if you can help.
> 
> I have (I think) all the components I need (cygwin1.dll, 
> php_mcrypt.dll, etc...).  Php_mcrypt.dll is in the PHP dir, everything

> else is in %windir%.
> 
> When I try to use any of the mcrypt stuff now, I get:
> 
> PHP Warning: Unable to load dynamic library './php_mcrypt.dll' - The 
> specified procedure could not be found. in Unknown on line 0
> 
> You have any idea what I might be doing wrong?
> 
> //Nick
> 
> -Original Message-
> From: .: B i g D o g :. [mailto:[EMAIL PROTECTED]]
> Sent: Monday, November 11, 2002 4:50 AM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]
> Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> You need to uncomment the dll in the php.ini file...do a search for it

> and then uncomment it or add it to the php.ini file...
> 
> That will load it...
> 
> *Note: i would add that directory to your path that contains the 
> mcrypt dll or all dlls for php and the extension directory to...
> 
> 
> On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> > Yes, there is a DLL for it, but getting PHP to know it is there is
> > where I'm having the problem - I don?t know how to get PHP to under 
> > windows to do the equivalent of --with-mcrypt in configure under 
> > linux. - maybe I havn't registered the mcrypt dll's correctly or 
> > something like that... But I just can't get it to work.
> > 
> > Everytime I try to do it I get 'call to undefined function . '
> > 
> > //Nick
> > 
> > -Original Message-----
> > From: .: B i g D o g :. [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, November 11, 2002 4:37 AM
> > To: Nick Richardson
> > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> > Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> > 
> > 
> > 
> > is there not a dll for mcrypt?
> > 
> > 
> > On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > > I asked this before, but didn't get a response.
> > > 
> > > Anyone out there have any experience a/o know where I can find 
> > > information on getting the mcrypt functionality to work under 
> > > Win32
> -
> > > I have found a port of mcrypt for Win32, and also learned that you
> can
> > 
> > > compile it using cygwin - but I don?t know how to register mcrypt 
> > > w/ PHP and 'turn on' the mcrypt* functions.
> > > 
> > > If anyone has any information or urls / how-tos it would be 
> > > greatly appreciated!
> > > 
> > > Thanks!
> > > 
> > > //Nick Richardson
> > > // [EMAIL PROTECTED]
> > > 
> > > 
> > > ---
> > > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell
> > > NO!
> > > Checked by AVG anti-virus system (http://www.grisoft.com).
> > > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> > >  
> > --
> > .: B i g D o g :.
> > 
> > 
> > 
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> > 
> > ---
> > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell 
> > NO!
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> >  
> > 
> > 
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> --
> .: B i g D o g :.
> 
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! 
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
-- 
Thank you,

Ray Hunter


---
Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Ray Hunter
Basically, 

Are you loading the dll via the file or php?  Make sure that the
directory(s) where the dlls are located are in your windows path.

If that doesnt work then you can always put the dll in your systems dll
directory...


On Mon, 2002-11-11 at 19:58, Nick Richardson wrote:
> Ok, another question if you can help.
> 
> I have (I think) all the components I need (cygwin1.dll, php_mcrypt.dll,
> etc...).  Php_mcrypt.dll is in the PHP dir, everything else is in
> %windir%.
> 
> When I try to use any of the mcrypt stuff now, I get:
> 
> PHP Warning: Unable to load dynamic library './php_mcrypt.dll' - The
> specified procedure could not be found. in Unknown on line 0 
> 
> You have any idea what I might be doing wrong?
> 
> //Nick
> 
> -Original Message-
> From: .: B i g D o g :. [mailto:[EMAIL PROTECTED]] 
> Sent: Monday, November 11, 2002 4:50 AM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]
> Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> You need to uncomment the dll in the php.ini file...do a search for it
> and then uncomment it or add it to the php.ini file...
> 
> That will load it...
> 
> *Note: i would add that directory to your path that contains the mcrypt
> dll or all dlls for php and the extension directory to...
> 
> 
> On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> > Yes, there is a DLL for it, but getting PHP to know it is there is 
> > where I'm having the problem - I don’t know how to get PHP to under 
> > windows to do the equivalent of --with-mcrypt in configure under 
> > linux. - maybe I havn't registered the mcrypt dll's correctly or 
> > something like that... But I just can't get it to work.
> > 
> > Everytime I try to do it I get 'call to undefined function . '
> > 
> > //Nick
> > 
> > -Original Message-
> > From: .: B i g D o g :. [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, November 11, 2002 4:37 AM
> > To: Nick Richardson
> > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> > Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> > 
> > 
> > 
> > is there not a dll for mcrypt?
> > 
> > 
> > On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > > I asked this before, but didn't get a response.
> > > 
> > > Anyone out there have any experience a/o know where I can find
> > > information on getting the mcrypt functionality to work under Win32
> - 
> > > I have found a port of mcrypt for Win32, and also learned that you
> can
> > 
> > > compile it using cygwin - but I don’t know how to register mcrypt w/
> > > PHP and 'turn on' the mcrypt* functions.
> > > 
> > > If anyone has any information or urls / how-tos it would be greatly
> > > appreciated!
> > > 
> > > Thanks!
> > > 
> > > //Nick Richardson
> > > // [EMAIL PROTECTED]
> > > 
> > > 
> > > ---
> > > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell 
> > > NO!
> > > Checked by AVG anti-virus system (http://www.grisoft.com).
> > > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> > >  
> > --
> > .: B i g D o g :.
> > 
> > 
> > 
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> > 
> > ---
> > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! 
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> >  
> > 
> > 
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> -- 
> .: B i g D o g :.
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
-- 
Thank you,

Ray Hunter



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
Ok, another question if you can help.

I have (I think) all the components I need (cygwin1.dll, php_mcrypt.dll,
etc...).  Php_mcrypt.dll is in the PHP dir, everything else is in
%windir%.

When I try to use any of the mcrypt stuff now, I get:

PHP Warning: Unable to load dynamic library './php_mcrypt.dll' - The
specified procedure could not be found. in Unknown on line 0 

You have any idea what I might be doing wrong?

//Nick

-Original Message-
From: .: B i g D o g :. [mailto:bigdog@;venticon.com] 
Sent: Monday, November 11, 2002 4:50 AM
To: Nick Richardson
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?


You need to uncomment the dll in the php.ini file...do a search for it
and then uncomment it or add it to the php.ini file...

That will load it...

*Note: i would add that directory to your path that contains the mcrypt
dll or all dlls for php and the extension directory to...


On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> Yes, there is a DLL for it, but getting PHP to know it is there is 
> where I'm having the problem - I don’t know how to get PHP to under 
> windows to do the equivalent of --with-mcrypt in configure under 
> linux. - maybe I havn't registered the mcrypt dll's correctly or 
> something like that... But I just can't get it to work.
> 
> Everytime I try to do it I get 'call to undefined function . '
> 
> //Nick
> 
> -Original Message-
> From: .: B i g D o g :. [mailto:bigdog@;venticon.com]
> Sent: Monday, November 11, 2002 4:37 AM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> 
> is there not a dll for mcrypt?
> 
> 
> On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > I asked this before, but didn't get a response.
> > 
> > Anyone out there have any experience a/o know where I can find
> > information on getting the mcrypt functionality to work under Win32
- 
> > I have found a port of mcrypt for Win32, and also learned that you
can
> 
> > compile it using cygwin - but I don’t know how to register mcrypt w/
> > PHP and 'turn on' the mcrypt* functions.
> > 
> > If anyone has any information or urls / how-tos it would be greatly
> > appreciated!
> > 
> > Thanks!
> > 
> > //Nick Richardson
> > // [EMAIL PROTECTED]
> > 
> > 
> > ---
> > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell 
> > NO!
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> >  
> --
> .: B i g D o g :.
> 
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! 
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
-- 
.: B i g D o g :.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

---
Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
I will try that - Thanks for the suggestion.  If it was something that
simple, I'm going to shoot myself :)

Thanks!

//Nick

-Original Message-
From: .: B i g D o g :. [mailto:bigdog@;venticon.com] 
Sent: Monday, November 11, 2002 4:50 AM
To: Nick Richardson
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32?


You need to uncomment the dll in the php.ini file...do a search for it
and then uncomment it or add it to the php.ini file...

That will load it...

*Note: i would add that directory to your path that contains the mcrypt
dll or all dlls for php and the extension directory to...


On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> Yes, there is a DLL for it, but getting PHP to know it is there is 
> where I'm having the problem - I don’t know how to get PHP to under 
> windows to do the equivalent of --with-mcrypt in configure under 
> linux. - maybe I havn't registered the mcrypt dll's correctly or 
> something like that... But I just can't get it to work.
> 
> Everytime I try to do it I get 'call to undefined function . '
> 
> //Nick
> 
> -Original Message-
> From: .: B i g D o g :. [mailto:bigdog@;venticon.com]
> Sent: Monday, November 11, 2002 4:37 AM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> 
> is there not a dll for mcrypt?
> 
> 
> On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > I asked this before, but didn't get a response.
> > 
> > Anyone out there have any experience a/o know where I can find
> > information on getting the mcrypt functionality to work under Win32
- 
> > I have found a port of mcrypt for Win32, and also learned that you
can
> 
> > compile it using cygwin - but I don’t know how to register mcrypt w/
> > PHP and 'turn on' the mcrypt* functions.
> > 
> > If anyone has any information or urls / how-tos it would be greatly
> > appreciated!
> > 
> > Thanks!
> > 
> > //Nick Richardson
> > // [EMAIL PROTECTED]
> > 
> > 
> > ---
> > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell 
> > NO!
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> >  
> --
> .: B i g D o g :.
> 
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! 
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
> 
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
-- 
.: B i g D o g :.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

---
Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread .: B i g D o g :.
You need to uncomment the dll in the php.ini file...do a search for it
and then uncomment it or add it to the php.ini file...

That will load it...

*Note: i would add that directory to your path that contains the mcrypt
dll or all dlls for php and the extension directory to...


On Mon, 2002-11-11 at 19:42, Nick Richardson wrote:
> Yes, there is a DLL for it, but getting PHP to know it is there is where
> I'm having the problem - I don’t know how to get PHP to under windows to
> do the equivalent of --with-mcrypt in configure under linux. - maybe I
> havn't registered the mcrypt dll's correctly or something like that...
> But I just can't get it to work.
> 
> Everytime I try to do it I get 'call to undefined function . '
> 
> //Nick
> 
> -Original Message-
> From: .: B i g D o g :. [mailto:bigdog@;venticon.com] 
> Sent: Monday, November 11, 2002 4:37 AM
> To: Nick Richardson
> Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?
> 
> 
> 
> is there not a dll for mcrypt?
> 
> 
> On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> > I asked this before, but didn't get a response.
> > 
> > Anyone out there have any experience a/o know where I can find 
> > information on getting the mcrypt functionality to work under Win32 - 
> > I have found a port of mcrypt for Win32, and also learned that you can
> 
> > compile it using cygwin - but I don’t know how to register mcrypt w/ 
> > PHP and 'turn on' the mcrypt* functions.
> > 
> > If anyone has any information or urls / how-tos it would be greatly 
> > appreciated!
> > 
> > Thanks!
> > 
> > //Nick Richardson
> > // [EMAIL PROTECTED]
> > 
> > 
> > ---
> > Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! 
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
> >  
> -- 
> .: B i g D o g :.
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
-- 
.: B i g D o g :.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
Yes, there is a DLL for it, but getting PHP to know it is there is where
I'm having the problem - I don’t know how to get PHP to under windows to
do the equivalent of --with-mcrypt in configure under linux. - maybe I
havn't registered the mcrypt dll's correctly or something like that...
But I just can't get it to work.

Everytime I try to do it I get 'call to undefined function . '

//Nick

-Original Message-
From: .: B i g D o g :. [mailto:bigdog@;venticon.com] 
Sent: Monday, November 11, 2002 4:37 AM
To: Nick Richardson
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32?



is there not a dll for mcrypt?


On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> I asked this before, but didn't get a response.
> 
> Anyone out there have any experience a/o know where I can find 
> information on getting the mcrypt functionality to work under Win32 - 
> I have found a port of mcrypt for Win32, and also learned that you can

> compile it using cygwin - but I don’t know how to register mcrypt w/ 
> PHP and 'turn on' the mcrypt* functions.
> 
> If anyone has any information or urls / how-tos it would be greatly 
> appreciated!
> 
> Thanks!
> 
> //Nick Richardson
> // [EMAIL PROTECTED]
> 
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO! 
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
-- 
.: B i g D o g :.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

---
Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread .: B i g D o g :.

is there not a dll for mcrypt?


On Mon, 2002-11-11 at 19:34, Nick Richardson wrote:
> I asked this before, but didn't get a response.
> 
> Anyone out there have any experience a/o know where I can find
> information on getting the mcrypt functionality to work under Win32 - I
> have found a port of mcrypt for Win32, and also learned that you can
> compile it using cygwin - but I don’t know how to register mcrypt w/ PHP
> and 'turn on' the mcrypt* functions.
> 
> If anyone has any information or urls / how-tos it would be greatly
> appreciated!
> 
> Thanks!
> 
> //Nick Richardson
> // [EMAIL PROTECTED]
> 
> 
> ---
> Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002
>  
-- 
.: B i g D o g :.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
I asked this before, but didn't get a response.

Anyone out there have any experience a/o know where I can find
information on getting the mcrypt functionality to work under Win32 - I
have found a port of mcrypt for Win32, and also learned that you can
compile it using cygwin - but I don’t know how to register mcrypt w/ PHP
and 'turn on' the mcrypt* functions.

If anyone has any information or urls / how-tos it would be greatly
appreciated!

Thanks!

//Nick Richardson
// [EMAIL PROTECTED]


---
Outgoing mail is certified Virus Free. Can McAfee do that? - Hell NO!
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.408 / Virus Database: 230 - Release Date: 10/24/2002