The domain name entered is use to create the DB username, DB password and DB name. It appears that MySQL has a limitation of 16 characters for usernames.

Comments

KLicheR’s picture

I use this strategy to overcome this issue.

If a domain name is more than 8 characters, I make a hash (sha1) with the domain and fill the variable $domain_ with the hash to make it 15 characters long.

The DB name will stay unique and can be retrieved in phpMyAdminfor further operations.

The only annoying things is that the name of the DB can be confusing so you better double check with your setting.php for the correct name before making manuel operation to the DB.

KLicheR’s picture

Status: Active » Needs review