Farms
Forum Replies Created
-
Forum: Plugins
In reply to: Block multiple logins at different locationsHave you tried out Membership Lite, it’s free, hosted here at wordpress.org and 100% GPL!
Forum: Plugins
In reply to: Plugin for Membership or Shop with credit buy functionHi Danny,
I think we have the ideal solution for you, and even better it’s here and free at wordpress.org – Membership!
We do offer a pro version for extra features, but I reckon you’ll be able to get away with using the free one just fine.
Hope that helps!
Cheers, James
Hi faroeurope,
Sorry to hear about your problem, I’m not that familiar with this plugin but your could try Membership Lite to see if that meets your needs… plus you’ll get active help and support for that!
Cheers, James
Forum: Plugins
In reply to: [Membership 2] [Plugin: Membership lite] New Membership PluginBTW, we’ve just updated the plugin with lots of good new stuff (and a fix for the non admin user install rules)
Forum: Plugins
In reply to: [Membership 2] [Plugin: Membership lite] didn't install a menu in admincpThis should be fixed up now, can you try the latest version, sorry for the bother.
Forum: Plugins
In reply to: [Plugin: Unfiltered MU] Doesn’t WorkFYI, fixed version here: http://wpmu.org/unfiltered-mu-fixed-up-for-wpmu-2-8-4a/
Forum: Plugins
In reply to: [Plugin: Unfiltered MU] Fatal error with unfiltered-MU plugin on WPMU 2.8.2FYI, you can download a fixed up version here: http://wpmu.org/unfiltered-mu-fixed-up-for-wpmu-2-8-4a/
Forum: Plugins
In reply to: [Plugin: Unfiltered MU] iFrame still removes itselfFYI, we’ve fixed it up and you can download it here: http://wpmu.org/unfiltered-mu-fixed-up-for-wpmu-2-8-4a/
Forum: Fixing WordPress
In reply to: Import blogger to wordpress at GodaddyForum: Installing WordPress
In reply to: Blogspot import problem with WP 2.5This is a bug that needs to be edited, all you have to do to fix it is edit line 12 of wp-admin/import/blogger.php
Original: $auth_url = “https://www.google.com/accounts/AuthSubRequest”;
New: $auth_url = “http://www.google.com/accounts/AuthSubRequest”;
i.e. just remove the ‘s’ from https
Could a dev put in something about this?
Forum: Fixing WordPress
In reply to: WYSIWYG Editor-Youtube video embed problemGotta be honest here – it’s something that I’d really like to see fixed in TinyMCE.
Playing here http://wp.chrisjohnston.org/ it seems to have gone away though so I’m tempted to just grab the TinyMCE upgrade and drop it in on it’s own.
(We’re a pretty big WPMU install so a simple upgrade to 2.5 isn’t gonna help 🙂
Forum: Alpha/Beta/RC
In reply to: Since upgrade, comments not showingHmmmmm… am having the same problem (comments made after the upgrade seem to be getting through though).
Upgraded from 1.5.2 to 2.0.2, had problem, found this post, deactivated SK2, deleted SK2 files, installed SK2.2 but still no joy 🙁
Any thoughts as to how I could bump this out?
Forum: Fixing WordPress
In reply to: Manipulating RSS feed URLI thought about maybe trying to hack this but with limited success: http://orderedlist.com/articles/wordpress-feedburner-plugin/
Forum: Fixing WordPress
In reply to: Manipulating RSS feed URLHmmmm… looks like this isn’t working for 2.+ and my rewrite skills are pretty shakey.
Are there any alternatives?
Or, could anyone help me with the code I’d need to get the default WP feed to point to http://www.url.com/xml/rss.xml using by editing the plugin below.
<?php
/*
Plugin Name: Feed Director
Plugin URI: http://boren.nu/
Description: Rewrites common feed URIs used by other blogging platforms into WP style feed URIs.
Version: 0.2
Author: Ryan Boren
Author URI: http://boren.nu/
*/// Replace the default mod_rewrite rules with the reduced set.
function feed_dir_rewrite($wp_rewrite) {
$feed_rules = array(
'index.rdf' => 'index.php?feed=rdf',
'index.xml' => 'index.php?feed=rss2',
'(.+).xml' => 'index.php?feed=' . $wp_rewrite->preg_index(1)
);$wp_rewrite->rules = $feed_rules + $wp_rewrite->rules;
}// Hook in.
add_filter('generate_rewrite_rules', 'feed_dir_rewrite');
?>It’s for a fairly major Manila > WP (charitable 🙂 export so any help would be *seriously* appraciated.
Forum: Fixing WordPress
In reply to: Manipulating RSS feed URLOr here I guess: http://meat.net/2005/11/php-debugging-tip/
Fantastic stuff, thanks for the quick hep!