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
6 answers

Invalid field count in CSV input on line 1 phpmyadmin

I have read many threads but can't find the right specific answer. I get this error message when I try to import additional data into an existing table. The field names are all aligned correctly, but not every row has data in every field. For…
dmwesq
  • 131
  • 1
  • 4
  • 13
3
votes
2 answers

phpMyAdmin SSL configuration

I have 2 MySQL users, a regular 'tommy' and a control user 'tommy_ctl' The Apache httpd 2.4.7 runs on 9090 for http and 9080 for https phpMyAdmin (v4.1.6) config.inc.php file has user/password for 'tommy_ctl' I am logging into phpMyAdmin home page…
3
votes
3 answers

Exclude views from mysql database dump

Is there any way to exclude views from mysql dump export? I tried --ignore-table command. But this command recommand the parameters of table which i want to exclude. I have 30 views in my database. Is there any simple way to export only table (not…
Dhinakar
  • 4,061
  • 6
  • 36
  • 68
3
votes
4 answers

session_start(): Failed to initialize storage module: memcache (path: /var/lib/php5) in /usr/share/phpmyadmin/libraries/session.inc.php on line 81

I have i problem with myadminphp. I try to go inside admin area but when i use the url ,the page is white. I have seen on the error.log and i have this error session_start(): Failed to initialize storage module: memcache (path: /var/lib/php5) in…
user3210366
  • 59
  • 1
  • 1
  • 4
3
votes
1 answer

Doesn't PhpMyAdmin generate correct JSON export files? With what to replace ^M character on Unix?

I exported an SQL table in a JSON file using PhpMyAdmin tools. I got a file like this: /** Export to JSON plugin for PHPMyAdmin @version 0.1 */ // Database 'table_name' // ... [{"id": 7,"field1": "value1","field2": 2,"field3":…
Ionică Bizău
  • 109,027
  • 88
  • 289
  • 474
3
votes
1 answer

Efficient way of storing large data set in phpMyAdmin SQL table

I have a large list of exercises that I am currently storing in a SQL table with a unique index value (int) in one column and the exercise name in the other column. I am trying to determine an efficient way of storing sets of exercises as…
wroller
  • 53
  • 5
3
votes
1 answer

nginx + passenger + phpmyadmin = Access denied

I'm confused, i read a lot of information, but still get same error, when i call ../phpmyadmin/index.php Access denied. my nginx configuration file: #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log …
brabertaser19
  • 5,678
  • 16
  • 78
  • 184
3
votes
2 answers

phpmyadmin choose field to display missing in relation view

I am using phpmyadmin 4.0.5. I want to show column value instead of its id while adding a row in a table where that column acts as foreign key. Now as per…
vlad halmer
  • 1,211
  • 2
  • 16
  • 21
3
votes
1 answer

How to interact with (MySQL) Databases in JSF

I come from PHP and am trying to build a Web Application with JSF. I really like the simplicity of some tasks with JSF, (for instance the use of Ajax) but when it comes to database integration I am very confused and don't know where and how to…
Jakob Abfalter
  • 4,980
  • 17
  • 54
  • 94
3
votes
1 answer

phpmyadmin: Can't change the value of the text if data is originally stored as an array

I've made a table with the following fields: `id` type:INT, `id_list`type:TEXT, `name`type:VARCHAR(255). id is my primary key. From phpmyadmin 3.4.11.1deb2, I inserted a row: (`null`, `'["1","2","3","4"]'`, `'TEST'`) and it successfully saves to…
nubleet
  • 33
  • 5
3
votes
3 answers

$cfg['Servers'][$i]['users'] ... not OK

I recently upgraded from phpMyAdmin 3.5.3 to 4.1.4 and I'm having problems with some of the configuration storage settings. At least, it seems that I'm having problems. Maybe this is expected behavior but I want to be sure. My…
user3183038
  • 57
  • 1
  • 1
  • 6
3
votes
1 answer

Adding FK constraints on multiple column in PHPMyadmin

A Picture is worth thousand word. In the above picture we can add FK constraint 1-1, like I can reference UserId to another tables column but If the situation is like this , ALTER TABLE `userfrnd_source` ADD CONSTRAINT `userfrnd_source_ibfk_2`…
user1765876
3
votes
4 answers

How to graphically represent my database (mysql phpmyadmin)

I would like to take student's exam results and represent it as a chart for student's supervisor. So I will fetch the database information (which is student's result and represent it graphically to the supervisor to notice student's progress) I have…
Aisha
  • 93
  • 1
  • 6
3
votes
2 answers

How to check MySQL query time like "SHOW profiles" on "Source Distribution"?

I tried to check the time the queries take and tried in phpMyAdmin SET profiling = 1 did some queries and then SHOW profiles but there were no results. Then I found here http://dev.mysql.com/doc/refman/5.0/en/show-profile.html riiight at the…
loveNoHate
  • 1,549
  • 13
  • 21
3
votes
1 answer

error in trigger creation in phpmyadmin

I created the very simple triger and I think syntex is also correct: CREATE TRIGGER trig1 after INSERT ON urlcontent for each row BEGIN insert into userpost(userid,url,hash) values (userid,url,hash); END; gives error: #1064 - You have an…
Aamirkhan
  • 5,746
  • 10
  • 47
  • 74