Skip to content

Install InfyJobs

Once you purchase InfyJobs system then you will be able to find dist.zip within the main zip.

Video Tutorial

You can also follow the video below for video tutorial of the installation process.

Extract that file on your local and follow the following steps:

Copy files to a web server

Upload dist.zip to your web server's root (public_html) and extract it there.

Default Database Setup

  1. Open PHPMyAdmin on your server and do a login.
  2. Click on the Databases tab.
  3. Create a new database and specify a Database name of your choice and Click Create button.
  4. Now on the left, select the database (infy_jobs) OR the one that you have created.
  5. Click Import in the top menu
  6. Under Import, choose the default sql file from dist/database/infy_jobs.sql and click button Go.

Environment Variables

Open .env file from your server's root folder.

Setup Default DB

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"

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.

Set Stripe configuration it is using while IPD payments. Here are some links by using it you will get an idea about how to generate stripe API keys.

ini
STRIPE_KEY=
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET_KEY=

You have to set webhook URL into stripe, webhook URL should be YOUR_APP_URL/subscription-update.

Setup the google and facebook social login. Find step To Setup Goolge Login to set up google login and click To Setup Facebook Login to setup the facebook login.

From here you can find link to linkdein.

ini
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT={APP_URL}/login/google/callback

FACEBOOK_APP_ID=
FACEBOOK_APP_SECRET=
FACEBOOK_REDIRECT={APP_URL}/login/facebook/callback

LINKEDIN_APP_ID=
LINKEDIN_APP_SECRET=
LINKEDIN_REDIRECT={APP_URL}/login/linkedin/callback

You can also use your choice of storage driver to store your media assets if you want. All of your attachments will be placed into that. And you should be ready to go.

Setup Facebook Login

You just need facebook app id, app secret and redirect URL for facebook auth login.

You can find steps here

NOTE: DO not forget that Authorized Redirect URL should be e.g YOUR_DOMAIN/login/facebook/callback, you just need to replace YOUR_DOMAIN by your domain name.

Now you have App ID, App Secret and Redirect URL so replace its value into appropriate .env variable.

Facebook login env variables are following :

ini
FACEBOOK_APP_ID=
FACEBOOK_APP_SECRET=
FACEBOOK_REDIRECT={APP_URL}/login/facebook/callback

Setup Google Login

You just need google client secret, id and redirect URL for google auth login.

You can find steps here or you can watch video at here

You can watch video here.

NOTE: DO not forget that Authorized Redirect URL should be e.g YOUR_DOMAIN/login/google/callback, you just need to replace YOUR_DOMAIN by your domain name.

Now you have Client ID, Client Secret and Redirect URL so replace its value into appropriate .env variable.

Goole social login env variables are following :

ini
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT={APP_URL}/login/google/callback

Setup Google Captcha

Set the google captcha keys too. Here is link to generate and get the keys of google captcha.

ini
GOOGLE_RECAPTCHA_SITE_KEY=
GOOGLE_RECAPTCHA_SECRET=

Default is true, If you don't want to show the version number in the footer you can set false

ini
IS_VERSION=false

Admin login

You can do admin login by accessing given URL.

YOUR_APP_URL/admin/login

Email: admin@infyjobs.com

Password: 123456