mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
13 lines
639 B
Bash
13 lines
639 B
Bash
#!/bin/bash
|
|
|
|
|
|
echo ""
|
|
echo "📥 Downloading files to allow auto-login to phpMyAdmin for users.."
|
|
mkdir -p /etc/openpanel/mysql/phpmyadmin/
|
|
wget -q -O "/etc/openpanel/mysql/phpmyadmin/pma.php" "https://raw.githubusercontent.com/stefanpejcic/openpanel-configuration/refs/heads/main/mysql/phpmyadmin/pma.php" && \
|
|
echo "✔ downloaded /etc/openpanel/mysql/phpmyadmin/pma.php"
|
|
wget -q -O "/etc/openpanel/mysql/phpmyadmin/config.inc.php" "https://raw.githubusercontent.com/stefanpejcic/openpanel-configuration/refs/heads/main/mysql/phpmyadmin/config.inc.php" && \
|
|
echo "✔ downloaded /etc/openpanel/mysql/phpmyadmin/config.inc.php"
|
|
|
|
|