php-windows Digest 20 Dec 2008 15:59:44 -0000 Issue 3549
Topics (messages 29107 through 29108):
just downloaded 5.2.8 for Windows and no php5isapi.dll file
29107 by: Fred Silsbee
ntwdblib.dll not found in any of the 5.2.8 zip files
29108 by: Fred Silsbee
Administrivia:
To subscribe to the digest, e-mail:
php-windows-digest-subscr...@lists.php.net
To unsubscribe from the digest, e-mail:
php-windows-digest-unsubscr...@lists.php.net
To post to the list, e-mail:
php-wind...@lists.php.net
----------------------------------------------------------------------
--- Begin Message ---
fiund the files...something went wrong with winzip
--- End Message ---
--- Begin Message ---
ntwdblib.dll proves to be necessary...otherwise I'll get a mssql_connect not
found
I used the ntwdblib.dll file from a 5.2.6 zip file
I completely reinstalled XP Prof SP3 along with MS SQL Server 2008 and I still
get the following error:
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server:
.\SQLEXPRESSLMKIII in C:\Inetpub\wwwroot\trymssql.php on line 8
Fatal error: Maximum execution time of 30 seconds exceeded in
C:\Inetpub\wwwroot\trymssql.php on line 8
<?php
// Server in the this format: <computer>\<instance name> or
// <server>,<port> when using a non default port number
$server = "LANDON\SQLEXPRESSLMKIII";
//$server = '(local)';
//$server = '.\SQLEXPRESSLMKIII';
$link = mssql_connect($server, "sa", "x0x0x0x");
//$link = mssql_connect($server);
if(!$link)
{
die('Something went wrong while connecting to MSSQL');
}
?>
I've looked at all the options/permissions I can find.
--- End Message ---