Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHPMyAdmin alert box - missing value in the form - all usual fields are filled out?

For some reason while using PHPMyAdmin and attempting to save a table, even though I've entered all of the information I usually do I'm getting an alert box popping up with the content "Missing value in the form!".

Here's a screenshot of my PHPMyAdmin console (2 screens merged due to resolution):

PHPMyAdmin Create Table Modal Box

What I've tried so far:

  • Changing the data types all to VARCHAR with a length of 255 (except for the deindeal_id column, which remained INT with a length of 12).
  • Encasing description in "`" (bacticks), thinking it may be a reserved word of some sort.
  • Adding a coalition.
  • Using different table engines (InnoDB, MyISAM (the one I wanted)).

I'm really stumped as to what could be causing this issue, so any answers would be greatly appreciated!

like image 502
Avicinnian Avatar asked Jan 11 '12 19:01

Avicinnian


3 Answers

Looks like a bug. Try going to Settings -> Features -> General tab and disable Ajax.

Then, try to create a new table and it won't use the popup.

like image 153
julianm Avatar answered Nov 05 '22 18:11

julianm


Did you give it a table name. I had the same problem & I simply forgot to give it a table name...at the top.

like image 37
Alieze Avatar answered Nov 05 '22 18:11

Alieze


I had this issue with the SQL form (where you can paste larger blocks of MySQL code). Not sure if it's a fluke, but I selected all of my input and then hit Go..and it worked.

like image 12
DACrosby Avatar answered Nov 05 '22 17:11

DACrosby