Re: [PHP-WIN] Modules not loading

2001-02-07 Thread Deus
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

[PHP-WIN] Re: [PHP] RE: [PHP-WIN] MSSQL Functions

2001-02-07 Thread Frank M. Kromann
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

RE: [PHP-WIN] MSSQL Functions

2001-02-07 Thread Flint Doungchak
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 [mai

[PHP-WIN] MSSQL Functions

2001-02-07 Thread Toby Miller
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

Re: [PHP-WIN] Modules not loading

2001-02-07 Thread Kevin Ferron
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 PROT

Re: [PHP-WIN] Modules not loading

2001-02-07 Thread Alain Samoun
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

php-windows Digest 7 Feb 2001 22:51:52 -0000 Issue 433

2001-02-07 Thread php-windows-digest-help
php-windows Digest 7 Feb 2001 22:51:52 - Issue 433 Topics (messages 5430 through 5449): Re: warnings and their meanings and fork in particular. .. 5430 by: Asendorf, John 5431 by: Svensson, B.A.T. MS SQL Question 5432 by: Conover, Ryan 5433 by: Pablo Vera

Re: [PHP-WIN] Modules not loading

2001-02-07 Thread Pablo Vera
Erik: Did you uncomment the related line in php.ini ?, the one that says: extension = php_ldap.dll and check that the following setting is correctly set: extension_dir = "C:/PHP/extensions/" ; or wherever your extensions are Saludos, Pablo _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

[PHP-WIN] Modules not loading

2001-02-07 Thread Erik Ableson
Title: Modules not loading 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\apa

Re: [PHP-WIN] COUNT(*) fails in PHP3

2001-02-07 Thread Toby Miller
Unfortunately, I don't have PHP3 on Windows, but it works fine for me in PHP3 on Linux and PHP4 on both Windows and Linux. This is also testing with both MySQL and MSSQL in all three scenarios. - Original Message - From: "Piotr Fetras" <[EMAIL PROTECTED]> To: "<"php-windows"" <[EMAIL PROT

RE: [PHP-WIN] RE: MS SQL Question

2001-02-07 Thread Svensson, B.A.T.
ERRATA: The observant reader might already have notice that an extra "NOT" were inserted into the text... I'm sorry for that... >-Original Message- >From: Svensson, B.A.T. [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, February 07, 2001 7:57 PM >To: [EMAIL PROTECTED] >Subject: RE: [PHP-WIN

RE: [PHP-WIN] MS SQL Question

2001-02-07 Thread Svensson, B.A.T.
Dear Pablo: You are thinking right (try to give a reference to the table), but your suggestion will most likely generate a "syntax error" message, since the standard syntax (ISO SQL) wont allow such a construction. >-Original Message- >From: Pablo Vera [mailto:[EMAIL PROTECTED]] >Sent: W

RE: [PHP-WIN] RE: MS SQL Question

2001-02-07 Thread Svensson, B.A.T.
Nope, that's not the problem. it is related to the syntax. He is trying to refer to a table that is not "declared" in the statement, that is an illegal thing to do. What he simply is trying to do (with all the crap cut way) is: UPDATE A SET A.b = B.d WHERE A.a = B.c Nowhere is the table B decla

[PHP-WIN] IIS and $PHP_AUTH_USER

2001-02-07 Thread Shane McBride
I have been trying for days to get IIS to work with authentication. I have a scipt that works great on Apache. It creates a dialog box that asks for the login/password, and no matter what I put it it always fails. Any ideas? - Shane DISCLAIMER: I am by no means an expert on this, or any other, t

RE: [PHP-WIN] MS SQL Question

2001-02-07 Thread Svensson, B.A.T.
Syntax (simplified) UPDATE SET = {expression | DEFAULT | NULL} FROM [,...n] WHERE In the "FROM ... WHERE ..." construction is where you should place the "other" table and the appropriate search conditions. You can try this script to get a grip of it: create table A (a int, b int) create

[PHP-WIN] RE: MS SQL Question

2001-02-07 Thread Foley, John
The table or view "extended" does not exist in the declared database context. If this table or view is in another database on the same server, use database.table.column (not sure about exact syntax here) John T. Foley Network Administrator Pollak Engineered Prod

[PHP-WIN] Slow response from Netscape

2001-02-07 Thread Doug Brewer
I am experiencing a long delay from Netscape (4.76, Win) when setting cookies. The user submits the form, and it takes 15-20 seconds for a response. The browser states "host contacted, waiting for reply" It works instantaneously with IE, and on a mac on both browsers. Anyone else experience t

[PHP-WIN] Re: [PHP] MS SQL Question

2001-02-07 Thread Frank M. Kromann
The table "extended" is not known to the update command. You shoud use a syntax like this: UPDATE table1 SET table1.field1 = (select field2 from table2 where table2.id=table1.id). - Frank >I am trying to update a table with data from another table within the same >database with the following

[PHP-WIN] Re: [PHP] MS SQL Question

2001-02-07 Thread Wieger Uffink
Hi Ryan, You could try REPLACE INTO in combination with a select from the second table, instead of UPDATE. For the exact syntax see http://www.mysql.com/doc/R/E/REPLACE.html Maybe you can fit it to your needs. Wieger "Conover, Ryan" wrote: > > I am trying to update a table with data from ano

[PHP-WIN] COUNT(*) fails in PHP3

2001-02-07 Thread Piotr Fetras
hi all ! I have problems while executing SQL with aggregation functions, even simple SELECT COUNT(*) FROM aTable stalls. It seems to be a problem in PHP3 itself since other odbc-based applications run well. There is simple but stupid solution for this problem: add "group by" phrase: SELECT

[PHP-WIN] RE: [PHP-DB] Writing to a file on the user's machine.

2001-02-07 Thread Ben Cairns
Have you thought of using a cookie? As PHP is server side, it cannot write to the users machine, only the server. JavaScript may be able to help you here though, but I cant think of any sotrce code that imediatley springs to mind -- Ben Cairns - Head Of Technical Operations intasept.COM Tel:

[PHP-WIN] 20 Million Fresh E-Mail Addresses

2001-02-07 Thread Luke2
TO BE REMOVED FROM FUTURE MAILINGS, SIMPLY REPLY TO THIS MESSAGE AND PUT "REMOVE" IN THE SUBJECT. 20 MILLION E-MAIL ADDRESSES FOR ONLY $249 **Over Night International Shipping Included** Many Call This "The "Perfect E-Mail List" Over 20-Million Of The Best E-Mail Addresses Av

Re: [PHP-WIN] MS SQL Question

2001-02-07 Thread Andrian Pervazov
You don't have a FROM clause. Something like this should work: UPDATE common SET common.[Extended Description] = extended.[Extended Description] FROM common,extended WHERE common.[id] = extended.[Extended Description] "Conover, Ryan" wrote: > > I am trying to update a table with data from ano

Re: [PHP-WIN] MS SQL Question

2001-02-07 Thread Pablo Vera
Ryan: Try it like this: UPDATE common, extended SET common.[Extended Description] = extended.[Extended Description] WHERE common.[id] = extended.[Extended Description] Saludos, Pablo _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ Wednesday, February 07, 2001, 9:26:03 AM, Ryan wrote:

[PHP-WIN] MS SQL Question

2001-02-07 Thread Conover, Ryan
I am trying to update a table with data from another table within the same database with the following SQL UPDATE common SET common.[Extended Description] = extended.[Extended Description] WHERE common.[id] = extended.[Extended Description] the id is the primary key. I keep getting the following

RE: [PHP-WIN] warnings and their meanings and fork in particular...

2001-02-07 Thread Svensson, B.A.T.
Maybe there exists a problem for the operation system to create/find a shell to run the del.exe command in? >-Original Message- >From: Tomasz Abramowicz [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, February 07, 2001 11:54 AM >To: php-windows >Subject: [PHP-WIN] warnings and their meanings

RE: [PHP-WIN] warnings and their meanings and fork in particular...

2001-02-07 Thread Asendorf, John
Have you tried using the UNLINK command? www.php.net/unlink unlink ( "d:/home/lineagialla/img/img_colonna1.gif" ); Also, if the system is trying to access the file you are requesting, you're going to have problems. I have a nice long story about that that I'll share with everyone some day at

php-windows Digest 7 Feb 2001 10:51:00 -0000 Issue 432

2001-02-07 Thread php-windows-digest-help
php-windows Digest 7 Feb 2001 10:51:00 - Issue 432 Topics (messages 5419 through 5429): Re: Changing PHP.INI Options on the fly ... 5419 by: Andreas Lange Re: Help!! 5420 by: Asendorf, John Re: Converting apostrophes for insertion into Oracle 5421 by: Asendorf, Joh

[PHP-WIN] warnings and their meanings and fork in particular...

2001-02-07 Thread Tomasz Abramowicz
hi, is there somewhere I can find the possible meaning, (suggested solutions or something like that) to the error msgs and warinings? I am running php4.0.4pl1 on NT4.0 w/ IIS4.0, While trying to delete a file prior to upload i get the following error, i dont understand what it means by "fork", t