Still work in progress, but here’s a teaser:
23.10.2009
by PerS
0 comments
23.10.2009
by PerS
0 comments
Still work in progress, but here’s a teaser:
4.3.2009
by PerS
3 Comments
AHP Sitewide Recent Posts Widget for WPMU makes it easy to add and configure the AHP Sitewide Recent Posts plugin.
27.2.2009
by PerS
26 Comments
The toksta* chat plugin for BuddyPress makes it easy to add toksta* chat and webcam to your BuddyPress site.
18.4.2008
by PerS
8 Comments
This is a plugin that will block a spammer if he already has been tagged as a spammer. I use it together with the Akismet plugin. Akismet tags the spammer, and wp-denyhost prevents him from adding more comment spam.
Core functionality :
define('PS_DENYHOST_THRESHOLD', 5);
function ps_denyhost() {
global $wpdb;
$suspect = $this->get_IP();
$count = (int) $wpdb->get_var("SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_author_IP = '$suspect'");
if ($count > PS_DENYHOST_THRESHOLD) {
exit;
}
}
add_action('init', 'ps_denyhost');
Download / install: http://wordpress.org/extend/plugins/wp-denyhost/
View-source: http://soderlind.no/code/view/ps_wp_denyhost.php
Changelog (updated 28.12.2009):
7.1.2007
by PerS
0 comments
Note: This is work in progress, when the editor is done, it will be announced here.
I’m coding a skin editor for the sandbox theme. The code will be gpl, so you can adjust it to other themes, but I will only support the sandbox theme.
Here’s a demo of the prototype: http://soderlind.no/demo/skineditor.php
v1.0 will:
btw, if you don’t know the Sandbox theme, have a look here: http://www.plaintxt.org/themes/sandbox/. It is one of the easiest/best themes to use as a building block for creating your own themes using css.
3.1.2006
by Guest
185 Comments
As of today (13.11.08), ImageManager is e.o.l. If you need image editing functionality in WordPress, head over to Scissors
Current Version: 2.5.3 (supporting WordPress 2.5, WPMU 1.3.3 and WordPress 2.3.3)
The ImageManager plugin integrates the stand alone PHP ImageManager + Editor with WordPress. The ImageManager provides an interface for browsing and uploading image files on/to your server. The Editor allows for some basic image manipulations such as, cropping, rotation, flip, and scaling.
View the flash demo.
Feature list
2.2.2005
by Guest
3 Comments
Scott Mitchell wrote an article on how to use MSN Search to search your own site. The article triggered me, and using the aggrss plugin I wrote a “snippet” you can use to search your WordPress blog.
Note, this is just a proof of concept and not supported.
8.11.2004
by Guest
76 Comments
[updated] Uses the lastRSS library to![]()
aggregate RSS feeds.
lastRSS (and this plugin) gives you:
lastRSS is free open-source software (GNU/GPL), this plugin has a BSD license
Instructions:
Use:
$rs = aggrss($rssurl,$striptags=false,$num=0); /* $rssurl, url to the rss optional parameters: $striptags, if true all html tags will be remove from decriptions. $num, defines the number of records you want to display, $num=0 equals all available */
aggrss returns the rss content as an associative array with RSS fields, see sample below.
if ($rs = aggrss('http://soderlind.no/feed/rss2/')) {
// dump the structure
//echo "<pre>";
//print_r($rs);
//echo "</pre>";
echo "<h2><a xhref='" . $rs[link] . "'>" . $rs[title] . "</a></h2>";
echo $rs[description] . "<br />";
foreach ($rs['items'] as $item) {
echo "<p><a xhref='" .$item['link']. "'>" . $item['title'] . "</a><br />" .html_entity_decode($item['description']). "</p>";
}
if ($rs['items_count'] < = 0) {
echo "Sorry, no items found in the RSS file
"; }
} else {
echo "<!-- It's not possible to reach RSS file -->";
}
}
3.8.2004
by Guest
4 Comments
This plugin might exist allready, but I couldn’t find it using google, so here it is
The plugin gives you four functions you can use in your blog:
get_geoip_country_code and get_geoip_country_name returns the the visitors country code / name
the_geoip_country_code and the_geoip_country_name echos the the visitors country code / name
INSTALLATION:
1) Extract the plugin into your WordPress plugins directory.
2) Download the free GeoIP country database from MaxMind , and extract it into your plugins/GeoIP directory
3) Optional, If you need country flags, you’ll find them here: http://www.maxmind.com/download/geoip/database/flag.zip
4) Activate it on the Plugins tab of the WordPress admin console.
SAMPLE USE:
<img src="/flag/<?php echo
strtolower(get_geoip_country_code())?>.gif" alt="<?php
the_geoip_country_name()?>" />
NOTE, If you have full access to your server and it’s running Apache, you should take a look at the mod_geoip
27.7.2004
by Guest
2 Comments
I’ve written a listCollapse plugin, it shows how easy it’s to write a plugin instead of hacking index.php
You’ll find more info about listCollapse.js at http://www.howtocreate.co.uk/jslibs/htmlhigh/listCollapse.html