Questions tagged [phpmyadmin]

phpMyAdmin is an open-source, web-based MySQL administration tool written in PHP. Use this tag for problems related to using this tool and not for general query problems

phpMyAdmin is an open source tool written in intended to handle the administration of over the Web. In other words, it allows you to handle MySQL via the web browser in a visual format, with no need to write complex commands from the command line. It can perform various tasks such as creating, reading, updating or deleting databases, tables, columns or rows (); executing statements; or managing users and permissions.

Since the version 4.0.0-alpha1, the HTML frames are gone and the navigation panel now presents a tree.

Features

  • Features provided by the program include:

  • Web interface

  • MySQL database management

  • Import data from CSV and SQL

  • Export data to various formats: CSV, SQL, XML, PDF (via the TCPDF
    library), ISO/IEC 26300 - OpenDocument Text and Spreadsheet, Word,
    Excel, LaTeX and others

  • Administering multiple servers

  • Creating PDF graphics of the database layout

  • Creating complex queries using Query-by-Example (QBE)

  • Searching globally in a database or a subset of it

  • Transforming stored data into any format using a set of predefined
    functions, like displaying BLOB-data as image or download-link

  • Live charts to monitor MySQL server activity like connections,
    processes, CPU/Memory usage, etc.

  • Working with different operating systems.

Useful links

Frequently asked questions

Check documentation for full list of frequent questions.

Similar lightweight tools:

16409 questions
72
votes
20 answers

PHP 7 with phpmyadmin gives lots of Deprecation Notices

I have Ubuntu 16.04 LTS running with PHP7 and phpmyadmin installed. However, I get a lot of deprecation notices like: Deprecation Notice in ./../php/php-gettext/streams.php#48 Methods with the same name as their class will not be constructors in a…
yoano
  • 1,466
  • 2
  • 16
  • 20
70
votes
21 answers

Can anyone confirm that phpMyAdmin AllowNoPassword works with MySQL databases?

I have a version of phpMyAdmin located on my local Apache server. I am trying to login without a password however phpMyAdmin keeps throwing the warning: Login without a password is forbidden by configuration (see AllowNoPassword) However in my…
diggersworld
  • 12,770
  • 24
  • 84
  • 119
70
votes
15 answers

phpMyAdmin Error: The mbstring extension is missing. Please check your PHP configuration

I have a problem running phpMyAdmin. When I try to access phpMyAdmin in my browser, I get the error message: "The mbstring extension is missing. Please check your PHP configuration." I have already searched on the internet for possible solutions.…
Klemen Rejec
  • 701
  • 1
  • 5
  • 3
70
votes
13 answers

Forbidden :You don't have permission to access /phpmyadmin on this server

Hi I have installed phpmyadmin on my centos machine and when I try to hit phpmyadmin through my browser I get this error : Forbidden You don't have permission to access `phpmyadmin` on this server. My phpmyadmin.conf file has following content: #…
Megha Sharma
  • 2,235
  • 8
  • 27
  • 31
69
votes
25 answers

PhpMyAdmin "Wrong permissions on configuration file, should not be world writable!"

I get this error when I try to access localhost/phpmyadmin: Wrong permissions on configuration file, should not be world writable! I have already chmoded every file to 555 from 777. What should I do next? I run Ubuntu 11.04.
good_evening
  • 21,085
  • 65
  • 193
  • 298
69
votes
19 answers

phpMyAdmin ERROR: mysqli_real_connect(): (HY000/1045): Access denied for user 'pma'@'localhost' (using password: NO)

I keep getting the following errors with mysql connection through XAMPP and I don't know what to do: That's the code in the config.inc.php
E. AMARAL
  • 949
  • 1
  • 10
  • 20
69
votes
2 answers

Remove privileges from MySQL database

Before you think this is a duplicate question, I believe I have a unique, even if it is somewhat dim-witted, case. A few days ago, I upgraded the version of MySQL on my Ubuntu 10.04 server to 5.3.3 (it's ahead of the Ubuntu releases for 10.04).…
Cyntech
  • 5,362
  • 6
  • 33
  • 47
69
votes
19 answers

Extension mysqli is missing, phpmyadmin doesn't work

I have a problem with phpmyadmin on ubuntu 12.04. I have already installed apache2, php5, mysql and phpmyadmin. The phpinfo(); script, don't show nothing about mysqli or mysql extension. When I try start phpmyadmin this error…
Jeremas
  • 793
  • 1
  • 5
  • 8
67
votes
6 answers

Where can I find MySQL logs in phpMyAdmin?

Where can I find the MySQL's logs (errors, queries, etc.) in the phpMyAdmin interface?
citronic
  • 9,868
  • 14
  • 51
  • 74
67
votes
21 answers

New xampp security concept: Access Forbidden Error 403 - Windows 7 - phpMyAdmin

I have downloaded and installed XAMPP 1.8.1 for Windows on Windows 7 Ultimate. I have set up XAMPP to run together with IIS as per these instructions All good so far, my PHP sites run locally and everything except phpMyAdmin is available from the…
user3202433
  • 671
  • 1
  • 6
  • 4
65
votes
3 answers

Setting up table relations what do "Cascade", "Set Null" and "Restrict" do?

I want to start using table relations in a new project. After some googling I got 2 tables set up as InnoDB: The keys I want to link are ->users->userid (primary) ->sessions->userid (index) The only thing that I don't understand in this process is…
HTDutchy
  • 1,090
  • 2
  • 13
  • 25
63
votes
3 answers

MYSQL - Warning: #1681 Integer display width is deprecated

I'm getting this warning when importing mysql dumps in phpMyAdmin: Warning: #1681 Integer display width is deprecated and will be removed in a future release. I found this on https://dev.mysql.com/worklog/task/?id=13127 Deprecate the ZEROFILL…
Szekelygobe
  • 2,309
  • 1
  • 19
  • 25
63
votes
15 answers

How do I set up phpMyAdmin on a Laravel Homestead box?

I installed it by running sudo apt-get install phpymyadmin and then running sudo ln -s /usr/share/phpmyadmin/ /usr/share/nginx/html and sudo service nginx restart but it's not working. Note: I didn't select any of the apache2 or lighttpd options…
Nikos Grigoriadis
  • 2,912
  • 4
  • 22
  • 29
62
votes
6 answers

How to enable relation view in phpmyadmin

When working in XAMPP with phpmyadmin, after creating a table I have the option to click "relation view" after clicking on the structure tab. See below: However anytime when I create a table with my host phpmyadmin, I dont have the option to select…
NeverPhased
  • 1,546
  • 3
  • 17
  • 31
62
votes
2 answers

phpMyAdmin Duplicate Table

Is there some way to get phpMyAdmin to spit out the SQL needed to duplicate the table in another DB? I saved it when I initially made the table but I've changed it quite a bit since then. It's a pretty big table and this would really help.
I wrestled a bear once.
  • 22,983
  • 19
  • 69
  • 116