Easy Ticket
Installation Developer GuideSupport
  • 🍕Getting Started
  • Installation
    • 🔩Application Requirement
    • 🪛Application Installation
  • Administrator Login
    • 🔑Login
    • 🙋FAQ
    • 📖Knowledge Base
      • 📁Category
      • 📂Sub Category
      • 📚Knowledge Base
    • 🎫Ticket
      • 📒Dynamic Form Field
      • 🐦Canned Messages
      • 🎟️All Ticket
      • ✏️Create Ticket
      • 🔲Unassigned Tickets
      • 📝Open Ticket
      • ❌Close Ticket
    • 👨‍💻Department
    • 🔐Permissions
      • 🔏Create Permission
      • 🗝️Assign Permission
    • 🙍‍♂️User
      • 🕵️‍♂️Agent
      • 👨‍💼Customer
    • 📄Form Submissions
      • 📱Contact Us Submissions
      • 🗞️Newsletter Submissions
    • 📄CMS
    • 🔩Configuration
      • 🔧Configurations
      • ⚙️Front Page
      • 🇮🇳Language
      • 🔃Import Demo
      • 📧E-Mail Templates
  • Agent
    • 🔑Login
    • 📈Dashboard
    • 🎫Tickets
    • 📭Open Ticket
    • 📪Closed Ticket
    • ⏸️On Hold Ticket
  • Customer
    • 🔑Account
    • 🗓️Dashboard
    • 🎟️Ticket
    • 📭Open Tickets
    • 📪Closed Tickets
    • ⏸️On Hold Ticket
  • Front Page Tour
    • 🏡Home
    • 📚Knowledge Base
    • ❓FAQ
    • 🎧Contact Us
    • 🗒️Submit Ticket
  • Getting Help
    • 📞Contact Us
  • Project Customization
    • 👨‍💻Developer Guide
  • Source and credits
    • 🎇Source and credits
  • Policy
    • 🚨Application Policy
Powered by GitBook
On this page
  • Installation on localhost
  • Installation on web hosting
  1. Installation

Application Installation

In this section, we will learn about how we can install easy ticket in localhost or on the live server as well.

PreviousApplication RequirementNextLogin

Last updated 2 years ago

Good to know: Well, for the easy installation of the software we have created an installer, which will help you to install this project without using any laravel command.

Installation on localhost

  • Unzip the script which you have downloaded

  • Start your xampp or wampp server

  • If you are using xampp please put the extracted file inside htdocs folder

  • Go to your .env file and set your database, database username, and database password

  • Open terminal from your project root folder

  • Then run php artisan serve

  • Go to browser and enter http://127.0.0.1:8000/ or http://localhost:8000

When you visit the URL for the first time, you have the UI like the something below.

You just have to click on the next button, and fill in the details which we have asked for.

Installation on web hosting

  • Unzip the script inside the public_html folder

  • Now copy the .htaccess file from the public folder and paste it into the project root folder

  • Now remove all the code from your .htacess file and the below code into it.

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ ^$1 [N]

RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
RewriteRule ^(.*)$ public/$1 

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ server.php
</IfModule>
  • Now open your .env file and update the below env variable as I have done in the below code example

APP_URL= your_app_url
DB_DATABASE=your_db_name
DB_USERNAME=your_db_username
DB_PASSWORD=your_db_password
  • When you visit your URL you have the image like something below, you just have to click on next and fill in the details which we have asked.

Note: If you face any issue regarding the storage issue, which is very rare to occur then in that case please run this command chmod -R 775 storage

🪛