Install InvoicePlane v1.4.10 on Windows 7 localhost XAMPP 5.6.28 - open source PHP invoices software

Trabla: Install InvoicePlane v1.4.10 on Windows 7 localhost XAMPP 5.6.28 - open source PHP invoices software


Install InvoicePlane v1.4.10 on Windows 7 localhost XAMPP 5.6.28 - open source PHP invoices software

InvoicePlane is a self-hosted open source application for managing your quotes, invoices, clients and payments. InvoicePlane is a solid app to manage your complete billing circle: from quotes over invoices to payments.InvoicePlane  provides CRM-like management for your clients. Enter contact details, notes or add custom fields.You can customize InvoicePlane to make sure it fits your needs: amount formats, email and PDF templates and many more.InvoicePlane is fully translated into 23 languages by community members and more languages are coming soon.
Official Site - https://invoiceplane.com/

Solving:


Watch on YouTube


SQL script used in tutorial to create database and user for InvoicePlane v1.4.10 :

CREATE DATABASE `invoices` 
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'invoices-owner'@'localhost'; 
CREATE USER 'invoices-owner'@'127.0.0.1';
CREATE USER 'invoices-owner'@'::1';

SET PASSWORD 
FOR 'invoices-owner'@'localhost' = PASSWORD('invoices123$%');
SET PASSWORD 
FOR 'invoices-owner'@'127.0.0.1' = PASSWORD('invoices123$%');
SET PASSWORD 
FOR 'invoices-owner'@'::1' = PASSWORD('invoices123$%');


GRANT ALL PRIVILEGES ON 
`invoices`.* TO 'invoices-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`invoices`.* TO 'invoices-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`invoices`.* TO 'invoices-owner'@'::1' WITH GRANT OPTION;


No comments:

Post a Comment