Hello Kier,
Would I be able to use this hack in conjunction with upgrading my 1.13 forum.
See, right now the current VB 2.0 upgrade1.php script does not upgrade my "custom_avatar" table from freddies VB 1.13 "Custom Avatar HAck"...which means my users will have to all re-upload their custom avatars.
You seem to be a hack master around here lately...do you think you could figure it out?
If so here is the information:
Here is my old 1.13 "custom_avatar" table:
Code:
CREATE TABLE custom_avatar (
id int(6) NOT NULL auto_increment,
bin_data longblob NOT NULL,
filename varchar(50) NOT NULL,
filesize varchar(50) NOT NULL,
filetype varchar(50) NOT NULL,
userid int(10) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (id),
UNIQUE userid (userid),
KEY userid_2 (userid)
);
And here is the new VB 2.0 "customavatar" table:
Code:
CREATE TABLE customavatar (
userid int(10) unsigned DEFAULT '0' NOT NULL,
avatardata mediumtext NOT NULL,
PRIMARY KEY (userid)
);
Anything you could do to help me salvage my current user's custom avaatrs would be fantastic. Even if it means upgrading the custom avatars into your hack...which I want to store them outside the database anyway.
Thanks for your time.