Skip to main content

Home/ TLT Wordpress/ Group items tagged authentication

Rss Feed Group items tagged

bkozlek

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>
  •  
    A fix for problem when using the flash uploader when also using http authentication
  •  
    Yeah, I noticed the upload error yesterdy while showing someone our WP install. Glad there is an easy fix.
bkozlek

WordPress › HTTP Authentication « WordPress Plugins - 1 views

  • The HTTP Authentication plugin allows you to use existing means of authenticating people to WordPress. This includes Apache's basic HTTP authentication module and many others.
bkozlek

Network Username Restrictions Override 1.0 | dwc's Development Blog - 0 views

  • 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.
bkozlek

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(); } ?>
  •  
    a simple bit of plugin code to hide the login form on the sidebar of buddypress. 
1 - 4 of 4
Showing 20 items per page