Search Results for 'wordpress'
-
AuthorSearch Results
-
April 5, 2010 at 6:18 am #71766
In reply to: 404 Page Not Found Issues – Mod Rewrite
paulellis55
MemberRan into the same issue of 404 Not Found after activating BuddyPress on my WP installation on Ubuntu 9.10. Looks like the default Apache installation didn’t have mod_rewrite enabled.
To address this I did the following:
– sudo a3enmod rewrite
– sudo apache2ctl restart
– put .htaccess in my WordPress directory (/var/www) :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
– put the following in /etc/apache2/apache2.conf
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride all
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride FileInfo Options
Order allow,deny
allow from all
</Directory>
I haven’t tested to see if this is all needed or not, but that’s what my site has configured now and it appears to fix the issue.
April 5, 2010 at 5:52 am #71762In reply to: Cincopa photo plugin is not a BP media component
@mercime
ParticipantI’m not aware of any precedent in plugins claiming to be BuddyPress compatible which aren’t
Mingle, a social networking WP plugin is one I’ve seen listed once a while in https://buddypress.org/extend/plugins/ when the plugin get’s updated. It doesn’t even claim to be BP compatible, it’s just tagged as buddypress.
April 5, 2010 at 1:36 am #71751stwc
ParticipantI’ve just moved a localhost.localdomain install to a live server. It was easy as pie.
As I recall the steps: I moved the entire WPMU install to my live server, created an empty database. I exported my local database as SQL from PHPmyadmin, then opened up the export.sql file in Notepad++ and search-replaced all the URLs as necessary on the local file, then imported to the new, blank database.
I edited the wp-config file (and the bb-config as well) to update the db credentials and URLs, and almost everything just worked!
Once exception: I think I had to go into the Buddypress–>Forums setup and hit the button to setup the forums again for some reason, but after that, all was well.
The instructions here were helpful.
This would work moving between domains as well, of course.
April 4, 2010 at 5:22 pm #71712In reply to: Friend request is not working
miciver
ParticipantFound the error…
Google Analytics 3 codes for WordPress
When I disabled the plugin…anything was working again.
Michael
April 4, 2010 at 4:26 pm #71704copywryter
MemberHiya, yes /community is a sub-blog, but not of a WPMU installation. Does that matter?
So on some level two independently installed blogs are controlled by a single wp-config.php file? I guess I don’t understand why they aren’t simply called up as distinct urls.
I’ll try editing the wp-config.php. Thanks!
*edit* no I guess I won’t, since I’m guessing that your fix works for MU sub-installations.
April 4, 2010 at 12:55 pm #71689dadaas
MemberJust posted this same error on wordpress but as i see they didnt give you solution for over a month… any ideas?
April 4, 2010 at 12:19 pm #71684In reply to: Difference between BP on WP versus BP on WPMU??
Andrea Rennick
ParticipantAnd wordpresschina, BuddyPress works on single WP installs right now.
April 4, 2010 at 11:14 am #71679In reply to: Buddypress signup/login widget for a web site
danbpfr
Participantnot sure, but this can help you perhaps
http://maisonbisson.com/blog/post/14028/wordpress-hacks-managing-multiple-sub-domains/
or maybe, a simple hardcoded link on your main page to the bp register/login page, huh ?
April 4, 2010 at 11:02 am #71678In reply to: Importing data from Excel, CSV sheet
WPChina
Participant@DJPaul: tks! weird… my search terms seemed to have been slightly off.
I installed the “Bulk Import Members (Users)” ( https://wordpress.org/extend/plugins/bulk-import-members-users/ ) but it triggered an install error:
Warning: require_once(bp-core.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/my_site_name/wp-content/plugins/user-import-for-buddypress-all-fields/bp-user-import-adv.php on line 29I searched more and found an alternative version of this (version 1.0.1) the the developer’s own site and it installs fine:
http://manojkumar.org/bulk-import-members-users-plugin-for-buddypress-site/
The other 2 seem fine too but not as comprehensive and new as the one above. I also have used dagondesign in the past and I like their plugins, but because it it not in the repository I fear about using these types of plugins sometimes.
April 4, 2010 at 7:58 am #71670Paul Wong-Gibbs
KeymasterIt adds navigation links to blog ID #1 because… that’s how it works. Are you on WPMU, and /community is a sub-blog?
If so, you can change which blog BuddyPress runs on by using the following (e.g. blog ID 2) in your wp-config.php:
define ( 'BP_ROOT_BLOG', 2 );https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/
April 4, 2010 at 7:46 am #71667In reply to: Importing data from Excel, CSV sheet
Paul Wong-Gibbs
KeymasterA quick google reveals several bulk-import scripts and plugins for WordPress/MU. Have a look at http://www.dagondesign.com/articles/import-users-plugin-for-wordpress/.
Regarding bulk import of xprofile data: Manjor Kumar had done some BuddyPress-specific import plugins for a very early version, but I can’t vouch for if they still work:
https://wordpress.org/extend/plugins/bulk-import-members-users/
and
https://wordpress.org/extend/plugins/user-import-for-buddypress-all-fields/
April 4, 2010 at 6:49 am #71664In reply to: Difference between BP on WP versus BP on WPMU??
r-a-y
KeymasterWP 3.0 merges the functionality of WPMU into standard WP.
BP 1.3 will support WP 3.0:
https://buddypress.org/about/roadmap/
With WPMU, you can use some nifty BP plugins like BP Group Wiki, BP Group Blog and BP Classifieds. These plugins do not work with the standard WP version of BP.
April 4, 2010 at 6:04 am #71659In reply to: Quickpress Errors
vee_bee
Participant@gregfielding I had the same error (even though my aim was to use it in single wp), and found the following wordpress trac ticket https://core.trac.wordpress.org/ticket/12078
That corrects the first error….
V
April 4, 2010 at 4:51 am #71657In reply to: Redirecting to profile page after login
peterverkooijen
Participantadd_filter("login_redirect","bpdev_redirect_to_profile",10,3);
function bpdev_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user)
{
if(empty($redirect_to_calculated))
$redirect_to_calculated=admin_url();
/*if the user is not site admin,redirect to his/her profile*/
if(!is_site_admin($user->user_login))
return bp_core_get_user_domain($user->ID );
else
return $redirect_to_calculated; /*if site admin or not logged in,do not do anything much*/
}I put it in bp-custom.php. Probably also works in functions.php.
He also has this essential logout redirect to homepage plugin. Both should have been default wp/bp behavior imho.
April 4, 2010 at 1:43 am #71653In reply to: FAQ: How To, Code Snippets and Solutions
jivany
ParticipantRedirect to User’s Profile Page on Login
Place the following snippet in either wp-content/plugins/bp-custom.php or in your child theme’s functions.php file.
function oci_login_redirect($redirect_to, $set_for, $user){
$redirect_to = bp_core_get_userurl($user->id);
return $redirect_to;
}
add_filter('login_redirect', 'oci_login_redirect', 10, 3);From https://buddypress.org/forums/topic/two-questions-about-the-login-process#post-8380
(alternate method)
Use Brajesh’s plugin (which does basically the same thing as above):
https://wordpress.org/extend/plugins/bp-redirect-to-profile/
April 3, 2010 at 11:31 pm #71633In reply to: Dealing with COMMENT spam – help!
kidrob
ParticipantHmm… check this out: http://www.642weather.com/weather/scripts-wordpress-captcha.php
April 3, 2010 at 10:22 pm #71629In reply to: need help with get_all_page_ids function
Paul Wong-Gibbs
KeymasterThis is nothing to do with BuddyPress; this should go on the WordPress forums.
April 3, 2010 at 9:07 pm #71623In reply to: 404 error on BP links
jivany
ParticipantIf you are using IIS, you might have to follow the directions suggested here:
https://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite
I don’t think IIS supports mod_rewrite which is what WP uses (and BP).
Does your site work with BP installed?
April 3, 2010 at 8:59 pm #71622In reply to: Help, please: I don't understand Step Three
jivany
Participant@cpentleton & @xiv-studios: Sorry if I offended either of you.
BuddyPress has the unfortunate (and fortunate) ability to be installed via the plugin installer built into WordPress. Out of the box it is fantastic and very complex. This can create a very confusing and quite steep learning curve for anyone starting out.
@cpentleton: I look forward to your new topic. Hopefully it’s something I can give you a hand with. If not, I’m sure there will be a BP community member who can.
April 3, 2010 at 7:45 pm #71617In reply to: Buddymatic 1.2
WebFadds
MemberHi Ron –
Hey thanks very much for your work on porting over Thematic for the BuddyPress platform.
General Question: Now that Themeshaper and Thematic are part of the WordPress core effort, do you look to see “great assimiliation” with WP3/MU, BuddyPress, and Thematic/Buddymatic?
TESTING 1.2 NOTES:
I am testing Buddymatic version 1.2, using the “Coffee with Friends” 1.0 child theme — on WordPress 2.9.2
* Yellow notice at top in admin to “activate a BuddyPress compatible theme” remains present, even after child theme activation. Notice disappears when default BuddyPress theme is used.
* Cannot add a new forum topic even though one group has been created
* GROUPS/FORUMS Functionality: Using Buddymatic with the “Coffee with Friends” child theme there are several problems that occur when attempting to set up forums and topics:
– Topic accepted under a new group, but does not appear in topic list
– Under forums link (http://SITE.com/forums/) no topics appear
– Attempts to create a new topic at the forums page does not happen — no group appears in the pop-down list
Thanks –
Scott
April 3, 2010 at 6:31 pm #71607In reply to: How to disable Gravatar
Paul Wong-Gibbs
KeymasterbbPress and Gravatar are Automattic projects, as is WordPress, BuddyPress and many others. Check the full list at http://automattic.com/.
April 3, 2010 at 5:31 pm #71593In reply to: Any Experience with JQuery Tools Library
peterverkooijen
ParticipantjQuery is native to WordPress. In my custom theme I try to leverage what’s built-in as much as possible and jQuery is very flexible. This looks like the standard jQuery library conveniently packaged with some popular applications. I’m not sure what if anything it adds to what’s already in WP.
April 3, 2010 at 5:06 pm #71590jivany
ParticipantThere are plugins that allow WP users to write posts without going into the backend. I think TDO Mini Forms (https://wordpress.org/extend/plugins/tdo-mini-forms/) allows this. I’m not that familiar with the plugin though.
I think there is also a “quickpress” type plugin to allow the same as what the “quickpress” function does on the main dashboard in WP.
April 3, 2010 at 5:02 am #71547In reply to: Group forum subscription
Dwenaus
Participantthere is a new version of this plugin that a bunch of us are working on that might supersede the one listed above:
https://wordpress.org/extend/plugins/buddypress-group-email-subscription/
April 2, 2010 at 11:06 pm #71515In reply to: Have you seen a Forum widget?
-
AuthorSearch Results