php-windows Digest 8 Feb 2001 10:55:24 -0000 Issue 434

Topics (messages 5450 through 5458):

Re: Modules not loading
        5450 by: Alain Samoun
        5451 by: Kevin Ferron
        5455 by: Deus

MSSQL Functions
        5452 by: Toby Miller
        5453 by: Flint Doungchak

Re: [PHP] RE: [PHP-WIN] MSSQL Functions
        5454 by: Frank M. Kromann

PHP is not stable under Windows platform...
        5456 by: sam
        5457 by: Ernest E Vogelsinger

Formatting currencies..
        5458 by: Dirk.Dinger.dignos.com

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


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


Where did you get your build?
The modules have to be integrated at compilation time.
It seems that the ldap module either is not part of your build or has not be
activated in the php.ini file.
Alain

On Wed, Feb 07, 2001 at 03:38:50PM -0600, Erik Ableson wrote:
> I'm seeing an interesting problem here - just installed the CGI version of
> php4 running under Win32 Apache and php is working, but when I try to call a
> module function it claims that it's an unknown function:
> 
> Call to undefined function: ldap_connect() in d:\apps\apache
> group\apache\htdocs\test.php on line 7
> 
> I've got the ldap.dll file in the extensions folder and I've dropped copies
> into Winnt and system folders just in case to no avail.
> 
> Hints & tips always appreciated,
> Erik Ableson

> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]




strangely enough, im getting a similar problem.. the ldap module nor the
mssql module work when uncommented in php.ini.  All the other uncommented
extensions load no problem.  The dll's are definately in my extensions dir.

weird eh?

"Alain Samoun" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Where did you get your build?
> The modules have to be integrated at compilation time.
> It seems that the ldap module either is not part of your build or has not
be
> activated in the php.ini file.
> Alain
>
> On Wed, Feb 07, 2001 at 03:38:50PM -0600, Erik Ableson wrote:
> > I'm seeing an interesting problem here - just installed the CGI version
of
> > php4 running under Win32 Apache and php is working, but when I try to
call a
> > module function it claims that it's an unknown function:
> >
> > Call to undefined function: ldap_connect() in d:\apps\apache
> > group\apache\htdocs\test.php on line 7
> >
> > I've got the ldap.dll file in the extensions folder and I've dropped
copies
> > into Winnt and system folders just in case to no avail.
> >
> > Hints & tips always appreciated,
> > Erik Ableson
>
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>






Modules not loadingI've run across this problem and have fixed it by copying certain 
DLLs into my path. One way to find which DLLs it is looking for is to troubleshoot 
with the command line. Execute a script from the command line that contains the 
offending function calls and you will probably get a windows error stating which DLLs 
are missing.

Hope that helps,
Steve, Webmaster Novell, Inc.


  "Erik Ableson" <[EMAIL PROTECTED]> wrote in message 
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  I'm seeing an interesting problem here - just installed the CGI version of php4 
running under Win32 Apache and php is working, but when I try to call a module 
function it claims that it's an unknown function:

  Call to undefined function: ldap_connect() in d:\apps\apache 
group\apache\htdocs\test.php on line 7 

  I've got the ldap.dll file in the extensions folder and I've dropped copies into 
Winnt and system folders just in case to no avail.

  Hints & tips always appreciated, 
  Erik Ableson 



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


  -- 
  PHP Windows Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]




Hey all,

I've got a question about using the MSSQL Functions. The only way I've been able to 
use them is to install Microsoft SQL Client on the web server. Is there any way to get 
around this to use the MSSQL Functions without installing a copy of Microsoft SQL 
Client? Right now I am using the ODBC Functions to get around the problem, but I was 
wondering if it just relies on some DLL's that I could copy to the server or something 
like that? I know that people are using the MSSQL Functions on Linux and they 
obviously didn't need to install Microsoft SQL Client to get them to work so I'm just 
hoping there's a way around it?

Thanks,
Toby





Toby,

Yes, the client is requires because the MSSQL module uses some libraries
from the client to function. I don't know which one. If Frank see this, he
might be able to give you some detailed insight. I just know it has to be
installed.

