Update Installing Automatic phpMyAdmin for Pterodactyl

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

@ -58,7 +58,7 @@ Follow the `PanelEdit_EN.md` or the `PanelEdit_FR.md` file contained in the ZIP
# Installing phpMyAdmin side # 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. 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: 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]['auth_type'] = 'signon';
$cfg['Servers'][$i]['SignonSession'] = 'TokenSession'; $cfg['Servers'][$i]['SignonSession'] = 'TokenSession';
$cfg['Servers'][$i]['SignonURL'] = 'token.php'; $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: A server configuration should now look like this for example:
```PHP ```php
$i++; $i++;
$cfg['Servers'][$i]['verbose'] = 'example'; $cfg['Servers'][$i]['verbose'] = 'example';
$cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['connect_type'] = 'tcp';