I’ve just released a new plugin for WordPress multisite setups that require additional control over the format of usernames, the Network Username Restrictions Override plugin. By default, the Network Admin user maintenance screens allow usernames to contain only lowercase letters and numbers.
This plugin relaxes those restrictions, similar to how the Blog Name Restrictions Override plugin does for site names.
It should be especially useful for any setup that uses an external authentication system, such as Shibboleth, which sends usernames that look like email addresses.
Contents contributed and discussions participated by bkozlek
WordPress at TLT Labs | ews11 | Activity - 0 views
BuddyPress.org | Community/groups | How-To and Troubleshooting | Forum - 3 views
-
the buddypress admin bar has a redirect_to that sends the user to the main site instead of back to the blog they’re looking at.
lynda.com search results for wordpress - 0 views
-
Lynda.com has tutorials on wordpress. In addition to general training, it has training on creating custom themes and plugins. Enter through the PSU page to get access to all the tutorials: http://its.psu.edu/training/lynda/
WordPress › diigoRSS « WordPress Plugins - 0 views
WordPress › Subscribe to Comments « WordPress Plugins - 0 views
-
Subscribe to Comments is a robust plugin that enables commenters to sign up for e-mail notification of subsequent entries. The plugin includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts, block all notifications, or even change their notification e-mail address!
WordPress › Onswipe « WordPress Plugins - 0 views
CUNY Academic Commons | Home - 0 views
WordPress › Twitter Blackbird Pie « WordPress Plugins - 0 views
-
Add awesome looking embedded HTML representations of actual tweets in your blog posts just by adding simple shortcodes.
WordPress › VoiceThread Auto Embed « WordPress Plugins - 0 views
-
This plugin will allow you to embed a VoiceThread just by pasting the link into your post or page.
BuddyPress.org | Community/groups | How-To and Troubleshooting | Forum - 0 views
-
<?php /* Plugin Name: remove buddypress login form * Description: remove buddypress login form * Author: PerS * Version: 1.0 * Author URI: http://soderlind.no/ * Plugin URI: http://soderlind.no/ */ add_action('bp_before_sidebar_login_form', 'ps_before_sidebar_login_form'); function ps_before_sidebar_login_form() { ob_start(); } add_action('bp_after_sidebar_login_form', 'ps_after_sidebar_login_form'); function ps_after_sidebar_login_form() { ob_end_clean(); } ?>
PhotoQ WordPress Photoblog Plugin - 0 views
-
PhotoQ was designed to automate and simplify your photo posting process as much as possible. It takes away the hassle of browsing uploaded image files and embedding them into posts: You simply upload your photo to the queue and enter desired information about the photo. PhotoQ then automatically generates the post based on this information. PhotoQ is also able to automatically generate custom field content required by your theme: Gone are the days when you had to remember special post formatting instructions when publishing your photo posts. PhotoQ is compatible with virtually any WordPress theme. For your convenience it comes already bundled with configuration presets for some of the more popular photo centric themes.
WordPress and basic authentication, problems with WP Cron and file uploads « ... - 0 views
-
The solution is pleasantly simple, just tell Apache to exempt this file from the authentication. This is fairly simple to do, and I added this FilesMatch block of code to my .htaccess: # Exclude the file upload script from authentication <FilesMatch "(async-upload\.php)$"> Satisfy Any Order allow,deny Allow from all Deny from none </FilesMatch>