Questions tagged [phpmyadmin]

phpMyAdmin is a popular tool for administrating MySQL (and similar) databases

PMA is best known as a GUI for managing not only the data within a database, but the table structures as well. Because and other MySQL forks are similar enough they can also be administrated with this tool.

https://www.phpmyadmin.net/

phpMyAdmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB. Frequently used operations (managing databases, tables, columns, relations, indexes, users, permissions, etc) can be performed via the user interface, while you still have the ability to directly execute any SQL statement.

Questions about this tool should be focused on the problems with setting it up and not using it to manage the database.

217 questions
1
vote
1 answer

500 internal server error, when trying to access phpMyAdmin after installing VestaCP control panel

After installing VestaCP control panel I got a 500 internal server error when trying to access phpMyAdmin (on ubuntu 16.04). For web server using Lamp stack. How can I resolve this problem? After checking apache error log between the lines I…
Mark178
  • 11
  • 1
  • 6
1
vote
2 answers

Errors after updating phpMyAdmin

After updating phpMyAdmin to v4.7.5 on my Apache/2.4.10 (Debian) I'm getting: The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. Find out why. Or alternately go to 'Operations' tab…
user444061
1
vote
0 answers

MySQL and phpmyadmin are giving me errors

I was following instructions all over the internet and when I configured both MySQL and phpMyAdmin. phpMyAdmin gave me some errors and when I try to connect to mywebsite.com/phpmyadmin I get these two errors #2002 - No such file or directoryThe…
1
vote
1 answer

Nginx Reverse Proxy to LAMP server : can't login to phpmyadmin

I'm quite new to apache and even newer to reverse proxy, but I ended up installing a server with nginx (as a reverse proxy) and apache, to manage websites with different technologies. A php website (called php_site below) is handled by apache, a…
Clairezed
  • 21
  • 4
1
vote
1 answer

phpMyAdmin port needs to be changed

Sorry this question must have been answered before but none solved my problem. I am in limbo right now. I have developed a website in Django which I want to run on port 80 while I want to run phpMyAdmin on some other port, let's say 8181. My first…
nomad
  • 111
  • 2
1
vote
0 answers

phpmyadmin + redis session save compatibility?

I'm facing a strange behavior on phpmyadmin + redis php session cache. Here is my php-fpm pool configuration : php_value[session.save_handler] = redis php_value[session.save_path] = "tcp://127.0.0.1:6379" This configurations works fine for a…
Julien
  • 133
  • 4
1
vote
1 answer

Cannot start Adminer due to a 403

I have a server running on BBQLinux latest stable release, installed four days ago with pretty much nothing else installed or configured. I followed the official guide to install Adminer, and no matter what I do, I keep getting a 403 when trying to…
Chisko
  • 111
  • 1
  • 5
1
vote
1 answer

Phpmyadmin on FreeBSD 10.3 and Nginx 1.10.1

I am trying to install Phpmyadmin on a FreeBSD 10.3 server with Nginx 1.10.1 but it is not working. The Php version is 7. It is a WPMU server, everything is working except Phpmyadmin which is giving me a 404. Here is my Phpmyadmin block on Nginx #…
yellowbuck
  • 121
  • 3
1
vote
1 answer

HTTPS access to phpmyadmin DOWNLOADS INDEX.php instead of opening phpmyadmin

When I open phpmyadmin without encription, everything goes fine. however, if I switch to https, the browser downloads the index file. apache 000-default.conf as ServerAdmin webmaster@localhost DocumentRoot /var/www/html …
Dinis
  • 11
  • 1
  • 4
1
vote
0 answers

phpMyAdmin reCaptcha error allow_url_fopen=0

I've got phpMyAdmin running on Nginx. I also enabled reCaptcha $cfg['CaptchaLoginPublicKey'] = 'secretkey' and $cfg['CaptchaLoginPrivateKey'] = secretkey'. I added the above to config.inc.php. As you can see below, I have reCaptcha enabled. The…
jarvis
  • 2,006
  • 4
  • 18
  • 31
1
vote
1 answer

Phpmyadmin page shows lines of code on ubuntu server 16.04

After I installed PHPMyAdmin on my ubuntu server 16.04, instead of showing the PHPMyAdmin page it was showing lines of code which I think is the source code for the login page. Please, what am I doing wrong?
1
vote
0 answers

PHPmyadmin Login without a password is forbidden by configuration even when entering password

Basically it is all in title. I did a clean install of CentOS7.2 (needed CentOS7 for running ARK). I made a LAMP server and it is working with tests, and then I installed PHPmyadmin. Whenever I try to log in on the site I get error Login without a…
Than
  • 11
  • 2
1
vote
1 answer

Why nginx redirects after form submit?

I have conf: location ~ ^/secret(.+) { rewrite ^/secret(.+)$ /phpmyadmin$1; } location /phpmyadmin { root /usr/share/; index index.php index.html index.htm; auth_basic "Auth"; …
littleguga
  • 166
  • 1
  • 7
1
vote
1 answer

Why nginx alias returnes 404 on .php files?

This configutation works: location /phpmyadmin { root /usr/share/; index index.php index.html index.htm; location ~ ^/phpmyadmin/(.+\.php)$ { try_files $uri =404; root /usr/share/; fastcgi_pass…
littleguga
  • 166
  • 1
  • 7
1
vote
2 answers

phpMyAdmin tries to install Apache

I'm playing up with installing new environments on my server, Nginx webserver in conjunction with HHVM. I installed both, then came to MariaDB and installed it as well. I can confirm server's working by hitting IP address: Welcome to nginx! I then…
rev
  • 121
  • 2
  • 11