Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 21 replies - 251 through 271 (of 271 total)
  • @valuser

    Participant

    or try the bp template pack download at https://github.com/boonebgorges/bp-template-pack

    @valuser

    Participant

    @valuser

    Participant

    define(‘BP_DISABLE_ADMIN_BAR’, true); + Hide admin bar for logged out users NO works

    @valuser

    Participant

    define(‘BP_DISABLE_ADMIN_BAR’, true); worked up to 1.29
    in bp 1.5 beta 2 on a multisite it works but whitespace takes it place

    @valuser

    Participant

    Just to confirm all is well. Apology for wasting your time. installed beta 2-4940 on another multisite install and the installation etc went smoothly – there is a blogs directory.

    @valuser

    Participant

    site tracking is turned on.

    @valuser

    Participant

    Am running multisite
    Have bp on blog 2 define ( ‘BP_ROOT_BLOG’, 2 ); in wp-config

    the tab ‘Pages’ in Dashboard > BuddyPress > Components on blog 2 has no mention of a blogs directory

    earlier in the Dashboard Network admin there was a warning

    “Some of your WordPress pages are linked to BuddyPress Components that are disabled: ok, one ore time. Repair” pressed button . this seemed to redirect me to BuddyPress Components on blog 1 which had the same set-up in the tab ‘Pages’
    (i did have 1.29 on this site)

    Directories
    Associate a WordPress Page with each BuddyPress component directory.
    Activity Streams
    Discussion Forums
    User Groups
    Members
    then registration.
    no mention of a Blog Directory ?
    (just posted from another blog (id8) and it was picked up by the activity stream)

    If this is not replicated in your setups then i must have installed incorrectly and thats ok please say so as i don’t want to waste your time.

    just testing this out the version im using is trunk 4932

    @valuser

    Participant

    @modemlooper on an install that is multisite there is a filter for posts and for comments. @ Paul Gibbs made the distinction above.

    Would now like to control the category of posts that get posted to the activity stream. Will start a new topic re same later.

    @valuser

    Participant

    Got 1.5 (4932) installed properly. Works brilliantly so far. Wrote the ticket as suggested only to latter find that the functionality I thought was lacking (ie blog post/comment deletion triggers activity stream deletion) has been implemented. ???? Could this be so? Feel like I’m wasting people’s valuable time.

    @valuser

    Participant

    Thanks to both.
    will do ticket at weekend. There is a kind of similar one at Ticket #2228 (new defect).

    This item on testbp.org works perfectly – so its my set-up . will give it a go over weekend.

    for *ALL* activity stream items – yes

    Also @modemlooper – just did a new post and it has turned up in activity stream so I mustn’t have installed this 1.5 properly.

    @valuser

    Participant

    Bril & thanks.

    @valuser

    Participant

    will the update from 1.29 to 1.3 be as smooth as this one (from 1.28 to 1.29) ?

    @valuser

    Participant

    came across http://blogs.ubc.ca/
    appears to be a great example of what bp can do (3000+ blogs etc)

    @valuser

    Participant

    have a look at http://blogs.ubc.ca/

    certainly living proof that bp is an extremely useful platform.

    @valuser

    Participant

    Could @aljuk elaborate on the unforseen complications that arose from replacing the appropriate strings in bp-blogs/bp-blogs-templatetags.php etc. ?

    @valuser

    Participant

    Installed unified search as per above link and transferred search to sidebar as per @mercime at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/search-login-bar/ . Truly Excellent tips. Just one extra step required. In Groups,Blogs,and Members Directory there remains a search bar in addition to the unified search now in sidebar. How to remove this ?

    @valuser

    Participant

    In subdirectory network – Multisite with subdirectories http://examplesite.com/http://examplesite.com/subsite1http://examplesite.com/subsite2http://examplesite.com/subsite3 etc etc. and say with define ( ‘BP_ROOT_BLOG’, 3 );? in the wp-config file Should buddypress plugins like say “bp profile map” be network activated or activated in subsite 3 in order to get them to work or does something else have to be done. Any help very much appreciated

    @valuser

    Participant

    Am attempting to implement some of the ideas from this forum, particularly those from the post https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-spam/?topic_page=3&num=15#post-69499
    Would really appreciate some guidance in order to do this correctly. Some of this may appear stupid –

    My Set up is the following-BuddyPress installation on a subsite.

    a) Multisite with subdirectories http://examplesite.com/http://examplesite.com/subsite1http://examplesite.com/subsite2http://examplesite.com/subsite3 etc etc.
    b)BuddyPress installed on a subdirectory. say on http://examplesite.com/subsite3
    c) So that there is a consistent signup interface I have redirected the signup of http://examplesite.com/ from http://examplesite.com/wp-signup.php to http://examplesite.com/subsite3/register via a plugin Quick Page/Post Redirect. Before doing this the signups at http://examplesite.com/ were going to http://examplesite.com/wp-signup.php and from anywhere else were going to http://examplesite.com/subsite3/register.

    Question 1
    With regard to
    1)# BEGIN ANTISPAMBLOG REGISTRATION
    2)RewriteEngine On
    3)RewriteCond %{REQUEST_METHOD} POST
    4)RewriteCond %{REQUEST_URI} .wp-signup.php*
    5)RewriteCond %{HTTP_REFERER} !.examplesite.com. [OR]
    6)RewriteCond %{HTTP_USER_AGENT} ^$
    7)RewriteRule (.*) http://examplesite.com/goaway.html [R=301,L]

    A) In line 4 what do I replace .wp-signup.php* with ? Is it .register.php* ? or is it .subsite3/register.php ?? or is it something else ???
    B) In line 5 do i replace !.examplesite.com. with anything ? say !.examplesite.com/subsite3. ???

    Question 2
    With regard to “changing the register slug”
    A) does this mean changing the name of the file register.php ??? or something else ??? and inserting define( “BP_REGISTER_SLUG”, “your-registration-slug” ); with the new name replacing “your-registration-slug” say retsiger.php or with some other name?
    B) Would it then be necessary to go into the plugins like say Buddypress Humanity and change any references to register.php to whatever its name has been changed to or is that taken care of by the define( statement )) ??

    Question 3
    If the site was http://www.examplesite.com/ instead of http://examplesite.com/ would there be any changes to your advice ?

    Question 4
    In my .htaccess file there is already a line “RewriteEngine On” . Do I still include line 2 of the above?

    Question 5
    Is there any particular place in the .htaccess file where the above code should be inserted ?

    Many Thanks

    @valuser

    Participant

    adding “Groups” page to new bp site seems to have solved it

    @valuser

    Participant

    Followed instructions from above link. All worked well.

    Except

    the new bp installation is not drawing in the posts from the other sites.

    Any ideas about where to look to get this functionality back would be greatly appreciated.

    @valuser

    Participant

    First, caution: am very new to this.
    have put up a test site of p2 with buddy at http://ruby.de-nws.com/. (all entries sites etc to date have been put up by me) see first post.
    to upload an image (example 2nd post a Vote It Up image)
    1) press add an image then upload it first from, say, your computer. it goes to your media library in the p2 folder on your server
    2) then repeat add an image –> media library –> insert into post.
    BTW great site. How did you get Vote It Up to work like that ? Really impressive!

Viewing 21 replies - 251 through 271 (of 271 total)
Skip to toolbar