-
a spammer has left a long trail of garbage comments on my Wordsmith blog ... is there any way of removing them ? I have searched through the admin options, and cannot see anything.
2006-04-23 16:33:20 UTC by sgfoote
-
A working SQL to install the cs_banlist table is:
CREATE TABLE cs_banlist (
rowid int(10) unsigned NOT NULL auto_increment,
ip varchar(32) NOT NULL,
country varchar(255),
created_on datetime NOT NULL,
PRIMARY KEY (rowid),
UNIQUE KEY ip (ip)
);
I have to note I've only run Wordsmith on MySQL 4, MyISAM (not InnoDB).
2005-01-25 10:28:17 UTC by teekay76
-
As WORDSMITH has reached the stage when it's no longer easy to maintain and grow the existing code, I've decided to put in to hiatus for the time being.
A lot has changed since I begun working on it. For the PHP/MySQL platform, the leading platform is now Wordpress, and I don't think competing with it is worth the time. Blogs have evolved, are constantly evolving, and it takes a team of...
2005-01-20 10:24:59 UTC by teekay76
-
I'm having a problem with this, too. I've tried adding 'cs_banlist' to my database but it tells me
<b>You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax </b>
What should I do? I've tried taking out the extra " as mentioned above but that hasn't helped at all.
I've seen wordsmith installed on other...
2005-01-19 17:21:41 UTC by dioritt
-
I am not so happy with the current status of Wordsmith code. Long story short, it's a mess. I haven't achieved a number of objectives: multi-database support, separation of blog and administration, flexibility in defining how your blog should look like.
To rectify that, I will be closing the current development tree, and start anew.
2004-12-21 14:26:40 UTC by teekay76
-
Hey, I am terribly sorry that I couldn't get to you, but: the $res->fields array should definitely not be empty. It should contain the record with user data. If it doesn't, something have gone bad. Please make sure you've got the latest files, and check your DB schema against the vanilla version.
If you solved the problem in the meantime, would you please let us know? Thank a bunch!
2004-12-21 14:23:24 UTC by teekay76
-
Tomas, sorry for the delay getting back to you. It has been kinda crazy around here.
Anyway, I checked the things you mentioned and the app is writing to the tables just fine. However, the cookie was not being generated. My intranet programmer tracked it down to the wsSetCookie function in the auth.lib and we changed it as follows:
//if(setcookie($cookieName, $sessId, time() +...
2004-12-01 16:41:47 UTC by dugjones
-
Doug, it really looks like the cookie isn't being saved or read properly. What I suggest at this point is: clear your cs_session table (so that it doesn't contain any data), log in once, then read the contents of cs_session with a query tool. There should be one new row with a session ID in the `id` column. Check also the value in the `valid_until` column (a timestamp setting the date and time...
2004-11-24 07:46:12 UTC by teekay76
-
I have downloaded the beta2, yet I still continue to have the problem. I rechecked the permissions listed in your readme but all looks good.
It appears as though I am getting authenticated properly when I use the default admin/password but that possibly the cookie is not being saved or read properly.
Strangely, if I turn on debugging I can get into the management page. If I modify...
2004-11-23 18:25:02 UTC by dugjones
-
Oh, bloody hell. I forgot some debugging code in there. Never mind, I posted a BETA 2 today, and the problem should disappear now. Please keep me posted if you encounter other problems! Thanks!
2004-11-22 20:18:37 UTC by teekay76