I have been looking for a solution for this problem for some time now but with no success. Basically, the signature length will not go past 255 characters, even if you set it at 9999 in the admin panel it will just erase anything over 255. Any help on this matter would be greatly apprieciated.
Thanks in advance,
Jessie00721
ArtificialIntel
Joined: Jan 31, 2004
Posts: -88
Posted:
Thu May 22, 2003 9:07 am
it needs to be changed in the database using phpMyAdmin too.
AI
Raven General
Joined: Mar 22, 2003
Posts: 5233
Location: USA
Posted:
Thu May 22, 2003 9:08 am
Use phpMyAdmin and issue the following statement
Code:
ALTER TABLE `nuke_users` CHANGE `user_sig` `user_sig` VARCHAR( 500 ) NULL
Keep in mind that this alters the user table. Also, you need to be aware that the varchar() type has a limit of 2000, if I remember right. It might even be 1000. Check the manual.
I'm Trying to do what u guys said but i get this Error:
Quote:
Database onestcdn_nuke - table nuke_users running on localhost
Error
SQL-query :
ALTER TABLE `nuke_users` CHANGE `user_sig` `user_sig` VARCHAR( 4750 ) NULL
MySQL said:
Too big column length for column 'user_sig' (max = 255). Use BLOB instead
Can u help me?
Thanks,
Raven General
Joined: Mar 22, 2003
Posts: 5233
Location: USA
Posted:
Thu May 22, 2003 7:51 pm
Did you read my previous post closely? I warned you that there was a maximum length limit on type varchar(). That's what it is telling you. You need to change VARCHAR to BLOB or TEXT. Try using BLOB.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum