Jaap
Forum Replies Created
-
Forum: Plugins
In reply to: [mTouch Quiz] [Plugin: mTouch Quiz] Error in MUHi,
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
In reply to: [mTouch Quiz] [Plugin: mTouch Quiz] Error in MUI 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!
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
In reply to: [WP-Sentinel] [Plugin: WP-Sentinel] Locked out of my site with no optionsI 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.
Hi,
I activated this sitewide and seemed to work.
Could ask on author homepage doh.Kind regards,
J.
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
In reply to: Custom Post Types And User RolesWell 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
In reply to: 2.7 upgrade – Redirect Loop errorHello,
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.