-Flint

-----Original Message-----
From: Toby Miller [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 4:04 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: [PHP-WIN] MSSQL Functions


Hey all,

I've got a question about using the MSSQL Functions. The only way I've been
able to use them is to install Microsoft SQL Client on the web server. Is
there any way to get around this to use the MSSQL Functions without
installing a copy of Microsoft SQL Client? Right now I am using the ODBC
Functions to get around the problem, but I was wondering if it just relies
on some DLL's that I could copy to the server or something like that? I know
that people are using the MSSQL Functions on Linux and they obviously didn't
need to install Microsoft SQL Client to get them to work so I'm just hoping
there's a way around it?

Thanks,
Toby





Hi All,

the key komponent is ntwdblib.dll installed in winnt\system32. The dll uses 
other dll's to comunicate with the server dbmssocn.dll (tcp/ip) and dbmsnp.dll 
(NetBios). All the communication dll's should be installed with the ODBC driver. Just 
copy ntwdblib.dll from the SQL server to the php server.

You will need to use the 
ODBC manager to create client configurations as the tools for this will not be 
installed.

- Frank

>Toby,
>
>Yes, the client is requires because the MSSQL module 
uses some libraries
>from the client to function. I don't know which one. If Frank see 
this, he
>might be able to give you some detailed insight. I just know it has to be
>installed.
>
>-Flint
>
>-----Original Message-----
>From: Toby Miller 
[mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, February 07, 2001 4:04 PM
>To: 
[EMAIL PROTECTED]; [EMAIL PROTECTED]
>Subject: [PHP-WIN] MSSQL 
Functions
>
>
>Hey all,
>
>I've got a question about using the MSSQL Functions. The 
only way I'v!
e been
>able to use them is to install Microsoft SQL Client on the web server. Is
>there any way to get around this to use the MSSQL Functions without
>installing a 
copy of Microsoft SQL Client? Right now I am using the ODBC
>Functions to get around 
the problem, but I was wondering if it just relies
>on some DLL's that I could copy to 
the server or something like that? I know
>that people are using the MSSQL Functions 
on Linux and they obviously didn't
>need to install Microsoft SQL Client to get them 
to work so I'm just hoping
>there's a way around it?
>
>Thanks,
>Toby
>
>
>-- 
>PHP 
General Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: 
[EMAIL PROTECTED]
>For additional commands, e-mail: 
[EMAIL PROTECTED]
>To contact the list administrators, e-mail: 
[EMAIL PROTECTED]
>
>
>







Hi,

    My problem is that I have installed the PHP under win2k, and it
seems
OK, but when I use a lot of sockets, it may cause system halt !!  But it
will
not happen when I use CGI mode to run PHP by IIS. Maybe some thing
wrong when I install PHP, if you have ever met such problem, please tell

me how to solve this problem, thanks !!

ps.I'm sure that ISAPI mode can run faster, so I don't like to use CGI
mode.

Sam.





At 10:14 08.02.2001, sam said:
--------------------[snip]--------------------
>Hi,
>My problem is that I have installed the PHP under win2k, and it
>seems OK, but when I use a lot of sockets, it may cause system halt !!
>But it will not happen when I use CGI mode to run PHP by IIS. Maybe some
>thing wrong when I install PHP, if you have ever met such problem, please tell
>me how to solve this problem, thanks !!
--------------------[snip]-------------------- 

I found the ISAPI plugin to be reliably crashing on Win/NT4 and W2K
platforms altogether. Simple advice - don't use ISAPI on a Windows platform
(sad, but true).


     ...ebird

   >O     Ernest E. Vogelsinger
   (\)    http://www.1-at-web.at/
    ^     ICQ#   13394035






Hi PHPs,

I'm looking for a function, that can format integer-values to a
currency-representation
with regard to local system settings.
Browsing through php.net I found documentation to a function called
"localeconv", but if
I try to use it, my PHP4 keeps saying to me "call to undefined function...".

http://www.php.net/manual/en/function.localeconv.php

Do I need to install something additional ?

Any hints appreciated,

Dirk



Reply via email to