RubenGeert
RubenGeert

Reputation: 2952

No "Privileges" in PHPMyAdmin, already tried deleting cookies/using FF/loggin in as 'root'

I'm well aware this has been asked lots of times before but none of the answers so far has been applicable for me or solved the problem.

How could this possibly be solved?

UPDATE

I understood from the answers that I can't solve this myself since my hosting provider doesn't allow it (by default anyway). I'll contact them to see whether they're willing and able to do something about it.

If somebody else has the same problem: as a workaround I'll keep using my Python routines on my local MySQL database. I'll then use the Wordpress export and import tools to transfer my (updated) local database to the remote server where my website is located. That's not too bad since it will also result in frequent backups of my articles.

Upvotes: 0

Views: 547

Answers (2)

RubenGeert
RubenGeert

Reputation: 2952

You need to add your hostname (see myip.nl) as a new host in DirectAdmin and then you can connect to the database on a remote server from a local application (Python in this case). See the screenshot below (sorry it's in Dutch!)

enter image description here

Upvotes: 0

Marc Delisle
Marc Delisle

Reputation: 9012

It's normal that phpMyAdmin does not show you the Privileges (or Users in recent versions) tab, since you're not privileged.

Usually, on shared servers, hosting providers also use a shared MySQL server, thus they won't allow you root access.

They usually also allow MySQL access only from their web server and not from your home machine, as an additional security measure.

Upvotes: 2

Related Questions