Search Results for 'buddypress'
-
AuthorSearch Results
-
September 11, 2010 at 7:14 am #92143
Roger Coathup
Participant@imjscn – you’ve got the file name wrong, you need a hyphen not an underscore bp-custom.php
September 10, 2010 at 11:47 pm #92135Pisanojm
Participant@boonebgorges If you get a chance would you mind putting your “mind” on this again for a few minutes? Is it a lost cause? It’s not critical for me, but I would like to be able to do it. RE: latest topic preview in the groups page underneath each group name.
September 10, 2010 at 11:45 pm #92134In reply to: Buddypress forums not working
christofian
Participantsorry
1. Which version of WP/MU are you running?
wordpress 3.0.12. Did you install WP/MU as a directory or subdomain install?
3. If a directory install, is it in root or in a subdirectory?
the directory that I installed it in is: mysite.com/site/wordpress4. Did you upgraded from a previous version of WP/MU? If so, from which version?
no, this is a clean install5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
yes6. Which version of BP are you running?
buddypress 1.2.5.27. Did you upgraded from a previous version of BP? If so, from which version?
no8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Akismet, BuddyPress Moderation, and Register Plus. I tried deactivating them to no avail.9. Are you using the standard BuddyPress themes or customized themes?
the standard bp theme with a different header image10. Have you modified the core files in any way?
Yes. Before this I was getting an error because of mysql_get_server_info on wp-db.com, so I changed line 1589 (or somewhere around there from `return preg_replace( ‘/[^0-9.].*/’, ”, mysql_get_server_info( $this->dbh ));` to `return preg_replace( ‘/[^0-9.].*/’, ”, mysql_query(“select version() as $this->dbh”) );`, and that error stopped.11. Do you have any custom functions in bp-custom.php?
no12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
it came with bbpress build in.13. Please provide a list of any errors in your server’s log files.
couldn’t find those: I will keep on looking though.14. Which company provides your hosting?
000webhost.com15. Is your server running Windows, or if Linux; Apache, nginx or something else?
linux with apache 2.0Thank you for your help.
September 10, 2010 at 11:43 pm #92133Pisanojm
Participant@gregfielding I haven’t heard from @warut since the above post two weeks ago…
September 10, 2010 at 11:23 pm #92132In reply to: Buddypress forums not working
Boone Gorges
KeymasterWe’ll need more information in order to help.https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/
Also please do not bump your posts more than once a day. This board is not sufficiently well trafficked to expect a response within a few hours.
September 10, 2010 at 11:18 pm #92131In reply to: Adding topic tags after topic creation?
Pisanojm
Participant@r-a-y @mercime I just got this from @Brajesh and it is working great! Thank you both so much for your help with this.
Add this to the buddypress/bp-groups.php, around line 476, in addition to the above suggested add (this is a core change, not a theme change):
`
//add thisif(!empty($_POST[“topic_tags”]))
bb_add_topic_tags($topic_id,$_POST[“topic_tags”]);//add the new tags
//end adddo_action( ‘groups_edit_forum_topic’, $topic_id );
bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . ‘forum/topic/’ . $topic_slug . ‘/’ );
}
`Also, just for reference, here is the function I added to the functions.php to get the tags to go in a row. (associated with the code I posted above)…
`
//topic tags as rowfunction bb_row_tags( $args = null ) {
$defaults = array(
‘tags’ => false,
‘format’ => ‘row’,
‘topic’ => 0,
);$args = wp_parse_args( $args, $defaults );
extract( $args, EXTR_SKIP );if ( !$topic = get_topic( get_topic_id( $topic ) ) ) {
return false;
}if ( !is_array( $tags ) ) {
$tags = bb_get_topic_tags( $topic->topic_id );
}if ( !$tags ) {
return false;
}$r = ”;
switch ( strtolower( $format ) ) {
case ‘row’ :
default :
$args = ‘row’;
foreach ( $tags as $tag ) {
$r .= _bb_row_tag_item( $tag, $args );
}
break;
}
echo $r;
}function _bb_row_tag_item( $tag, $args ) {
$url = esc_url( bb_get_tag_link( $tag ) );
$name = esc_html( bb_get_tag_name( $tag ) );
if ( ‘row’ == $args ) {
$id = ‘tag-‘ . $tag->tag_id . ‘_’ . $tag->user_id;
return “t” . ‘‘ . $name . ‘‘ . “n”;
}
}
`September 10, 2010 at 11:05 pm #92130In reply to: Buddypress forums not working
christofian
Participantbump. Please help
September 10, 2010 at 10:51 pm #92129chewbaker
Participant@DJPaul and @mercime Here is my set up:
I installed wp 3.0.1 in a subdirectory (mysite.com/social/) – Works, no issues
I then installed latest buddypress (v 1.2.5.2) -activated it – White screen of death– I put debug mode on and I get the errors anca posted above.
I then researched some more and activated network mode for multiple blogs (even though i don’t need multiple blogs) –activated buddy press site wide and it works— partly. Now profile pages are not showing up. I am at a loss here. I don’t understand why buddypress breaks when you install on sub directories and sub domains. It only works for me when I install it on a clean domain. I didn’t have this problem w 2.92 and older buddypress, however, i need to move my sites to 3.0 and this is giving me a lot of grief. If anyone could help out, that would be great.September 10, 2010 at 10:01 pm #92128In reply to: events plugin?
milordk
Participant@hnla
It makes no sense to prove that it is better:) my plugin is being developed under my projects, it will evolve to a normal user, not a “how to calculate marketing .. You always have a choice – to use interface administrative panel of WordPress or normal and a lot of understandable for the user – the interface used by the theme …September 10, 2010 at 9:56 pm #92127In reply to: Buddypress pages redirect to homepage
Az Mansell
Participantive found out its an issue with nice names having a space in between names, such as az mansell… logging into phpadmin and removing the space fixed the issue!
thanks for all your help.. i have a new issue though but ill start a topic for it
September 10, 2010 at 9:48 pm #92126In reply to: creating a new page with a chat script
pcwriter
Participantphpfreechat looks easy enough to install and customize (css, avatars, etc).
The only major drawback I see is that it requires a page in order to work; meaning that users must remain on that page to chat.
In a network or multisite install, even a basic Buddypress site, a chat system needs to be independent of pages so users can visit other sections or network sites/blogs while they chat.
September 10, 2010 at 9:33 pm #92124In reply to: Can’t upload avatar image
Meerblickzimmer
ParticipantWell, i try also to change my avatar on buddypress.org an get this error:
Upload Failed! Error was: Unable to create directory /home/buddypress/public_html/wpmu/wp-content/blogs.dir/1/files/avatars/146228. Is its parent directory writable by the server?
September 10, 2010 at 9:10 pm #92122In reply to: creating a new page with a chat script
thelandman
Participant@bugicp, Try this plugin https://wordpress.org/extend/plugins/phpfreechat/
September 10, 2010 at 7:44 pm #92117In reply to: Adding topic tags after topic creation?
r-a-y
Keymaster@pisanojm – Just looked into this… there’s a bit of patching that needs to be done across multiple files to get topic tags on the edit screen working.
I’ve got a preliminary version working on my testbox. Will add a patch in the next day or so. Stay tuned on Trac!
September 10, 2010 at 7:27 pm #92115In reply to: Buddypress pages redirect to homepage
@mercime
Participant@azmansell2010 what modemlooper said. Also, deactivate all BP plugins except BuddyPress and still if errant behavior persists.
September 10, 2010 at 7:25 pm #92114In reply to: unwanted redirect in my tabs
@mercime
ParticipantSeptember 10, 2010 at 7:25 pm #92113In reply to: all BP links on site lead back to homepage
@mercime
ParticipantSeptember 10, 2010 at 6:59 pm #92108Paul Wong-Gibbs
KeymasterHaving researched this recently, people affected are probably using PHP 5.3. Let me know what filters plugins are triggering the errors for and we’ll try to fix for BP 1.2.6.
September 10, 2010 at 6:48 pm #92107@mercime
Participant@chewbaker – assuming you’re using WP 3.0.1 and BP 1.2.5.2, deactivate all plugins except BuddyPress and then activate bp-default theme. If the errors do not disabpper then you have to give more info than what you posted.
September 10, 2010 at 6:19 pm #92105chewbaker
ParticipantI get this too. I really would like to know how to resolve this???
September 10, 2010 at 5:10 pm #92101In reply to: Multiblog + unique communities
Ken Swift
Participanthttps://wordpress.org/extend/plugins/auto-join-groups/
This plugin does the trick. The only issue is that it hasn’t been updated to work with Buddypress so you need to manually change the ‘wpmu-admin’ references into ‘ms-admin’ by simply editing the script.
September 10, 2010 at 4:58 pm #92100In reply to: creating a new page with a chat script
thelandman
ParticipantSeptember 10, 2010 at 4:07 pm #92094gregfielding
ParticipantJust checkin in…any progress on this?
September 10, 2010 at 3:20 pm #92091In reply to: creating a new page with a chat script
thelandman
Participant@bugicp, I know its not recommended but you could just put an iframe on the new page and make the iframe point to the x7chat script.
September 10, 2010 at 2:59 pm #92088In reply to: Buddypress pages redirect to homepage
modemlooper
ModeratorDid you try to create another Admin account and test to see if the same thing is happening?
-
AuthorSearch Results
