thepimpress
Forum Replies Created
-
Forum: Plugins
In reply to: external RSS feedszFeeder is easy.. Painless.. And very functional
Forum: Plugins
In reply to: Polls and Email updatesThe email notification hack is SO amazingly simple to code (see http://pimpress.com) I have no idea why it wasn’t included in either B2 or WordPress.
Forum: Plugins
In reply to: Multiple users hackEven better:
<?php $query = “SELECT ID, user_nickname from $tableusers where user_nickname <> ‘admin’ ORDER BY user_nickname”;
$result =mysql_query($query);
while ($data = mysql_fetch_row($result)) {
echo “$data[1]
\n”;
} ?>
Maybe someone finds this useful.
(the &92; in the last row is supposed to be a backslash in the source-codeForum: Plugins
In reply to: rss images?I could do this hack if it’s really needed.. Actually the b2rss files (I’m assuming WP’s arent radically different) are easy to work with.
Forum: Requests and Feedback
In reply to: User SystemActually if it’s anything like B2’s it’s quite robust and easily expanded on. Probably could be integrated into the comments section I never tried.
Forum: Requests and Feedback
In reply to: db password hashesWhy aren’t the passwords stored in the database hashed with MD5 or SHA? Would make sense to do that.
Forum: Requests and Feedback
In reply to: threaded commentsWith all respect to Dodo that was an ugly hack…