Forum
Dear developers,
I actually don't know if it's a bug, but since I have updated your widget, it does not work anymore.
I'm using wordpress 3.1 and your widget was working perfectly, then I can't manage to set up the profile. I tried first to press "process" in order to get my previous profile, and it didn't work. Then I tried to set up a new profile. Everytime I do it it says "a new profile has been created" but then nothing shows up where I can configure the tweeter account...is it a bug or am I doing something wrong?
thank you for your time
Hi,
That indicates that somehow the installer failed to create table in your database
To fix this, you can simply update to v 2.5.4 where there is a button that will fix this issue.
http://xhanch.com/forum/index.php/topic,11.0.html
Or, you can run the following SQL query via PHPMyAdmin
create table if not exists wp_xmt(
id int(11) not null auto_increment,
nme varchar(100) not null,
cfg longblob not null,
twt_cch longblob not null default â€Â,
twt_cch_dtp bigint(20) not null default ’0′,
prf_cch longblob not null default â€Â,
prf_cch_dtp bigint(20) not null default ’0′,
primary key (id),
unique key nme_unique (nme)
)
Note: Don't forget to replace wp_ with your own table prefix
After running that SQL query, you can import your old profiles via the configuration page