Title: Jaap's Replies | WordPress.org

---

# Jaap

  [  ](https://wordpress.org/support/users/frostbite117/)

 *   [Profile](https://wordpress.org/support/users/frostbite117/)
 *   [Topics Started](https://wordpress.org/support/users/frostbite117/topics/)
 *   [Replies Created](https://wordpress.org/support/users/frostbite117/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/frostbite117/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/frostbite117/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/frostbite117/engagements/)
 *   [Favorites](https://wordpress.org/support/users/frostbite117/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mTouch Quiz] [Plugin: mTouch Quiz] Error in MU](https://wordpress.org/support/topic/plugin-mtouch-quiz-error-in-mu/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-mtouch-quiz-error-in-mu/#post-1804923)
 * Hi,
 * The only thing I did was updating my wordpress core from 3.0.5 to 3.1.
    And several
   plugins. Dind’t change anything else. The mtouch plugin worked on 3.0.5 but now
   when I go to the page of the quiz the page quiz isn’t showing.
 * I’ll deactivate some plugins later to test if those are the problem.
 * Thanks for the quick response!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mTouch Quiz] [Plugin: mTouch Quiz] Error in MU](https://wordpress.org/support/topic/plugin-mtouch-quiz-error-in-mu/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-mtouch-quiz-error-in-mu/#post-1804921)
 * I also get a white screen, when I updated the plugin (2.2.2) and wordpress (3.1)
   to it’s latest version.
    I am using a multi-site installation. It works on a 
   single-site installation.
 * How could this be fixed?
 * Thanks in advance!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Limit Blogs Per User] [Plugin: Limit Blogs Per User] its not working for multisite](https://wordpress.org/support/topic/plugin-limit-blogs-per-user-its-not-working-for-multisite/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-limit-blogs-per-user-its-not-working-for-multisite/#post-1832074)
 * This works for me:
 * 1. Go to the functions.php file from your BuddyPress theme.
    2. Add this at the
   top of the php: `<? ob_start(); ?>` <i>So you’ll not get any white screens.</
   i> 3. Then add this at the bottom of the php:
 *     ```
       <?php
       function ds_one_blog_only($active_signup) {
       // get the array of the current user's blogs
       	$blogs = get_blogs_of_user( get_current_user_id() );
       // all users may be members of blog 1 so remove it from the count, could be a "Dashboard" blog as well
       	if ($blogs["1"]) unset($blogs["1"]);
       //if the user still has blogs, disable signup else continue with existing active_signup rules at SiteAdmin->Options
       	$n = count($blogs);
       	if($n == 1) {
       		$active_signup = 'none';
       		echo '';
       	} elseif($n > 1) {
       		$active_signup = 'none';
       		echo '';
       	} else {
       		$active_signup = $active_signup;
       	}
       	return	$active_signup; // return "all", "none", "blog" or "user"
       }
       add_filter('wpmu_active_signup', 'ds_one_blog_only');
       ?>
       ```
   
 * <i>This will remove the ‘Create a blog’ button when a user already has a blog.
   </i>
 * Cheers!
 * J.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Sentinel] [Plugin: WP-Sentinel] Locked out of my site with no options](https://wordpress.org/support/topic/plugin-wp-sentinel-locked-out-of-my-site-with-no-options/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-sentinel-locked-out-of-my-site-with-no-options/#post-1809512)
 * I have the same problems with multiple sites it blocks me or other out saying
   they r bruteforcing, but they never typed any thing wrong neither did I.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] [Plugin: BulletProof Security] Using this with WordPress multisite](https://wordpress.org/support/topic/plugin-bulletproof-security-using-this-with-wordpress-multisite/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-bulletproof-security-using-this-with-wordpress-multisite/#post-1794915)
 * Hi,
 * I activated this sitewide and seemed to work.
    Could ask on author homepage doh.
 * Kind regards,
 * J.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Upgrade to WordPress 3.0 Shows Broken Backend And No CSS Front Page For New Site](https://wordpress.org/support/topic/upgrade-to-wordpress-30-shows-broken-backend-and-no-css-front-page-for-new-site/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/upgrade-to-wordpress-30-shows-broken-backend-and-no-css-front-page-for-new-site/#post-1543172)
 * This should work if your htacces file looks like this:
 *     ```
       RewriteEngine On
       RewriteBase /
   
       #uploaded files
       RewriteRule ^(.*/)?files/$ index.php [L]
       RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
       RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
   
       # add a trailing slash to /wp-admin
       # RewriteCond %{REQUEST_URI} ^.* /wp-admin$
       # RewriteRule ^(.+)$ $1/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule . - [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
       RewriteRule . index.php [L]
   
       <IfModule mod_security.c>
       <Files async-upload.php>
       SecFilterEngine Off
       SecFilterScanPOST Off
       </Files>
       </IfModule>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom Post Types And User Roles](https://wordpress.org/support/topic/custom-post-types-and-user-roles/)
 *  Thread Starter [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/custom-post-types-and-user-roles/#post-1587088)
 * Well yeah both user roles must be able to post Posts but not the posts That i
   dissalow in the plugin more fields. Now it only disables the menu but u can still
   acces other post types through the url bar. Hope that can be fixed would be real
   helpfull.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [2.7 upgrade – Redirect Loop error](https://wordpress.org/support/topic/27-upgrade-redirect-loop-error/)
 *  [Jaap](https://wordpress.org/support/users/frostbite117/)
 * (@frostbite117)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/27-upgrade-redirect-loop-error/#post-924064)
 * Hello,
 * I had the same problem. The ‘Disable Canonical Redirection’ plugin didn’t work
   for me but the following thing worked:
 * I deactivated all my plugins and the problem was gone. So I activated plugin 
   by plugin and tested where it went wrong.
    The plugin that I had installed called
   WP-lite caused the problem. When I activated and deactived it I could login again.
   So some plugins just aren’t ready for WP 2.7 I guess.

Viewing 8 replies - 1 through 8 (of 8 total)