see following posts:
http://www.teamst.org/phpBB2/viewtopic.php?t=1155
http://www.teamst.org/phpBB2/viewtopic.php?t=605
IIS Installation problems
Moderators: Amaradana, TurboPT, TL Developers
Re: IIS Installation problems
Both links give 404 errors.fman wrote:see following posts:
http://www.teamst.org/phpBB2/viewtopic.php?t=1155
http://www.teamst.org/phpBB2/viewtopic.php?t=605
Re: IIS Installation problems
Thanks for pointing that out.
The forum's URL has changed since then. In both links, simply replace the phpBB2 portion of the URL with forum.
http://www.teamst.org/forum/viewtopic.php?t=1155
http://www.teamst.org/forum/viewtopic.php?t=605
The forum's URL has changed since then. In both links, simply replace the phpBB2 portion of the URL with forum.
http://www.teamst.org/forum/viewtopic.php?t=1155
http://www.teamst.org/forum/viewtopic.php?t=605
Re: IIS Installation problems
Hello everyone!
Where can I find the complete information to configure IIS 6 Web server with php5.3.6 and database SqlServer on a windows 2003 Server in order to install TestLink?
Thank you!
Where can I find the complete information to configure IIS 6 Web server with php5.3.6 and database SqlServer on a windows 2003 Server in order to install TestLink?
Thank you!
Re: IIS Installation problems
refer google for that information
Thanks,
TesterWorld
Http://amartester.blogspot.com
TesterWorld
Http://amartester.blogspot.com
Re: IIS Installation problems
Of course I have allready googled that, but information is rather confusing!!!
I wouldn´t have posted before.
Surely, someone here must have the experience, I think.....
I wouldn´t have posted before.
Surely, someone here must have the experience, I think.....
Re: IIS Installation problems
To install Testlink in IIS, using a MS SQL 2012 database I performed the following steps. Posting them here in case it helps anyone trying to do the same!
- Use Web Platform installer in IIS to install php 5.5.11 (php 5.6 doesnt have an official SQL SERVER driver yet)
- Download Microsoft Drivers 3.1 CTP for MS SQL on php from http://www.microsoft.com/en-gb/download ... x?id=20098
- After extracting, copy Non-thread safe versions: php_sqlsrv_55_nts.dll & php_pdo_sqlsrv_55_nts.dll to C:\Program Files (x86)\PHP\v5.5\ext
- Use the php manager in IIS to enable an extension for php 5.5 and enable the 2 dlls above
- PHP drivers above require Microsoft ODBC Driver 11 for SQL Server - get from http://www.microsoft.com/en-us/download ... x?id=36434
- Download testlink 1.9 (latest) from http://sourceforge.net/projects/testlin ... ink%201.9/
- Extract to a directory, and set up a new site in IIS pointing to directory
- Set Network service to have modify permissions on the \logs directory and \upload_area directory.
- Edit config.inc.php and set $g_repositoryPath to physical disk location of upload_area directory without a trailing slash - eg: D:\IISroot\TestLink\upload_area
- Do the same for logs directory and save file.
- Fix MSSQL Scripts:
- Open file: D:\IISroot\TestLink\install\sql\mssql\testlink_create_tables.sql on Line 982 fix PK constraint name (from PK_req_relations to PK_testcase_relations )
- Open (mySql) file: D:\IISroot\TestLink\install\sql\mysql\testlink_create_tables.sql and copy lines 81-87 & 129-135 into (MS SQL) D:\IISroot\TestLink\install\sql\mssql\testlink_create_tables.sql - Open site in browser - follow the setup.
- You need to use a SQL Server login (not windows) for setup.
- for the testlink database user pick a complex password or it will fail to setup the user (not a big deal as can do manually later)
Re: IIS Installation problems
Thanks a lot for your help