Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Warning about ignoring php compatibility error #119

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added static/img/userguides/installer-error.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 11 additions & 3 deletions versioned_docs/version-0.9.1/Installation/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import TOCInline from '@theme/TOCInline';
- MySQL `5.7.22` or higher (MySQL `8` recommended) **or** MariaDB `10.2` or higher.
- A web server (Apache, NGINX, Caddy, etc.)
- `curl`
- `tar`
- `unzip`
- `git`
- `composer` v2

Expand All @@ -52,7 +50,7 @@ curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash
apt update

# Install Dependencies
apt -y install php8.3 php8.3-{common,cli,gd,mysql,mbstring,bcmath,xml,fpm,curl,zip} mariadb-server nginx tar unzip git redis-server
apt -y install php8.3 php8.3-{common,cli,gd,mysql,mbstring,bcmath,xml,fpm,curl,zip} mariadb-server nginx git
```

### Extra Dependency Used on this Dashboard
Expand Down Expand Up @@ -245,6 +243,16 @@ sudo systemctl enable --now ctrlpanel.service

## Running the installer

import useBaseUrl from '@docusaurus/useBaseUrl';

:::info

If you see the error **"php version: 8.3.6 (minimum required 8.1)"** on the main installer page, then just ignore it. This is due to the specifics of checking version compatibility. PHP8.3 has been tested and works stably!

<img src={useBaseUrl('/img/userguides/installer-error.png')} />

:::

#### Navigate to `https://yourdomain.com/install` to run the Web-Installer and follow the steps.

If you encounter problems with the email setup, you can use the skip button and set it up later.
Expand Down
Loading