symou
March 8, 2024, 2:06pm
1
hello i had some problme when i tryed to setup (invoice ninja) web server
i had 500 error some helps for me
thanks
hillel
March 8, 2024, 2:24pm
2
Hi,
If youโre seeing a 500 error in the app there will be details about the error in either the web server error logs or the application logs in storage/logs.
Try this and let me know if there are any confusing or unclear instructions:
This is a basic tutorial for a default installation of a InvoiceNinja instance on Ubuntu
update and upgrade
```bash
sudo apt update && sudo apt upgrade -y
```
ptional step for QEMU VM
```bash
sudo apt install qemu-guest-agent -y
```
install dependencies
At the time of writing this, Ubuntu 22.04 uses PHP 8.1
nstall php
```bash
sudo apt install php-fpm -y
```
install php extensions
```bash
sudo apt install php-{bcmath,ctype,fileinfo,json,mbstring,pdo,tokenizer,xml,curl,zip,gmp,gd,mysqli,mysql} -y
This file has been truncated. show original