22

I can't figure out how to get Edit, Copy, Delete to show in phpmyadmin.

enter image description here

Here is what I want:

enter image description here

Thanks!

AFerrara
  • 399
  • 2
  • 3
  • 8
  • Do you have sufficient privileges in the database to do the things you want? – Hidde Feb 21 '14 at 22:23
  • When I created that test table above (through phpmyadmin) the options showed up. It's only on the tables that start with sf_ that the options don't show up. How can I change this? I only have one database user at the moment. – AFerrara Feb 21 '14 at 22:34
  • 3
    Nevermind got it working by setting a unique/primary key – AFerrara Feb 21 '14 at 23:04

3 Answers3

30

Make sure you have made one of the columns a primary key. This can be done in 'Structure' and if you select a column then click primary this should make give it a unique id.

Vivienne To
  • 301
  • 3
  • 2
11

Just add auto-increment options to any of field

Anurag Yadav
  • 336
  • 3
  • 13
2

Make sure you have the following in your config.inc.php file of phpmyadmin

 $cfg['RowActionLinksWithoutUnique'] = 'true';

and restart the mysql engine

theletz
  • 1,713
  • 2
  • 16
  • 22
e25don
  • 21
  • 1