summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXanthem <2vendor@hisfootsteps.net>2021-08-17 07:15:53 -0700
committerXanthem <2vendor@hisfootsteps.net>2021-08-17 07:52:13 -0700
commit58aaeecc4baf56014494c7b7267e2fec858148fe (patch)
tree823641f977a72757d9797448b6e8c805cada51b5
parentac689bd103b5d8121b011ea9acc7786749ac9b78 (diff)
downloadserver-58aaeecc4baf56014494c7b7267e2fec858148fe.tar.gz
server-58aaeecc4baf56014494c7b7267e2fec858148fe.tar.bz2
server-58aaeecc4baf56014494c7b7267e2fec858148fe.tar.xz
server-58aaeecc4baf56014494c7b7267e2fec858148fe.zip
Set up Localhost
-rw-r--r--main.sql1
-rwxr-xr-xserver.py2
-rw-r--r--sql.py3
3 files changed, 3 insertions, 3 deletions
diff --git a/main.sql b/main.sql
index 828a856..e19e271 100644
--- a/main.sql
+++ b/main.sql
@@ -22,7 +22,6 @@ CREATE TABLE IF NOT EXISTS `login` (
`userid` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`userpw` VARCHAR(32) NOT NULL DEFAULT '',
`email` VARCHAR(255) NOT NULL DEFAULT '',
- --`guild_id` INT(11) UNSIGNED NOT NULL DEFAULT 0,
`lastlogin` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`userid`),
KEY `name` (`userid`)
diff --git a/server.py b/server.py
index e66b63a..1a3a7cd 100755
--- a/server.py
+++ b/server.py
@@ -36,7 +36,7 @@ p=json.load(f)
f.close()
PORT=p["PORT"]
-SECURE=p["SSL"]
+SECURE=False#p["SSL"]
###############################################################
# Main Class
diff --git a/sql.py b/sql.py
index 21aa065..372c539 100644
--- a/sql.py
+++ b/sql.py
@@ -40,7 +40,8 @@ db = mysql.connector.connect(
host=SQLHOST,
user=SQLUSER,
passwd=SQLPASS,
- database=SQLDBID
+ database=SQLDBID,
+ auth_plugin='mysql_native_password'
)
####################################### Private methods