Once in a while in my high level application stack, web development world, I am thrown for a loop, and I have to venture down into the bowls of the LAMP stack, or MAMP stack in my case. A client for the company I work for jWeb has a desktop application that their entire company uses all day every day. This application is a win32 desktop application that is tied to a SQL Server 2005 database. We are tasked with building a web application that ties directly to this database, and adds our own custom special sauce to the mix. Needless to say the Microsoft Development platform is very windows centric, so I looked to an open source solution. As I usually do when I search for a software solution to my problems, I found a champion, FreeTDS. This software library allows linux (and therefore Mac OSX… freebsd is not linux I know) to be able to connect directly, not through ODBC, to SQL Server and execute sql statements (Stored Procedures too!!)
To give context to this solution, here is my current developer web server setup:
- Mac Powerbook G4 running OSX 10.4.11
- Apache/2.2.4
- PHP 5.2.5
- MySql 5.0.18
And here is my SQL Server Set Up
- Windows XP SP3
- SQL Server 2005 Developer Edition
Couple of pitfalls to watch out for here with regards to your SQL Server Development machine:
- Make sure that SQL Server is running an listening via TCP/IP.
- There are multiple ways of running SQL Server (Shared Memory, Named Pipes, TCP/IP, VIA), and it is essential that you have TCP/IP ENABLED. I don’t know if it comes by default with TCP / IP disabled, but it was on mine so this will kill you before you start if you dont have this sorted out.
- Change these settings by going to Start > Programs > Microsoft SQL Server 2005 > Configuration Tools > SQL Server Configuration Manager
- Click on SQL Server 2005 Network Configuration
- Make sure that TCP / IP is enabled. You might have to restart SQL Server from the Services Panel in Windows Control Panel.
- Make sure that you have Windows Firewall allowing port 1433 (default sql server port) or whatever you have it set to.
- Here is the dooosey. If you have a Cisco VPN client installed on this machine, there comes with it a Firewall, that will kill all port traffic. This runs even when the VPN client is not currently connected. To disable this, bring up the VPN client connection window. A System tray icon will pop up for Cisco VPN, there is an option for “Stateful Firewall, (Always On)” make sure this is UNCHECKED.
Ok, before we can upgrade to FreeTDS and compile it with connections to SQL Server we need to download the FreeTDS library.
Download from here (ftp://ftp.ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz).
Run these commands:
- cd /usr/local/src
- wget ftp://ftp.ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz
- tar zxf freetds-stable.tgz
- cd freetds-0.82
- ./configure
- make
- sudo make install
This will install FreeTDS to you /usr/local directory. It is important to put it in this location, cause of the following next steps.
Ok now, lets upgrade to 5.2.6 PHP.
Grab the source code from PHP.net.
Follow these steps:
- cd /usr/local/src
- wget http://us2.php.net/get/php-5.2.6.tar.gz/from/us.php.net/mirror
- tar zxf php-5.2.6.tar.gz
- cd php-5.2.6
Ok now here is the fun fun fun.
FreeTDS decided in release 0.82 to change the way that it installs its compiled libs. PHP (as of 5.2.6) has not release an official update to this problem. FreeTDS.org/news.html has recommended adding dummy files to allow the PHP extensions (mssql, pdo_dblib) to compile correctly. This soution is not really solving the problem, so I looked to the PHP developers to see if there is a better solution.
Low and behold, there was!
Two different links:
These two sites discuss the problem in depth. The great news, they provided a Patch to solve the problem!
Download it here. (http://overlays.gentoo.org/proj/php/browser/patches/php-patches/5.2.6/php5/freetds-compat.patch?rev=3488&format=raw)
Copy the patch file to your php src directory (/usr/local/src/php-5.2.6).
Run these commands:
- patch -p0 -i /usr/local/src/php-5.2.6/freetds-compat.patch
- Since it is in interactive mode type these two file locations
- ext/mssql/config.m4
- ext/pdo_dblib/config.m4
This will patch the source code problems with FreeTDS 0.82 and PHP 5.2.6
Now compile php (based off of my settings):
- ‘./configure’ ‘–prefix=/usr/local/apache2/php’ ‘–with-zlib’ ‘–with-dom=/sw/’ ‘–with-libxml-dir=/sw/’ ‘–with-xsl=/sw/’ ‘–with-jpeg-dir=/sw’ ‘–with-libtiff-dir=/sw’ ‘–with-png-dir=/sw’ ‘–with-mysql=/usr/local/mysql/’ ‘–with-apxs2=/usr/local/apache2/bin/apxs’ ‘–with-curl’ ‘–enable-exif’ ‘–with-ttf’ ‘–with-freetype-dir=/usr/X1186’ ‘–enable-bcmath’ ‘–with-iconv’ ‘–with-gd’ ‘–with-t1lib=/sw’ ‘–enable-gd-native-ttf’ ‘–with-xpm-dir=/usr/X11R6/lib’ ‘–with-openssl=/sw/’ ‘–enable-ftp’ ‘–enable-soap’ ‘–with-xmlrpc’ ‘–with-mysqli=/usr/local/mysql/bin//mysql_config’ ‘–with-mssql=/usr/local’ ‘–enable-zip’ ‘–with-imap=/usr/local/imap’ ‘–with-imap-ssl=/sw’ ‘–with-kerberos’ ‘–enable-mbstring’ ‘–with-mcrypt=/sw’ ‘–with-pdo-mysql=/usr/local/mysql/bin/mysql_config’ ‘–with-pdo-dblib=/usr/local’ ‘–enable-pdo’
- make
- sudo make install
You are off to the races!!!
You can now install open source tools such as:
- phpmsadminÂ
- Symfony with Doctrine / Propel ORM systems
I plan to use both, but Symfony will allow me to read the schema directly from the SQL Server, and build out ORM objects based on their schema!!!
Good luck!
P.S. Dont forget to restart Apache!!! PHP lives in memory based on the last apache restart, so you wont see changes reflected until you force restart apache.