Skip to content

Django Environment Setup Basics

Download & Install Python: Download and install the latest Python version for Windows from https://www.python.org/downloads. Open Command Prompt ...

Details

How to resolve Duplicate Record Number issue for Open Item Adjustment in QAD

First, find out Journal ID associated with the Daybook. for each journal where journalcode = “CUSADJST”: display journal_id. ...

Details

How to deploy Laravel project on Shared Hosting using cPanel

Step 1: Zip archive all contents inside your project directory. Step 2: Upload the Zip file into hosting ...

Details

How to implement Laravel Excel for exporting data

Laravel Excel allows exporting data in various formats like – XLSX, CSV, XLS, HTML, etc. 1. Install Package ...

Details

Laravel Role Permission based authentication using Spatie package

Install Composer Packages: composer require spatie/laravel-permission composer require laravelcollective/html Now open config/app.php file and add service provider and ...

Details

Git Repository Basics

Adding repo to Github from root directory git init git add -A git commit -m ‘Added my project’ ...

Details

How to disable MySQL Strict Mode

Login to MySQL Server as ‘root’ user and run the following command. SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,’ONLY_FULL_GROUP_BY’,”))

Details

How to add a custom helper class in Laravel

Step 1: Create your Helpers (or other custom class) file and give it a matching namespace. Write your ...

Details

Laravel Installation and Get Going Basics

Installation Via Composer: If your computer already has PHP and Composer installed, you may create a new Laravel ...

Details

How to Cancel/Reject a Purchase Requisition

First go to CSP Browse and check whether this Purchase Requisition is linked with any CSP or not. ...

Details