BrianMathis.net

howto: install eticket support/trouble ticket system on ubuntu

by on Feb.15, 2008, under Consulting, Howto, Ubuntu

i have been using a php-based program called eticket to keep track of all my customer’s helpdesk requests for my consulting business for awhile now. it’s really easy to setup and use, so i thought i’ll post my setup steps to help anyone else out.

first download the latest version of eticket from the sourceforge website, then move the file to your server via ftp, ssh, etc… and unzip the archive to an appropriate directory.

create a mysql database and assign a user for the database.

mysql -u root -p

create database eticket;

grant select, insert, update, delete, create, drop, index, alter, create temporary tables, lock tables on eticket.* to ‘eticket’@'localhost’ identified by ‘eticketpassword’; (all on one line)

quit;

make sure you are in the eticket directory and set the permission of settings.php and automail-settings.pl to 666

sudo chmod 666 settings.php automail-settings.pl

go to the eticket installation directory in your web browser, it should look like http://yourserver/eticket/install and follow the instructions to begin installation. once completed, you’ll need to change the permissions of settings.php to 644 and automail.pl to 755

sudo chmod 644 settings.php && sudo chmod 755 automail.pl

now remove or rename the install directory and you’re ready to go. login to the admin panel and configure your new support/trouble ticket system. for more info, please visit the eticket website

note: to allow attachments, you will need to chmod the attachments directory to 666

sudo chmod 666 -R attachments

Related posts:

  1. tip: eticket captcha image not showing?
  2. howto: install zimbra desktop on ubuntu 8.04 hardy heron
  3. howto: mount a windows share in ubuntu server
  4. howto: citrix web client 10.6 in ubuntu gutsy
  5. howto: ubuntu theme for windows xp
:, , ,

7 Comments for this entry

  • Rourak

    This is exactly what I need for my helpdesk at work.

    Thank you ;)

  • Hyman

    Dear Sir,
    when i follow you instruction to install the eTicket, about the step2 , i got an blank page and cannot go through. could you help me on this?
    thanks a lot
    my computer:
    Ubuntu 7.10
    PHP5
    mysql 5

  • bmathis

    @ Hyman

    I sent you an email earlier asking a few questions to help you troubleshoot the problem. Once you get back to me and we figure out whats going on, I’ll post the answer here.

  • chrish

    This is a better…

    root@ host# mysql -u root -p
    mysql> create database eticket;
    mysql> connect eticket;
    mysql> GRANT ALL PRIVILEGES ON `eticket` . * TO ‘eticket’@'localhost’ identified by ‘eticket’ WITH GRANT OPTION;
    mysql> use eticket
    mysql> quit;

  • bmathis

    Thanks for the tip Chrish. Anything that requires less typing is better :)

  • me

    How and which directory do you unzip the eticket?

  • jason

    I have recieved a blank page when i fill in the details in step 2 of the install and click submit. on the next page it says step 3 and then is nothing after that.

    I am using php 5.1.6 and mysql 5.0.22
    eTicket-1.7.3

    any help will be greatly appreciated.

Leave a Reply

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!