Ticket based Support System

Status
Not open for further replies.
Joined
Jan 1, 2009
Messages
385
Reaction score
20

AdriaN401MasteR - Ticket based Support System - RaGEZONE Forums
Our chain of Tutorial continues.

This system is usefull because players can ask questions and an admin can answer them quickly and can also close the ticket if he thinks the problem has been solved.

The installation is simple.

Let's get started:

1. Execute this query on your database, remeber to replace {prefix} with the prefix of your game tables ( game_ for example ):
PHP:
CREATE TABLE `{prefix}_supp` (
  `ID` int(11) NOT NULL auto_increment,
  `player_id` int(11) NOT NULL,
  `time` int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `text` longtext NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY  (`ID`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;

2. Upload these files to your game directory ( these are english files - might have grammar mistakes, the files have been translated weeks ago and I've never checked them twice ).
- Mediafire

Attachment also.
Every link contains the same files..

Good luck with it :glare:!
 

Attachments

Last edited:
I'm working on my own support system, Submit a bug, and only admin can confirm if fixed and only he can delete them too.
 
Status
Not open for further replies.
Back