You must have repeated data in that column. Primary Keys have the same restrictions as unique keys.
Once the duplicate data is gone you might want to drop any primary key if they're already defined.
alter table tblprodoreder drop primary key;
alter table tblprodoreder add primary key (int_order);
alter table tblprodoreder modify int_order int unsigned not null auto_increment;