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
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
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
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
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
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 - 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
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
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
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
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
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
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
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
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
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
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
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
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
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
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
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:
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
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
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:
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
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
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 - 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
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
29 matches
Mail list logo