Browse Source

Turn Off Echo For Passwords

old-stable
Mitesh Shah 12 years ago
parent
commit
ea1c87270d
  1. 6
      setup/engine

6
setup/engine

@ -61,7 +61,13 @@ GETINFO()
# Get The MySQL Username/Password
read -p "MySQL Host [localhost]: " TEMP
read -p "Enter The MySQL Username: " MYSQLUSER
# Turn Off Echo For Passwords
stty -echo
read -p "Enter The MySQL Password: " MYSQLPASS
stty echo
echo
read -p "Enter The MySQL Database Name For $DOMAIN: " WPDBNAME
# If Enter Is Pressed, Then Use localhost as MySQL Host

Loading…
Cancel
Save