kalkun-sms/Kalkun

kalkun inbox folder is empty while inbox table is not.

Closed this issue · 1 comments

Hi,

kalkun 0.7.1

i meet a condition where kalkun inbox folder is empty while inbox table is not.

i have checked the file scripts/daemon.php and make sure the path is correct.

i have re-run http://localhost/kalkun/index.php/daemon/message_routine/ from browser but i have an error : Could not initialize b8. error code: DATABASE_TABLE_ACCESS_FAIL:

i see table inbox and i have sms but user_inbox is empty

somebody can help me to make the inbox table show in inbox message folder?
regards

I ve solved my problem

The table was missing b8_wordlist

CREATE TABLE b8_wordlist (
token varchar(255) character set utf8 collate utf8_bin NOT NULL,
count varchar(255) default NULL,
PRIMARY KEY (token)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO b8_wordlist VALUES ('bayes_dbversion', '2');
INSERT INTO b8_wordlist VALUES ('bayes_texts.ham', '0');
INSERT INTO b8_wordlist VALUES ('bayes*texts.spam', '0');

regards
Stan