Merge branch 'v1.9.5' of github.com:usmannasir/cyberpanel into v1.9.5

This commit is contained in:
Usman Nasir
2020-02-12 15:13:00 +05:00

View File

@@ -255,8 +255,8 @@ password=%s
def submitDBCreation(dbName, dbUsername, dbPassword, databaseWebsite):
try:
if len(dbName) > 16 or len(dbUsername) > 16:
raise BaseException("Length of Database name or Database user should be 16 at max.")
if len(dbName) > 32 or len(dbUsername) > 32:
raise BaseException("Length of Database name or Database user should be 32 at max.")
website = Websites.objects.get(domain=databaseWebsite)
@@ -763,4 +763,4 @@ password=%s
except BaseException as msg:
logging.CyberCPLogFileWriter.writeToFile(str(msg) + "[mysqlUtilities.fetchuser]")
return 0
return 0