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
3
votes
2 answers

Getting password from CPANEL using phpmyadmin

Good Day I am a front-end developer, and I know little from MySQL and databases. I have a Wordpress MySQL database in CPanel. Now I forgot my password, and the password for my user as seen in phpmyadmin is hashed/encrypted. How do I get the…
DextrousDave
  • 6,603
  • 35
  • 91
  • 134
3
votes
2 answers

import.php: Missing parameter: import_type error in phpMyAdmin?

For the last several hours I've been searching and attempting to fix this. It's killing me that I can't figure it out. Running any SQL gives me this error: import.php: Missing parameter: import_type import.php: Missing parameter: format Similar…
Michael
  • 589
  • 2
  • 11
  • 26
3
votes
3 answers

phpMyAdmin reports incorrect query time

MySQL 5.5 I am trying improve speed on this query: SELECT * FROM `core_table` WHERE `id` = '57' AND `model` IN (SELECT `new_models` FROM `raw_table`) I tried to benchmark it in phpMyAdmin by running: SELECT SQL_NO_CACHE * FROM `core_table` WHERE…
Buttle Butkus
  • 9,206
  • 13
  • 79
  • 120
3
votes
3 answers

PHP - Cannot connect to MySQL database

I am trying to connect to my MySQL database through php, I am managing my Database with phpmyadmin. To login the username is root and I dont have a password. My problem is I cant connect, I get the "Could not connect to mySQL database" message when…
Cam Connor
  • 1,231
  • 2
  • 25
  • 40
3
votes
1 answer

Select Query From SQL group by weekly reports

I used the following query to select group by records. SELECT YEARWEEK(dtentered) week, sum(leftcount) as lct, sum(rightcount) as rct FROM `dailycount` WHERE paid='1' and regid='SF00033200712' GROUP BY YEARWEEK(dtentered) " But I am getting…
Velmurugan
  • 2,303
  • 6
  • 30
  • 45
3
votes
3 answers

nginx + fast-cgi - how to make phpmyadmin work

I've configured my nginx server + php. Eeverything works fine, except phpmyadmin. I googled a lot and found some alias tricks, but they didn't work to me. That works great: location ~ ^/ololo/(.*\.php)$ { alias…
user1128677
  • 479
  • 2
  • 11
  • 18
3
votes
5 answers

PHP of Phpmyadmin does not execute but other php scripts work

When calling the phpmyadmin website a "save file" dialog appears for application/x-httpd-php- so my server does not execute the phpmyadmin php script but transfers the code to my browser. Other php such as roundcube or ispconfig work as supposed. I…
Martur
  • 33
  • 1
  • 1
  • 4
3
votes
1 answer

phpMyAdmin designer for showing specific tables only - is this possible?

I want to see the relations to the table mdl_user in Moodle's database but when I open the designer in phpMyAdmin it shows all the tables and makes it almost impossible to find it in all 200+ tables. Is there a way to restrict the number of tables…
Bor
  • 775
  • 3
  • 19
  • 44
3
votes
1 answer

How to synchronize localhost version changes with production version

I have been doing some changes these days on a localhost version of a joomla 2.5 website. Those changes consist of creating new files or editing previous ones, adding tables in the database and changing others. But all these days a friend of mine…
themhz
  • 8,335
  • 21
  • 84
  • 109
3
votes
2 answers

Get last record from group by cakephp

I have 2 tables : User and LoginLogs and User and LoginLog have 'has Many' relationships. I have to get last login of user from the LoginLog table. I have to query the details of last login user using group by. Here is the Query: SELECT * FROM…
Archna Rangrej
  • 664
  • 3
  • 14
  • 38
3
votes
0 answers

how to configure phpmyadmin after "sudo yum install phpMyAdmin" ? on amazon ec2 linux ami

after I install phpmyadmin by "sudo yum install phpMyAdmin", it installed successfully. However, when I type http://example.com/phpmyadmin always get "The requested URL /phpmyadmin was not found on this server." So my question is how to configure…
air_bob
  • 1,317
  • 14
  • 26
3
votes
1 answer

TRIGGER CREATED successfully , but no triggers in information_schema TRIGGERS table

hi i am trying to use triggers , my MySQL version is 5.5.8 the thing is when i create the trigger , PHPMyadmin says it is created successfully , this is my trigger DELIMITER $$ CREATE TRIGGER `check_pupil_before_insert` BEFORE INSERT ON…
Kanishka Panamaldeniya
  • 17,302
  • 31
  • 123
  • 193
3
votes
2 answers

trigger in MYSQL CONSOLE

I am working on phpmyadmin. To write triggers i am using mysql console. Its works well in starting. but as soon as i am writing a trigger and its gets execute successfully then every time after any query i have to give delimiter (|) to execute the…
Harjeet Jadeja
  • 1,594
  • 4
  • 19
  • 39
3
votes
1 answer

PhpMyAdmin - how to increase the number of columns visible in the browse menu

I have a database in the PhpMyAdmin platform and i'm checking the data that i have inside a table, in the "browse" menu, but for some reason there is one column that doesn't displays a name. For example, in the structure menu i can see all the…
JRPR
  • 43
  • 5
3
votes
1 answer

How to setup phpmyadmin's designer tab on wamp

I have searched the net, watched youtube videos and to no avail. I'm looking to get the designer tab on phpmyadmin where I would be able to see table relations like you would in ms Access. I have set my config.inc.php exactly like I have seen on…
Mark
  • 637
  • 3
  • 14
  • 26