You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The database configuration should be immutable in the install.php when
using docker, because docker environment variables determine the
database configuration parameters.
<input type="text" data-pattern="^([A-Za-z0-9$_]){1,64}$" data-error="Please do not use special characters or more then 64 characters inside the database name!" class="form-control required" name="dbname" placeholder="ts3_ranksystem" value="<?phpecho$dbname; ?>" required>
499
+
<input type="text" data-pattern="^([A-Za-z0-9$_]){1,64}$" data-error="Please do not use special characters or more then 64 characters inside the database name!" class="form-control required" name="dbname" placeholder="ts3_ranksystem" value="<?phpecho$dbname; ?>" <?phpecho$attrReadonly; ?>required>
<input type="text" placeholder="<?phpecho$lang['user'] ?>" data-pattern="^[^"'\\-\s]+$" data-error="Please do not use one of the following special characters: ' \ " - also no whitespace and do not use more then 64 characters inside the database user!" class="form-control required" name="dbuser" value="<?phpecho$dbuser; ?>" maxlength="64" required>
511
+
<input type="text" placeholder="<?phpecho$lang['user'] ?>" data-pattern="^[^"'\\-\s]+$" data-error="Please do not use one of the following special characters: ' \ " - also no whitespace and do not use more then 64 characters inside the database user!" class="form-control required" name="dbuser" value="<?phpecho$dbuser; ?>" maxlength="64" <?phpecho$attrReadonly; ?>required>
<input id="password" placeholder="<?phpecho$lang['pass'] ?>" type="password" data-pattern="^[^"'\\-\s]+$" data-error="Please do not use one of the following special characters: ' \ " - also no whitespace and do not use more then 64 characters inside the database password!" class="form-control required" name="dbpass" value="<?phpecho$dbpass; ?>" data-toggle="password" data-placement="before" maxlength="64" required>
521
+
<input id="password" placeholder="<?phpecho$lang['pass'] ?>" type="password" data-pattern="^[^"'\\-\s]+$" data-error="Please do not use one of the following special characters: ' \ " - also no whitespace and do not use more then 64 characters inside the database password!" class="form-control required" name="dbpass" value="<?phpecho$dbpass; ?>" data-toggle="password" data-placement="before" maxlength="64" <?phpecho$attrReadonly; ?>required>
0 commit comments