OK
I wanted to get a front end that required a user to login before they can do anything. I want the user to be registered with us before they can raise a ticket, and only us can register / activate a user.
I thought if I could hack this MOD I might get what I was after but because of my lack of experience it hasn't quite worked. Now when go to the ticket URL I get the message
"Fatal error..get tech support"
What have I done?
Could someone help?
I have created the tables ost_clients and ost_users by using the SQL code supplied, I have inserted 2 clients and 2 users
I have extracted the files from the zip to the osticket directory and all the files look like they are there
I edited the index.php
so
require('client.inc.php');
require(CLIENTINC_DIR.'header.inc.php');
is now
require("client.inc.php");
require("$client_dir/header.inc.php");
also the require(CLIENTINC_DIR.'header.inc.php');
at the end of the file has been replaced with require("$client_dir/header.inc.php");
I guess the error is obvious but I don't have enough experience to see the fault.
Malc