From: Mitchell K. S. <mk...@pa...> - 2001-11-05 16:39:35
|
Greetings. I need some help getting the helpdesk setup. In the INSTALL file there were no instructions for setting up the Apache directives for the helpdesk. Everything else seemed to go okay including setting up mysql. I modified my httpd.conf file like so: <VirtualHost 172.31.1.32> DocumentRoot /websites/helpdesk ServerName helpdesk ServerAdmin mk...@pa... <Directory /websites/helpdesk> AllowOverride None order allow,deny allow from all </Directory> ErrorLog /websites/helpdesk/logs/errors.log CustomLog /websites/helpdesk/logs/access.log combined </VirtualHost> When I browse to http://helpdesk I get the following error: Fatal error: Call to undefined function: mysql_connect() in /websites/helpdesk/includes/connect.inc.php on line 10 My general.conf.php looks like this: <snip> /* If you are using http://someaddress.com/phphelpdesk, then you must set the base url to "http://someaddress.com/phphelpdesk/" Notice the '/' at the end you must put that in there. If you are using a virtual host such as http://phphelpdesk.somecompany.com, then you can just leave it empty with the quotes touching ""; */ $g_base_url = ""; //base url location // you HAVE to set your domain name here, with no HTTP: // or / at the end or anything... $g_domain = "helpdesk"; // this is the path from the last part of the $g_base_url // parameter. If there is no path, set this to "/"; NOTICE // THE BEGINNING AND ENDING /'s!! $g_base_path = "/"; <snip> Any help would be greatly appreciated. Mitchell K. Smith Service and Information Systems Manager ePlus Technology of PA 130 Futura Drive Pottstown, PA 19464 610-495-7800 ext. 264 mk...@pa... |