-
NipponMonkey posted a new activity comment 14 years, 1 month ago
@pisanojm, Sorry for not replying earlier, I’ve been busy with other stuff recently…
Your plugin looks awesome, I haven’t tried it yet, but I’ve taken a look at your website.
I have a question though, why does this line need to be added? Does your plugin need to access the site when the user isn’t logged in?
Ah, I bet it’s because the calls…[Read more]
-
nipponmonkey posted on the forum topic Creating Custom Config-File does not work! in the group BuddyPress Private Community: 14 years, 1 month ago
I’ve just checked out your domain: http://www.mousenetwork.de/mousefriends/ It’s redirecting to the register page now, so it looks like you’ve solved this problem. I think all you had to do was change the redirect to url to your register page. Also, the other pages seem to be working fine too, I can view the News, Uber, […]
-
nipponmonkey posted on the forum topic Subdomain on Network Install in the group BuddyPress Private Community: 14 years, 1 month ago
Glad you got it working, I hope you managed to configure it to your needs…
-
nipponmonkey posted on the forum topic custom config file won't load? in the group BuddyPress Private Community: 14 years, 1 month ago
@lauratee, Sorry for not replying earlier… I’ve been busy… Well your problem seems to be that your config file isn’t being loaded for some reason. The normal problem is that you haven’t saved the file in the right place, or used the wrong file name. Another reason could be that the plugin hasn’t been activated in […]
-
nipponmonkey posted on the forum topic redirect to profile after registration in the group BuddyPress Private Community: 14 years, 1 month ago
This isn’t possible with this plugin. You’d need a new plugin that handles redirects on log in.
-
nipponmonkey posted on the forum topic Creating Custom Config-File does not work! in the group BuddyPress Private Community: 14 years, 1 month ago
Like I said in a previous post, to allow public access to “http://www.mousefriends.de/”, you just have to added ” to the list of allowed urls. That should stop the infinite redirect loop.
<?php
[Read more]
MM_BUDDYPRESS_PRIVATE_COMMUNITY::$ALLOWED_URIS = Array(
'',
… -
nipponmonkey posted on the forum topic Creating Custom Config-File does not work! in the group BuddyPress Private Community: 14 years, 1 month ago
What’s not working, what’s happening? Are some of your public pages working correctly and some not? Or are all of your public pages not working correctly?? I’ve just taken a look at your site and I found that your “News” items have URLs like: ‘http://www.mousefriends.de/archives/1’ And the Archives for news like this:…[Read more]
-
nipponmonkey posted on the forum topic Creating Custom Config-File does not work! in the group BuddyPress Private Community: 14 years, 1 month ago
OK, you have some errors in your code, try this: ` <?php MM_BUDDYPRESS_PRIVATE_COMMUNITY::$ALLOWED_URIS = Array( // 'http://wwww.domain.de/', // NOTE: NOT NEEDED, only WP/BP URIs on your site should be added here. // '', // NOTE: ADD THIS TO GIVE ACCESS TO YOUR DOMAIN ROOT. '' represents the root domain. '/register', '/activate?key=*',…[Read more]
-
nipponmonkey posted on the forum topic Creating Custom Config-File does not work! in the group BuddyPress Private Community: 14 years, 2 months ago
Yeah, can configure it however you like. Its very flexible. If you want logged out users to be redirected to a start page, just set that page as the $REDIRECT_TO_URL instead of the register page.
MM_BUDDYPRESS_PRIVATE_COMMUNITY::$REDIRECT_TO_URL = site_url() . "/start-page";
If your start page isn’t part of your WP/BP site then you can […] -
NipponMonkey posted a new activity comment 14 years, 2 months ago
-
nipponmonkey posted on the forum topic Creating Custom Config-File does not work! in the group BuddyPress Private Community: 14 years, 2 months ago
Here is how you can check that the config file is working, just make a config file with this line:
<?php MM_BUDDYPRESS_PRIVATE_COMMUNITY::$REDIRECT_HOOK = 'new_redir_to';
If you try to access a private page, you should be redirected to the home page of your BP site and you'll see the "new_redir_to" in the URL. e.g. […] -
nipponmonkey posted on the forum topic How do you set : front page,blog,register page & RSS feeds open in the group BuddyPress Private Community: 14 years, 2 months ago
I think you’re confusing 2 plugins! This one is called BuddyPress Private Community (latest version 0.5), the other made at a similar time is called Private BuddyPress (version 1.x). My one doesn’t use WP Admin menus as I didn’t want to make database calls from this plugin to make it run faster. You can do […]
-
nipponmonkey posted on the forum topic [BP Private Community] Allow Registration & Contactform in the group BuddyPress Private Community: 14 years, 2 months ago
Check out the FAQs again. It tells you how to create a custom config file. Basically, you make a new php file with your custom settings in the following location: /wp-content/plugins/buddypress-private-community-config/mm-buddypress-private-community-config.php IMPORTANT: New directory name: ‘buddypress-private-community-CONFIG’ (lower case) New…[Read more]
-
nipponmonkey posted on the forum topic subdirectory issue in the group BuddyPress Private Community: 14 years, 2 months ago
You can check out this post forum topic for working with WP in a sub directory: https://buddypress.org/community/groups/buddypress-private-community/forum/topic/redirect-hell/ The URL you showed me looks fine: example.com/NUDC/?redirect=%2Fnudc When logged out, if you access a page that you’ve set to being public, then you won’t get the extra…[Read more]
-
nipponmonkey posted on the forum topic Activity Stream RSS Parsing Error in the group BuddyPress Private Community: 14 years, 2 months ago
Ooops, there was a small bug in the BP RSS feeds blocker in the plugin. I’ve updated it to 0.5 now, this will get rid of this Error. Also, I’ve added a new feature for you. Previously, the RSS feeds were always blocked or never blocked. But now I’ve added an extra variable, $BLOCK_RSS_FEEDS_WHEN_LOGGED_IN, that […]
-
nipponmonkey posted on the forum topic Feature request in the group BuddyPress Private Community: 14 years, 2 months ago
I have no plans to do that at the moment, but maybe in the future. I wanted to avoid calls to the database to keep the plugin lightweight, I think it’s pretty easy to upload the config file to correct location and configure it however you like. There are examples of how to do this […]
-
nipponmonkey posted on the forum topic php error in the group BuddyPress Private Community: 14 years, 2 months ago
I decided to make it as a static class as all of the functions and variable can be stored in one place without having lots of really long functions defined constants. I think that’s a lot better way of programming.Also, it’s also better for working with an IDE as you can use auto-complete on the […]
-
nipponmonkey posted on the forum topic php error in the group BuddyPress Private Community: 14 years, 2 months ago
@hnla, yes I agree with you, I’ve updated the plugin, waiting for 0.4 to be available for download now. I’ve only ever coded in PHP 5, so it’s hard to know the best way to support for older versions. After the changes I’ve made, it will work in earlier versions of PHP than 5.2.3, but I […]
-
nipponmonkey posted on the forum topic php error in the group BuddyPress Private Community: 14 years, 2 months ago
Thanks James, I’ll play around with this and make an update later…
-
nipponmonkey posted on the forum topic How to make a private community? in the group How-To and Troubleshooting: 14 years, 2 months ago
@spinhead, the problem seems to be because your blog isn’t in the root domain. I think you need to change the config file a little to get it working. See my reply:
https://buddypress.org/community/groups/buddypress-private-community/forum/topic/redirect-hell/ - Load More
@nipponmonkey
Not recently active