We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f3786a commit 657379eCopy full SHA for 657379e
all-server-fix.sh
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+
3
+# temporary solution but will use find and replace proper command in the future
4
+cd /tmp/ispconfig*/install/lib
5
+rm installer_base.lib.php
6
+wget https://git.ispconfig.org/ahrasis/ispconfig3/-/raw/fix2210271528/install/lib/installer_base.lib.php
7
8
9
+user=root
10
+password=PW-BY-ISPC-AI # change to password given by ISPConfig AI accordingly
11
+database=mysql
12
+# change NEWPASSWORD to your preferred password
13
+mysql --user="$user" --password="$password" --database="$database" --execute="ALTER USER 'root'@'localhost' IDENTIFIED BY 'NEWPASSWORD';"
14
15
+# you can continue with installing ISPConfig that you put on hold pending this fix
0 commit comments