Skip to content

Latest commit

 

History

History
81 lines (53 loc) · 4.25 KB

INSTALL.md

File metadata and controls

81 lines (53 loc) · 4.25 KB

Server Requirements

  • PHP version 7.2 to 7.4 are supported, PHP version 5.6 and 8.0 are NOT supported. Please note that PHP needs to have php-gd, php-bcmath, php-intl, php-openssl, php-mbstring and php-curl installed and enabled.

  • MySQL 5.5, 5.6 and 5.7 are supported, also MariaDB replacement 10.x is supported and apparently offering better performance.

  • Apache 2.2 and 2.4 are supported. Also Nginx has been proven to work fine, see wiki page here.

  • Raspberry PI based installations proved to work, see wiki page here.

  • For Windows based installations please read the wiki and also existing closed issues as this topic has been covered well in all the variants and issues.

Local install

First of all, if you're seeing the message 'system folder missing' after launching your browser, then that means you have cloned the repository and have not built the project properly.

  1. Dowload the latest stable or prerelease for a specific branch from github. A regular repository clone will not work unless you are brave enough to build the whole project!
  2. Create/locate a new mysql database to install open source point of sale into
  3. Execute the file database/database.sql to create the tables needed
  4. unzip and upload Open Source Point of Sale files to web server
  5. Modify application/config/database.php and modify credentials if needed to connect to your database
  6. Modify application/config/config.php encryption key with your own
  7. Go to your point of sale install public dir via the browser
  8. LOGIN using
  • username: admin
  • password: pointofsale
  1. Enjoy
  2. Oops an issue? Please make sure you read the FAQ, wiki page and you checked open and closed issue on GitHub. PHP display_errors is disabled by default. Create an application/config/.env file from the .env.example to enable it in a development environment.

Local install using Docker

From now onwards OSPOS can be deployed using Docker on Linux and Mac, locally or on a host (server). This setup dramatically reduces the number of possible issues as all setup is now done in a Dockerfile. Docker runs natively on Mac and Linux. Please refer to the docker documentation for instructions on how to set it up on your platform.

Be aware that this setup is not suited for production usage. Change the default passwords in the compose file before exposing the containers publicly.

Start the containers using following command

    docker-compose up

Nginx install using Docker

Since OSPOS version 3.3.0 the docker installation offers a reverse proxy based on nginx with a Letsencrypt TLS certificate termination (aka HTTPS connection). Letsencrypt is a free certificate issuer, requiring a special installation that this docker installation would take care for you. Any Letsencrypt TLS certificate renewal will be managed automatically for you, therefore there is no need to worry about those details.

Before starting your installation, you would need to edit docker/.env file and configure it to contain the correct MySQL/MariaDB and phpMyAdmin passwords (don't use the defaults!). You will also need to register to Letsencrypt and configure your host domain name, Letsencrypt email address in docker/.env file. The variable STAGING needs to be set to 0 when you are confident your configuration is correct so that Letsencrypt will issue a final proper TLS certificate.

Follow local install steps, but instead of

    docker/install-nginx.sh

Do not use

    docker/uninstall.sh

on live deployments unless you want to tear down everything because all your disk content will be wiped out!

Cloud install

If you choose DigitalOcean: Through this link, you will get a $100 credit for a first month. Check the wiki for further instructions on how to install the necessary components.