Appearance
Install InfySupport
Once you purchase InfySupport system then you will be able to find dist.zip
within main zip.
Extract that file on your local and follow the following steps:
Copy files to Web Server
Upload dist.zip
to your web server's root (public_html) and extract it there.
Default Database Setup
- Open PHPMyAdmin on your server and do a login.
- Click on the Databases tab.
- Create a new database and specify a Database name of your choice and Click Create button.
- Now on the left, select the database (infy_support) OR the one that you have created.
- Click Import in the top menu
- Under Import, choose the default sql file from
dist/database/infy_support.sql
and click button Go.
Environment Variables
Open .env
file from your server's root folder.
You need to change the following information into your environment (.env) file.
App name and URL Setup
ini
APP_NAME="App Name"
APP_URL="https://your-domain.com"
Database Setup
ini
DB_HOST="DB Host here"
DB_PORT="3306" // this may changed as per your DB
DB_DATABASE="DB Name"
DB_USERNAME="DB Username"
DB_PASSWORD="DB Password"
Email Setup
You will also need to set up mail configuration and update the following variables. You can use the below video for the reference on how to setup email configuration for cPanel servers.
ini
MAIL_DRIVER=
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME="Your App Name"
Amazon S3 Storage Setup
If you want to store your files to direct your s3
bucket then you have to use following .env
variables. You need to change FILESYSTEM_DRIVER
and MEDIA_DISK
value to s3
when you are using AWS file storage.
ini
FILESYSTEM_DRIVER=s3
MEDIA_DISK=s3
ini
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
AWS_BUCKET=
AWS_ENDPOINT=
AWS_URL=
Or you can use your choice of storage driver to store your media assets if you want. All of your attachments will be placed into that.
Setup the google and facebook social login. find step To Setup Google Login to set up google login and click To Setup Facebook Login to setup the facebook login.
ini
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT={APP_URL}/login/google/callback
Note: {APP_URL} should be replaced by your domain. e.g https://my-domain.com/login/google/callback
ini
FACEBOOK_APP_ID=
FACEBOOK_APP_SECRET=
FACEBOOK_REDIRECT={APP_URL}/login/facebook/callback
Note: {APP_URL} should be replaced by your domain. e.g https://my-domain.com/login/facebook/callback
- Update the pusher env for real time conversations
Please click here to follow pusher env configurations.
Admin login
You can do admin login by accessing given URL.
YOUR_APP_URL/login
Email: admin@infysupport.com
Password: 123456