Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

67 total results found

LMS Version 1

DevOps

LMS Version 2

System Support

Cybersecurity

LMS Version 1

This system we use for helps automate every stage of the loan lifecycle, from application to closing.

Jenkins

Automating software development process using Jenkins.

MySQL 8.0 Setup

Install MySQL on Ubuntu servers

MySQL

Percona

Working with Percona

MySQL
Percona
AWS

Docker

Build, share, and run container applications. 

SRR - SME Sales Result Report

The SME Sales Result Report provides a comprehensive overview of your organization's sales performance, specifically focusing on Small and Medium-Sized Enterprises (SMEs). This report offers valuable insights into sales trends, customer behavior, and overall s...

Expense

The Expense module is  flexible to add and track your expenses in a structured manner by categorizing expenses. Additionally, the module allows to create ringi lists, which are essentially expense requests that need approval from relevant authorities. This str...

Excel

This Document offers a collection of tips and tricks for using Excel. 

Cybersecurity Awareness

Security Alert

Create Sample Bulk sheet

Predictive Dialer

A predictive dialer is a system that automatically makes calls to multiple numbers at once. It uses algorithms to predict when call center agents are available. 

Percona Toolkit

Percona

Experimenting each percona toolkit tools to efficiently replicate from the master to slave server

Is this Website Safe? How to Check - ເວັບໄຊທ໌ນີ້ປອດໄພບໍ? ວິທີການກວດສອບ

Cybersecurity Awareness

In this digital world, Check a website is safe is the most critical concern since there are countless malicious websites available everywhere over the Internet ໃນໂລກດິຈິຕອລນີ້, ການກວດສອບເວັບໄຊທ໌ແມ່ນປອດໄພແມ່ນຄວາມກັງວົນທີ່ມີຄວາມສໍາຄັນທີ່ສຸດນັບຕັ້ງແຕ່ມີເວັບໄຊທ໌ອ...

Staff

LMS Version 1

The staff page in a loan management system is primarily used for creating new staff accounts within the system. This allows you to grant access to authorized personnel who will be involved in managing loans. Here's a breakdown of its purpose: New Staff...

Customer

LMS Version 1

Creating new customers is a key function of the customer page in a loan management system (LMS). But it actually offers a wider range of benefits for both borrowers and lenders. the customer page allows you to easily create new customer profiles within the L...

Holidays

LMS Version 1

User can Manage holidays data on this module. These holidays are used when calculating the penalty of a loan. Functionalities User can see all the holidays on the Holiday List page. User can add/edit holiday details.  Holiday Date Event  

Currency Rate

LMS Version 1

The currency rate page in a loan management system is like a foreign exchange translator for your loans. It helps you deal with loans in different currencies (like USD, LAK, THB)  Example: Imagine you have a loan in Thai Baht (THB) but your system tra...

Asset Valuation

LMS Version 1

This asset valuation page is designed to estimate the value of assets associated with specific customers. To begin the valuation process, you'll need to select a customer from the customer list. In other words, customer selection is the starting point for al...

Broker

LMS Version 1

In your loan management system, the broker acts as a bridge between borrowers and lenders. They don't directly issue loans themselves, but rather work to match borrowers with the most suitable loan options based on their financial profile and needs. Brokers ...

Asset Transfer

LMS Version 1

This module allows users to modify the details of assets in a contract after the contract has been created. This is likely targeted at situations where there might be errors or missing information in the initial contract. The module seems to be divided into...

Guarantor

LMS Version 1

This feature implies that when a user is adding a new prospect to the system, the system should automatically attempt to create a guarantor profile based on the provided mobile number. The user enters the guarantor's mobile number in the "Add Prospect" sect...

Loan Prospect

LMS Version 1

A loan prospect is essentially a potential borrower who has been identified as a suitable candidate for a loan. The loan prospect process involves identifying, assessing, and nurturing these potential customers to convert them into actual borrowers. Loan Pr...

Recordings

LMS Version 1

Day 1 Session: 10/06/2024 Modules Holiday Currency Rate BCEL Currency Rate Staff Link: https://us02web.zoom.us/rec/share/dmqPbo_9_muBpNdNjdcpW9mX7WyhN0ytPebylIMkKsw0OVElHhYqNqsxBRpbe1y6.ZnxO_9xKnm6LRfBs Passcode: t1!G4cZw Day 2 Session:  11/06/2024...

Loan Contract

LMS Version 1

The document creation process begins with the approval of a loan prospect and culminates in the activation of the loan contract upon disbursement approval. This process involves multiple stages of review, approval, and verification. Contract Approval Proces...

Collection

LMS Version 1

Our system all collection details are maintain with this module. There are 5 collection method 1 . Cash The cash collection method is a fundamental process for recording payments made in physical currency. It involves the receipt of cash, generation of ...

Step 1 — Installing MySQL

MySQL 8.0 Setup

Update the package index sudo apt update Install the MySQL server package sudo apt install mysql-server Start MySQL server sudo systemctl start mysql.service Check MySQL server status sudo systemctl status mysql The st...

Step 2 — Configuring MySQL

MySQL 8.0 Setup

Open MySQL prompt sudo mysql Change the root user’s authentication method to one that uses a password ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; Exit the MySQL prompt exit Authenticate as ...

Step 3 — Creating a Dedicated MySQL User and Granting Privileges

MySQL 8.0 Setup

Open MySQL prompt mysql -u root -p Create a new User CREATE USER 'username'@'host' IDENTIFIED WITH authentication_plugin BY 'password'; or CREATE USER 'username'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; Grant privileges ...

Step 1 — Install Percona

Percona

Update the package index sudo apt update Install Curl packages sudo apt install -y curl Download the latest release of percona curl -O https://repo.percona.com/apt/percona-release_latest.generic_all.deb Install packages and dependencies ...

Creating a VM using VirtualBox

Jenkins

First verify that the virtualization option is enabled. You can do that by going to the BIOS of your machine. Under security menu, you can see the Virtualization option. If it is disabled, enable it and start the machine. Then download the Oracle Virtual ...

Installing Prerequisites

Jenkins

Step 1: Install Java Install java on the virtual machine using the following commands in the terminal. Search for OpenJDK. $ sudo apt-cache search openjdk install OpenJDK 17 using the APT package manager $ sudo apt install openjdk-17-jdk -y ...

MySQL Extra

MySQL 8.0 Setup

Start MySQL server sudo systemctl start mysql.service Check MySQL status sudo systemctl status mysql Restart MySQL server sudo systemctl restart mysql Uninstall MySQL sudo systemctl stop mysql sudo apt-get purge mysql-se...

Installing Jenkins

Jenkins

Go to Jenkins official website and download Jenkins for Ubuntu/debian. https://www.jenkins.io/download/ Then run the commands that is shown in the page. It should look something like below: NOTE: Don't need to run the following command since java is alre...