mscinternet Posted October 11, 2002 Share Posted October 11, 2002 I got a question: For checking the status of a ticket, what is it what I have to write for the 'name' field? Email address? Person name? What is it? Because whatever I try I always get an error that the ticket doesn't match with the username? ------------------------------------- I'm now able to send a ticket and see it on admin section. Close it and everything. In a trial, I try to see the status of a ticket by clicking on check status. However, I receive an error. I was checking the help_status.php file and it looks like if name field for status respond to $name? am I right? But what is it response to? Whatever I try it doesn't work! I believe it should respond to email address of the customer. That will makes it easier I guess. Thanks, Brian Quote Link to comment Share on other sites More sharing options...
Snowman Posted October 12, 2002 Author Share Posted October 12, 2002 youre right it probably should respond to the customers email, i'll look into it for a future release. Currently you need to use the username you used when registering the ticket. Quote Link to comment Share on other sites More sharing options...
Guest Posted October 12, 2002 Share Posted October 12, 2002 Some more features would be very useful like: Adding the name, email and ticket number of the user to the email notification would be great if not that then: The user's account - email, name and ticket number. Ticket activity email notifications. On hold, re oped and complete ticket notifications. Also, being able to delete a ticket. Last one if possible is fixing the constant re-login issue when you use the HelpDesk links in the left collum. Maybe a login and out feature would fix this. Quote Link to comment Share on other sites More sharing options...
Guest Posted October 28, 2002 Share Posted October 28, 2002 I got the helpdesk to work to a point, but I know I am supposed to do something to the MySQL database, but i cant figure out what, anyone help me on this? thanks Quote Link to comment Share on other sites More sharing options...
bdownes Posted October 30, 2002 Share Posted October 30, 2002 Would anyone mind telling me why customers continue to receive Notification emails (from Helpdesk) that do not include the entire URL? The URL's are missing the http://www.mycompany.com See sample below... _______________________________________ Your request for support has been completed. Your ticket number is: 1 To view the solution to your request, please go to: /helpdesk_status.php _________________________________________ Any thoughts on what is causing this? I have put on the configure.php files the location of the http and https servers to http://www.mycompany.com I am stumped. Cannot find a thread on this issue. Quote Jared Geesey Link to comment Share on other sites More sharing options...
bdownes Posted November 17, 2002 Share Posted November 17, 2002 Here is the sql file for Help Desk. This works for me. DROP TABLE IF EXISTS helpdesk; CREATE TABLE helpdesk (ticket_id int(255) UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, email TEXT NOT NULL, problem TEXT NOT NULL, solution TEXT NOT NULL, status TEXT NOT NULL, date TEXT NOT NULL, priority TEXT NOT NULL, PRIMARY KEY (ticket_id)); DROP TABLE IF EXISTS helpdesk_members; CREATE TABLE helpdesk_members ( ? ?username VARCHAR(255) NOT NULL, ? ?password TEXT NOT NULL, ? ?email TEXT NOT NULL, ? ?signature TEXT NOT NULL, ? ?PRIMARY KEY (username) ); INSERT INTO helpdesk_members VALUES ('admin','password','[email protected]','Your Name<BR>Technical Support<BR>http://www.yourstore.com'); INSERT INTO configuration VALUES ('', 'Support Email Address', 'SUPPORT_EMAIL_ADDRESS', '[email protected]', 'Support email address', 1, '99', '', '', NULL, NULL); Quote Jared Geesey Link to comment Share on other sites More sharing options...
leeherron Posted December 1, 2002 Share Posted December 1, 2002 Nice add-on, perhaps it should be placed within the My Account section, then glued to the My Account owner's id. Quote Link to comment Share on other sites More sharing options...
asim0s Posted December 9, 2002 Share Posted December 9, 2002 ive read through the thread very extensively but manage to find no solution to my problem im experiencing the same probs as the other guys here click on the link and nothing appears i did as cc said but in my account.php there is this line $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_ACCOUNT, '', 'SSL')); which is not at all same with the suggestions given pls advise me through Quote Link to comment Share on other sites More sharing options...
asim0s Posted December 9, 2002 Share Posted December 9, 2002 ok guys problem fixed patience as the ancients said is a great virtue im experiencing a small problem now the labels all appear as this TEXT_NAME TEXT_EMAIL TEXT_PROBLEM TEXT_PRIORITY any hints??? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.