
I'm looking at using the helpdesk software in a small organisation with a few PC's on a LAN. As they don't have the funds for a full blown sql server I'm looking at using one PC as the host for the database and what will become in effect a local intranet.
I'm testing this out on my home PC and have installed SQL server and created a default database which is in the default location C:\Program Files\Microsoft SQL Server\MSSQL\Data
I've created a folder on a different drive which will contain the html and other files for the intranet ( F:\test server ) and have extracted the files contained in the download to this folder.
However now I'm stuck as the info in the readme.htm document deals with using a 3rd party host for the database and the more traditional hosting of a website on a remote server. All attempts to point the Helpdesk to the database in the location above fails, and my lack of experience with PHP means I can't see what's wrong.
The current settings are
Code: Select all
/* Website settings */IT Helpdesk";
$hesk_settings['site_url']="http://localhost/test";
/* Help desk settings */
$hesk_settings['hesk_url']="http://localhost/test";
$hesk_settings['hesk_title']="My company support system";
$hesk_settings['max_listings']="15";
$hesk_settings['language']="english";
$hesk_settings['print_font_size']="12";
$hesk_settings['debug_mode']="0";
/* Contacts */
$hesk_settings['support_mail']="support@mywebsite.com";
$hesk_settings['webmaster_mail']="webmaster@mywebsite.com";
$hesk_settings['noreply_mail']="NOREPLY@mywebsite.com";
/* Server info */
$hesk_settings['server_path'] = "C:\Program Files\Microsoft SQL Server\MSSQL\Data";
/* Database settings */
$hesk_settings['database_host'] = "localhost";
$hesk_settings['database_name'] = "Helpdesk";
$hesk_settings['database_user'] = "guest";
$hesk_settings['database_pass'] = "password";
Cheers
Malcolm