Giter VIP home page Giter VIP logo

fusioninvoice's Introduction

FusionInvoice

Self-hosted online invoicing for freelancers and small businesses

FusionInvoice is built for freelancers and small businesses who need a simple, yet powerful self-hosted web based invoicing system.

Requirements

  • A web host or server with:
    • PHP >= 5.3.0
    • MySQL >= 4.x
  • A modern and updated web browser

Installing FusionInvoice

For those of you comfortable with installing web applications, installing FusionInvoice should take 5 minutes or less.

  1. Create an empty database on your web server.
  2. Clone the FusionInvoice repo to your web server, either into its own subdirectory or into the public root of the web server.
  3. Run the FusionInvoice installer from your web browser: * If you uploaded the files into a subdirectory, access http://www.your-domain.com/the-subdirectory/index.php/setup * If you uploaded the files into the root, access http://www.your-domain.com/index.php/setup

Once the installer finishes, the installation is complete and you may log into FusionInvoice using the email address and password provided during installation!

Removing index.php

This step is entirely optional but will make your URL's more pleasing to look at.

Instead of:

http://your-server.com/index.php/invoice/create

You'd see:

http://your-server.com/invoice/create

Your server or web host must have Apache mod_rewrite enabled for this to work.

Step 1

Edit application/config/config.php

Replace Line 29

$config['index_page'] = 'index.php';

with

$config['index_page'] = '';

This will change the actual links in the application to use the new URL structure.

Step 2

Add an .htaccess file into the root where index.php is located and place the following content in the file:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

Once you save the file and visit your URL for FusionInvoice, you should be doing so without the index.php included.

Documentation

FusionInvoice 1.3 Docs

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.