Jump to content

Recommended Posts

Posted

i'm trying to import a MySQL database with phpMyAdmin and am getting an error message:

 

#1044 - Access denied for user 'xxxxxxxx'@'localhost' to database 'milb'

 

where xxxxxxxx is my control panel user name, and the user name with which i logged in to the control panel. how do i get past this access error?

Posted

The error 1044 indicates it could be a user name problem.

I would open a ticket with the help desk and ask them to help with this. Link in my signature.

 

will do -- thanks!

Posted

it's always the simple solutions that drive you up the wall.....

 

problem was that in the dump file, you need to change the name of the database so that it is prefaced with your control panel user name, as that's the way all the databases are named on the TCH server.

 

the first two lines of the dump file will typically look like:

 

CREATE DATABASE IF NOT EXISTS `milb` /*!40100 DEFAULT CHARACTER SET utf8 */;

USE `milb`;

 

you edit the file and change the database name to what the TCH server expects:

 

CREATE DATABASE IF NOT EXISTS `xxxxxxxx_milb` /*!40100 DEFAULT CHARACTER SET utf8 */;

USE `xxxxxxxx_milb`;

 

where xxxxxxxx is your control panel user name. from there everything works fine!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...