/    Sign up×
Community /Pin to ProfileBookmark

ODBC connecting to MSSQL PHP Error?

Hi,

I was wondering if someone could lend me a hand on the issue im having. We currently have an internal web for our users. The website was created by another person using PHP and that person we cannot reach them. The website was hosted using XAMPP on a windows server using ODBC to connect to a windows sql server for that database.

Currently I migrated the htdocs to a ubuntu Server 14.04 running NGINX with php5.

I installed the current packages and i was succefuly able to connect to the database (see picture)

My issue is on the website when i put the username and password it should authenticate to the db of windows but instead it gives me this error on the NGINX log

[code=php]PHP Warning: odbc_connect(): SQL error: [unixODBC][FreeTDS][SQL Server]Unable to connect to data source, SQL state S1000 in SQ
LConnect[/code]

this is my odbc.ini

[code=php][MSSQL]
Description = MS SQL Server
Driver=/usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so
Server = 192.168.1.152
UID = intranet
PWD = mypassword
ReadOnly = No
Port = 1433
[/code]

this is my freetds.conf

[code=php]# A typical Microsoft server
[MSSQL]
host = 192.168.1.152
port = 1433
tds version = 8.0
initial block size = 512 [/code]

this is my odbcinst.ini

[code=php][FreeTDS]
Description = FreeTDS driver
Driver=/usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so
Setup=/usr/lib/x86_64-linux-gnu/odbc/libtdsS.so
FileUsage = 1
UsageCount = 1[/code]

this is my NGNIX CONF

[code=php]# You may add here your
# server {
# …
# }
# statements for each of your virtual hosts to this file

##
# You should look at the following URL’s in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

root /var/www/html/xampp/htdocs/;
index index.html index.htm index.php index2.php;

# Make site accessible from http://localhost/
server_name 192.168.1.3;

location / {
try_files $uri $uri/ /index.php?$args;
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}

# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root /usr/share/nginx/html;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
# fastcgi_split_path_info ^(.+.php)(/.+)$;
# # NOTE: You should have “cgi.fix_pathinfo = 0;” in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}

# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
#location ~ /.ht {
# deny all;
#}
}

# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# root html;
# index index.html index.htm;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}

# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
#
# root html;
# index index.html index.htm;
#
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
#
# ssl_session_timeout 5m;
#
# ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
# ssl_ciphers “HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES”;
# ssl_prefer_server_ciphers on;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}[/code]

This is my index2.php which is the front page

[code=php]<html>
<head>
<title>Intranet</title>
</head>
<?php
require_once(‘barras.php’);
$seguir=true;

if (isset($B1))
{
if ($B1==”Entrar”)
{
$rs= odbc_exec($conexion,”select nombre,nivel,seccion,cargo from tblpersonal where usuario=’$usuario’ and clave=’$clave'”);
if (odbc_fetch_row($rs))
{

$nivel=odbc_result($rs,”nivel”);
$nombre=odbc_result($rs,”nombre”);
$seccion=odbc_result($rs,”seccion”);
$cargo=odbc_result($rs,”cargo”);

$_SESSION[“nivel”] = $nivel;
$_SESSION[“usuario”] = $usuario;
$_SESSION[“nombre”] = $nombre;
$_SESSION[‘seccion’] = $seccion;
$_SESSION[‘cargof’] = $cargo;
echo “<frameset framespacing=”0″ border=”1″ frameborder=”1″ rows=”90,*”>
<frame name=”superiord” target=”izquierdo” src=”menusup.htm” scrolling=”auto” >
<frameset framespacing=”0″ border=”1″ frameborder=”1″ cols=”220,*”>
<frame name=”izquierdo” scrolling=”auto” noresize target=”principal” src=”inicial.htm”>
<frame name=”principal” src=”titulo.htm” marginwidth=”1″ marginheight=”1″ scrolling=”auto”>
</frameset>
<noframes>
<body>
<p>Esta página usa marcos, pero su explorador no los admite.</p>
</body>
</noframes>
</frameset>”;
}
else
{
echo “<body link=”#FFFFFF” alink=”#FFFFFF” text=”#FFFFFF” bgcolor=”#003366″ style=”font-family: Arial”>
<p><center><h2>Clave Incorrecta</center></h2></p>
</body>”;
}
}
else
{
//$nivel=$_SESSION[‘nivel’];
}
}
else
{
echo “<body link=”#FFFFFF” alink=”#FFFFFF” text=”#FFFFFF” bgcolor=”#003366″ style=”font-family: Arial”>
<p><center><h2>Debe realizar la Autenticación de Seguridad</center></h2></p>
</body>”;
}
?>
</html>[/code]

and lastly the barras.php in which the index2 connect to php when then the barras.php tries to authenticate with the odbc

[code=php]<?php
# FileName=”Connection_php_mysql.htm”
# Type=”MSSQL”
# HTTP=”true”
$hostname_barras = “192.168.1.152”;
$connection = odbc_connect(“MSSQL”,”intranet”,”mypassword”);
?>[/code]

Thank you

to post a comment
PHP

3 Comments(s)

Copy linkTweet thisAlerts:
@NogDogNov 27.2017 — Any difference if you try a "DSN-less" connection? Something like:
[code=php]
$server = '192.168.1.152'; // possibly append ':1433' to this?
$database = 'my_database_name'; // change to actual DB name
$user = 'intranet';
$password = 'mypassword';
$connection = odbc_connect("Driver={SQL Server Native Client 10.0};Server=$server;Database=$database;", $user, $password);
[/code]

Personally, I'd be more inclined to use PDO if possible? http://php.net/manual/en/ref.pdo-dblib.php
Copy linkTweet thisAlerts:
@killmasta93authorNov 28.2017 — Thanks for the reply, i tried changing to your code but im getting this error

SQL error: [unixODBC][Driver Manager]Data source name not found, and no default driver specified, SQL state IM002 in SQLConnect in /var/www/html/xampp/htdocs/barras.php on line 6[/QUOTE]

Hopefully in the future as im trying to migrate this website which was on a xammp and wanting to move to NGINX

Thank you
Copy linkTweet thisAlerts:
@killmasta93authorNov 28.2017 — EDIT:

So this is odd so i edit it again the barras.php to this

<?php

$connection = odbc_connect("MSSQL","intranet","mypassword");

?>
[/QUOTE]


i then ran the php file no issue ---see picture

https://imgur.com/a/gYu65

so then i went to the website 192.168.1.3 and entered username and password and i would get this--see picture

https://imgur.com/a/6AVYT

So i checked the logs of NGINX

and i get this
"PHP message: PHP Warning: odbc_connect(): SQL error: [unixODBC][FreeTDS][SQL Server]Unable to connect to data source, SQL state S1000 in SQLConnect in /var/www/html/xampp/htdocs/barras.php on line 2" while reading response header from upstream, client: 192.168.40.38, server: 192.168.1.3, request: "POST /index2.php HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "192.168.1.3", referrer: "http://192.168.1.3/"
[/QUOTE]

now im thinking its a NGINX issue with the ODBC or the php?

Thank you
×

Success!

Help @killmasta93 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.24,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...