Reputation: 3347
I am using phpMyAdmin 3.5.8.2
I am having trouble making a column in a table not unique. But in tutorials online I see that my GUI seems to be different. The online tutorials show Structure like this,
http://www.reg.ca/faq/phpmyadmin6.gif
Where there are different options under Action. But my own GUI looks like this,
http://www.shanegibney.com/shanegibney/mediagallery/media.php?f=1&s=20150217205314215&i=0&p=0
How can I get phpMyAdmin to look like this?
Thanks, Shane Thanks, Shane
Upvotes: 0
Views: 784
Reputation: 12462
The tutorial picture you linked to appears to be a rather old version of phpMYAdmin; version 2 if I recall correctly. What probably happened is that the default display type was changed between when the tutorial was created and the release of 3.5.8.2 (note that even version 3 is generally outdated now).
In version 3, this is controlled by $cfg['PropertiesIconic']
, which has possible values of true, false, or 'both' (false displays only text, true displays only icons, and 'both' displays both icon and text).
This has changed a bit in version 4 and is now controlled by the configuration setting $cfg['ActionLinksMode']
. This setting has possible values of 'icons', 'text', or 'both'.
Upvotes: 2