PESMCS Ticket (hereinafter referred to as PT) is an open source customer service work order system released based on GPLv2 protocol. PT uses a new design concept to realize that one sentence of JS can be embedded in any page, making the work order system more portable.

Preview:

 Open source customer service work order system PESCMS Ticket

 Open source customer service work order system PESCMS Ticket

Official download address: click here

Operating environment

PHP 5.6 and above
MySQL 5.5 and above
IE browser is not guaranteed to be compatible

Installation and use

Download and unzip the program to the directory where your HTTP running environment is located.
If no virtual host is configured, access the Public directory. Otherwise, configure the virtual host directory to Public
Fill in the corresponding data according to the installation program to complete the software installation.

Quick use

Log in to the system background - work order model - create a work order. After creation, click the 'Generate JS' button. Save the JS file locally. Finally, in any page, you can implement your work order system by introducing the following code.

 <html> <head> <meta charset="utf-8"> </head> <body> <!-- JQ is a required component --> <script src=" http://libs.baidu.com/jquery/2.1.4/jquery.min.js "></script> <!-- JQ is a required component --> <script src="Work Order JS File Generated by PESCMS TICKET" id="ticket"></script> <script> var ticket = PT.createForm("ticket"); </script> </body> </html>
Article Contents