Update Installing Automatic phpMyAdmin for Pterodactyl

Arnaud Lier 2024-05-12 13:29:08 +00:00
parent 1b461b79bd
commit 189118770c

@ -44,7 +44,7 @@ sudo dnf install -y nodejs yarn
## Installing dependencies
In your SSH terminal, run these commands :
In your SSH terminal, run these commands:
```shell
npm i -g yarn
cd /var/www/pterodactyl
@ -58,7 +58,7 @@ Follow the `PanelEdit_EN.md` or the `PanelEdit_FR.md` file contained in the ZIP
# Installing phpMyAdmin side
Like Pterodactyl side, upload all the files of the folder `phpmyadmin` of the ZIP that you have downloaded in the folder of your phpMyAdmin installation.
Then, you will need to modify configuration for the host in `config.inc.php` by adding these lines:
```PHP
```php
$cfg['Servers'][$i]['auth_type'] = 'signon';
$cfg['Servers'][$i]['SignonSession'] = 'TokenSession';
$cfg['Servers'][$i]['SignonURL'] = 'token.php';
@ -66,7 +66,7 @@ $cfg['Servers'][$i]['LogoutURL'] = 'token-logout.php';
```
A server configuration should now look like this for example:
```PHP
```php
$i++;
$cfg['Servers'][$i]['verbose'] = 'example';
$cfg['Servers'][$i]['connect_type'] = 'tcp';