.. author:: Daniel Kratz <uberlab@danielkratz.com>
.. tag:: lang-php
.. tag:: web
.. tag:: audience-business
.. tag_list::
Akaunting is a free, open source accounting software designed for small businesses and freelancers. With features like invoicing, expense tracking and accounting it can be used to manage money online while retaining full data ownership.
The software is based on top of the Laravel framework and therefore written in PHP.
Note
For this guide you should be familiar with the basic concepts of
Akaunting is released under the GPLv3 license. The licence can be found in the GitHub repository. Please also regard the Akaunting terms.
We're using PHP in the stable version 7.1:
[isabell@stardust ~]$ uberspace tools version show php
Using 'PHP' version: '7.1'
[isabell@stardust ~]$
Your domain needs to be set up:
cd
to your :manual:`DocumentRoot <web-documentroot>` and download the latest release, then unzip it into the html
directory:
[isabell@stardust ~]$ cd /var/www/virtual/$USER/
[isabell@stardust isabell]$ wget --output-document=latest.zip https://akaunting.com/download.php?version=latest
--2018-10-09 10:23:04-- https://akaunting.com/download.php?version=latest
Resolving akaunting.com (akaunting.com)... 139.162.160.225
[…]
[isabell@stardust isabell]$ unzip latest.zip -d html
[…]
inflating: html/routes/api.php
inflating: html/routes/channels.php
[isabell@stardust ~]$
Point your browser to your domain (e.g. isabell.uber.space) to set up and configure your Akaunting installation.
Choose your desired language.
Akaunting saves your data in a MySQL database. We suggest you use an :manual_anchor:`additional database <database-mysql.html#additional-databases>`. You need to create this database before you enter the database credentials in the installer.
[isabell@stardust ~]$ mysql -e "CREATE DATABASE ${USER}_akaunting"
[isabell@stardust ~]$
Enter the following informations into the installer:
- your MySQL hostname, username and password: the hostname is
localhost
and you should know your MySQL :manual_anchor:`credentials <database-mysql.html#login-credentials>` by now. If you don't, start reading again at the top.- the name of your newly created Akaunting database (e.g.
isabell_akaunting
)
Fill in the name of your company, the company email adress (email sender if you send e.g. invoices), an admin email adress and your admin password.
That's it. After the installation you can login with your chosen admin credentials.
There is a user manual available which describes the interface, concepts and workflows:
Note
Check the update feed regularly to stay informed about the newest version.
You will be additionally notified about available updates in the built in notification center. You can update the installation in the update wizzard which you can find in the Akaunting web interface.
Warning
Please note that third-party apps (plugins) need to be updated seperately. Available app updates are listed directly under the core updates. Make sure to check these regularly.
Tested with Akaunting 1.2.16, Uberspace 7.1.13
.. author_list::