Quote:
Originally Posted by Merriweather
While I was investingating this via the DB, I found a really strange issue. I saw that in the grps_grouptext table, the edit_userid only allows 4 integers. Well my site's userids are 6 digits, so I changed it to 6, but no matter what I enter if I edit a row, it comes back with "127"! Why the heck 127? Here is an exampe query, yet the row shows 127 as the edit_userid:
Code:
UPDATE `grps_grouptext` SET `edit_userid` = '101524' WHERE `grps_grouptext`.`groupid` =75 LIMIT 1 ;
But the row shows "127" for the edit_userid.
|
run this query then try the above query again [sql]ALTER TABLE `grps_grouptext` CHANGE `edit_userid` `edit_userid` TINYINT( 10 ) NULL DEFAULT NULL; [/sql]
can i also confirm that you're using PHP5 on your server?