Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 19,176 through 19,200 (of 22,650 total)
  • Author
    Search Results
  • JK
    Participant

    That’s because he specified “http://www.cfcommunity.net/” in his Facebook Application, but his website is identified as “http://cfcommunity.net/” by WordPress (see http://www.justin-klein.com/projects/wp-fb-autoconnect#faq11 )

    #68904
    corin-rules
    Member

    I’m having a similar problem, people sitting next to me who are online and the widget is saying ‘There are no users currently online’.

    WordPress MU 2.9.2 , BP 1.2.1

    Presumably if this is a timezone issue, as suggested in the ticket, then this is a product of the same problem.

    #68882
    chembro303
    Member

    @etiviti you rock. Thanks for your speedy replies.

    I’ve had your forum extras installed for a couple days and things were fine. I just tried to install a TinyMCE plugin – https://wordpress.org/extend/plugins/bp-tinymce/ – which works great as well.

    Unfortunately with BP-TinyMCE activated the Quote function no longer loads any text in the comment box. It just changes to “quoted” but that’s all that seems to happen.

    Do you know what’s causing the conflict? Is it something you can change or is it a problem with BP-TinyMCE? I *need* a way for my users to format their topics so if it comes down to it I’ll just leave Quote deactivated…but it would be cool to have both. Perhaps if you get it working you can include BP-TinyMCE in forum extras?

    WP 2.9.2 BP 1.2.2.1

    #68879
    1drummergirl
    Participant

    Before I post, I have another thought. I just got a blog comment notice sent to my email and it is now also showing the ascii character, but only in the sender field (Girls Can’t WHAT? shows up properly formatted in the subject line). It used to show the sender as ‘WordPress’. Now I’m not sure if this is a buddypress issue or because I updated WordPress right before I installed buddypress. Any clues?

    Andy Peatling
    Keymaster

    He should also add the FB connect button to the BP sidebar login form using the action “bp_sidebar_login_form”. And also add the buddypress tag to the plugin. If someone wants to let him know that.. :)

    Also, the plugin is phoning home with server details, I think that’s against the repo rules? Check function jfb_auth().

    Edit: Not sure if it does break the rules (http://markjaquith.wordpress.com/2010/02/11/how-to-get-plugin-removed-from-dir/) but I still find it a bit off, even if it is harmless.

    wolly
    Participant

    thanx a lot now I try.

    ciao

    w.

    #68868
    agrundner
    Member

    I should have done a bit more testing before providing feedback. BTW, I am using BP Links with a Single WP install on my development server.

    *** I made an error earlier: avatar images aren’t uploaded in their original size to your wordpress uploads folder. The single link page embeds the original fullsize image from the site one links to (again, not the greatest thing if you’re working with a fixed width template), but the thumbnails shown on my Directory Links page are the fullsize image, just scaled down by width and height pixel values. ***

    @MrMaz I’m glad to hear that BP Links is handling resizing and creating thumbnails to the BP constants. I guess things are being handled differently on a Single WP install at the moment. I’ll continue to test this plugin as things develop. Or I might just migrate to WP MU, though I’ve heard WP 3.0 will have a multi-blog feature that one can enable.

    FYI, I encounted another issue. When I created a second test link the Directory Links page only shows one link now (the newest one). However, both created links appear in my Activity Stream.


    In regards to the filtered RSS link:

    I hope other people request this as well. I plan on adding the Most Popular or Highest Rated feed to the site’s twitter updates via twitterfeed.

    rich! @ etiviti
    Participant

    you can download the group forum extras – but you don’t have a need for all of that. this code snippet will enable wp shortcodes on post content

    add_filter( 'bp_get_the_topic_post_content', 'do_shortcode' );

    #68841
    Andy Peatling
    Keymaster

    I’m working on a new version of this site that will automatically create a group for every new BuddyPress plugin that appears in the repo. This means plugins will get all the functionality of BP groups – a forum, activity stream, a list of members who are interested in the plugin, etc etc. I’m also going to add a donate page, which should help out a bit.

    This has been held up a little right now because I’m trying to get the new upgrade/install wizard done first. This will allow BP to use WordPress pages instead of hacking with root components. It’s all bits of the jigsaw that need to be put in place before I can continue. Hopefully by the end of the month I should have at least the first iteration of the site close to completion.

    #68840
    Boone Gorges
    Keymaster

    The WordPress Codex has detailed instructions on extending the software without modifying core files: https://codex.wordpress.org/Plugin_API. In short: wherever you see do_action or apply_filters in the BP/WP core files, a hook is being created. You can then write custom functions in a plugin file that modifies WP’s behavior without modifying the core code by hooking into those actions or filters.

    Short example: If you want to add a piece of metadata to an activity item, you might try something like this (in a file called bp-custom.php in wp-content/plugins):

    function add_genre_to_activity( $content, $user_id, $activity_id ) {
    if ( strpos( $content, 'rock' ) )
    bp_activity_update_meta( $activity_id, 'genre', 'rock' );
    }
    add_action( 'bp_activity_posted_update', 'add_genre_to_activity', 10, 3 );

    which will add the meta value ‘rock’ (key ‘genre’) whenever an activity item contains the word ‘rock’. Of course, this is probably not how you want to determine the genre, but this shows you how to add the metadata without touching core code.

    #68835
    rich! @ etiviti
    Participant

    One thing I did track down is that forum extras is conflicting with

    https://wordpress.org/extend/plugins/custom-field-template/

    (other than bp probably the most important plugin I use and the best in it’s class) Allows me to easily create my own custom meta boxes on a per post_type basis.

    a quick look at the plugin and reveals the problem i had earlier with wpmu and creating new blogs/admin. Seems some plugins call require_once(ABSPATH . 'wp-admin/includes/template.php'); outside of WP_ADMIN (in ‘init’ action) which will causes a function conflict with bp-internal-bbPress. I’m not sure if I have a solution for this – might be a wait until bbPress is a plugin (so they can resolve the naming conflicts)

    A hacking the core solution would be wrapping the checked and selected functions in /wp-admin/includes/template.php and wp-content\plugins\buddypress\bp-forums\bbpress\bb-admin\includes\functions.bb-admin.php

    if ( !function_exists('checked') ) {

    if ( !function_exists('selected') ) {

    However the buttons do not appear on Group wire or when sending direct messages of one user to another.

    One great improvement for the future could be adding images straight from our computer, instead of using a URL.

    That is expected behavior – this only modifies stuff in the group forums

    as for uploading – that would be more of an album plugin to handle the process and hosting – this is just basic bbcode

    Are you able to edit the signature admin items now?

    #68830
    victor_moura
    Participant

    @etiviti – the new version of the plugin appeared on my dashboard – thanks for this!

    I clicked on the upgrade plugin for the umbrella plugin of te Forum Extras and got this:

    QUOTE

    Downloading update from https://downloads.wordpress.org/plugin/buddypress-group-forum-extras.0.1.5.zip.

    Unpacking the update.

    Installing the latest version.

    Deactivating the plugin.

    Warning: Cannot modify header information – headers already sent by (output started at /home1/fromvict/public_html/comunidade/wp-admin/admin-header.php:18) in /home1/fromvict/public_html/comunidade/wp-includes/pluggable.php on line 868

    Removing the old version of the plugin.

    Plugin upgraded successfully.

    Attempting reactivation of the plugin

    Plugin reactivated successfully.

    UNQUOTE

    Do you think this can cause any problem?

    The buttons are appearing on Forum discussions of Groups -thanks!

    However the buttons do not appear on Group wire or when sending direct messages of one user to another.

    One great improvement for the future could be adding images straight from our computer, instead of using a URL.

    Cheers!

    #68822
    Anointed
    Participant

    I am not sure how to enable display_errors, reporting.

    I am running wpmu 2.9.1.1

    One thing I did track down is that forum extras is conflicting with

    https://wordpress.org/extend/plugins/custom-field-template/

    (other than bp probably the most important plugin I use and the best in it’s class) Allows me to easily create my own custom meta boxes on a per post_type basis.

    Tosh
    Participant

    Ok, I tried the default wordpress theme and move the templates files using the BuddyPress Template Pack.

    Now it’s filtering correctly. Dang, so what do I check in my theme ?

    Boone Gorges
    Keymaster

    Anton, you aren’t by chance using this plugin, are you? https://wordpress.org/extend/plugins/bp-include-non-member-comments/ I have heard from some people that they’re having the problem you described, though I can’t for the life of me reproduce it myself.

    #68791
    thecorkboard
    Participant

    bug report

    environment:

    bp 1.2.1

    wp 3.0a

    plugin 0.1.4

    bp forum extras enabled

    bp forum extras- signatures enabled

    what caused it:

    went to dashboard>buddypress>forum extras>signatures

    error:

    Fatal error: Call to undefined function bb_get_option() in /home/.jona/wp4lib/ltr/dev.wordpressforlibraries.org/wp-content/plugins/buddypress-group-forum-extras/bp-forum-extras-signatures.php on line 32

    #68768
    Kelly L Lockwood
    Participant

    Okay, I am still having this same problem, but now on a new website same server DELL PowerEdge 2950, same envrionment (Windows 2008 Server SP2, IIS 7, PHP v5.3.1, My SQL v5.1.41) I am using BP 1.2.2 svn 2853. I click on the “create group” link, i get a 404 error for 3 to 4 seconds and then it redirects to the proper url without a problem. I’ve created a test user account, it’s testuser with the password test2000 if anyone needs to verify the issue. Here is a copy of my web.config, I just gave the “groups” directory under my theme folder “full control”, so I am not sure what else it could be but something I am missing in my web.config? or any other thoughts?

    <?xml version=”1.0″ encoding=”UTF-8″?>

    <configuration>

    <system.webServer>

    <rewrite>

    <rules><rule name=”Imported Rule 1″ stopProcessing=”true”><match url=”^(.*/)?files/$” ignoreCase=”false” /><action type=”Rewrite” url=”index.php” /></rule><rule name=”Imported Rule 2″ stopProcessing=”true”><match url=”^(.*/)?files/(.*)” ignoreCase=”false” /><conditions logicalGrouping=”MatchAll”><add input=”{URL}” pattern=”.*wp-content/plugins.*” ignoreCase=”false” negate=”true” /></conditions><action type=”Rewrite” url=”wp-content/blogs.php?file={R:2}” appendQueryString=”false” /></rule><rule name=”Imported Rule 3″ stopProcessing=”true”><match url=”^(.+)$” ignoreCase=”false” /><conditions logicalGrouping=”MatchAll”><add input=”{URL}” pattern=”^.*/wp-admin$” ignoreCase=”false” /></conditions><action type=”Redirect” url=”{R:1}/” redirectType=”Permanent” /></rule><rule name=”Imported Rule 4″ stopProcessing=”true”><match url=”.” ignoreCase=”false” /><conditions logicalGrouping=”MatchAny”><add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” /><add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” /></conditions><action type=”None” /></rule><rule name=”Imported Rule 5″ stopProcessing=”true”><match url=”^([_0-9a-zA-Z-]+/)?(wp-.*)” ignoreCase=”false” /><action type=”Rewrite” url=”{R:2}” /></rule><rule name=”Imported Rule 6″ stopProcessing=”true”><match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” /><action type=”Rewrite” url=”{R:2}” /></rule><rule name=”Imported Rule 7″ stopProcessing=”true”><match url=”.” ignoreCase=”false” /><action type=”Rewrite” url=”index.php” /></rule><rule name=”wordpress – strip index.php” stopProcessing=”false”>

    <match url=”^index.php/(.*)$” />

    <action type=”Rewrite” url=”{R:1}” />

    </rule>

    <rule name=”wordpress – 1″ stopProcessing=”true”>

    <match url=”^(.*/)?files/$” />

    <action type=”Rewrite” url=”index.php” />

    </rule>

    <rule name=”wordpress – 2″ stopProcessing=”true”>

    <match url=”^(.*/)?files/(.*)” />

    <conditions>

    <add input=”{REQUEST_URI}” negate=”true” pattern=”.*wp-content/plugins.*” />

    </conditions>

    <action type=”Rewrite” url=”wp-content/blogs.php?file={R:2}” appendQueryString=”false” />

    </rule>

    <rule name=”wordpress – 3″ stopProcessing=”true”>

    <match url=”^(.+)$” />

    <conditions>

    <add input=”{REQUEST_URI}” pattern=”^.*/wp-admin$” />

    </conditions>

    <action type=”Redirect” url=”{R:1}/” redirectType=”Permanent” />

    </rule>

    <rule name=”wordpress – 4″ stopProcessing=”true”>

    <match url=”.” />

    <conditions logicalGrouping=”MatchAny”>

    <add input=”{REQUEST_FILENAME}” matchType=”IsFile” pattern=”” />

    <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” pattern=”” />

    </conditions>

    <action type=”None” />

    </rule>

    <rule name=”wordpress – 5″ stopProcessing=”true”>

    <match url=”^([_0-9a-zA-Z-]+/)?(wp-.*)” />

    <action type=”Rewrite” url=”{R:2}” />

    </rule>

    <rule name=”wordpress – 6″ stopProcessing=”true”>

    <match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” />

    <action type=”Rewrite” url=”{R:2}” />

    </rule>

    <rule name=”wordpress – 7″ stopProcessing=”true”>

    <match url=”.” />

    <action type=”Rewrite” url=”index.php” />

    </rule></rules>

    </rewrite>

    </system.webServer>

    <system.web>

    <authentication mode=”Forms” />

    </system.web>

    </configuration>

    Kunal17
    Participant

    vinbytes, you will have to rename the folder through ftp. It cannot be done from the wordpress install itself. You can also check if you host has web based folder access.

    vinbytes
    Participant

    May I know how to do that?

    I can’t use the log in page : http://gpsnavigation.wizard4u.com/wp-admin/

    because it says ERROR too. Please try to click that link.

    I am using wordpress platform also.

    Thanks

    #68720
    kiwipearls
    Participant

    Sorry about that, thought by saying I updated to the latest it was obvious. Updated to the latest buddypress 1.2.21 and WordPress MU 2.9.2. Everything is in the same place as before the update. Buddypress is in the MU plugins directory. wp-content/plugins.

    I use no plugins that re-direct. Only plugin not working is wp-o-matic.

    r-a-y
    Keymaster

    You write too much ;)

    Still not sure quite what you want to do.

    First of all, you need to install BuddyPress. On first glance at your site, it doesn’t look like you’ve installed it at all.

    Second of all, since you’re using a different theme, once you’ve installed BP, you’ll need to use the BP Template Pack plugin so your theme can support BP:

    https://wordpress.org/extend/plugins/bp-template-pack/

    Once you’ve done these steps, then we can proceed.

    #68700
    murrayac
    Participant
    #68698
    sabater_wb
    Member

    As I know, BuddyPress allows to the users create their blog’s when installed with wordpress mu. What I need is what I wrote before. If is there someone interested in this work, tell me.

    #68682
    Robert
    Member

    In WPMU the solution is to deactivate WP-O-Matic from the main blog and create a blog only for the feeds. After creating the new blog go to its back-end > plugins > activate WP-O-Matic and that’s it. The feed posts will appear on the site-wide activity. The conflict seems to exist only in the main blog.

    I’m using a WordPress single instalation and the only problem is that in some cases the “Warning: Cannot modify header information – headers already sent by … and so on” keeps showing but WP-O-Matic is running perfectly. The warnings only show in Buddypress pages, not in the blog.

    I’m looking now for a way to hide those warnings. If someone knows how to make warnings not show I really would be very grateful.

    #68677
    r-a-y
    Keymaster

    @hachimaki

    Instead of modifying all the BP templates, you could try the Registered Users Only 2 plugin:

    https://wordpress.org/extend/plugins/registered-users-only-2/

    I’ve made a few mods to that plugin to better support BP here:

    https://buddypress.org/forums/topic/bp12-plugin-wishlists#post-42114

    @nipponmonkey

    Use what I suggested above.

    Then turn off registration and manually create users. Assign these users a role of contributor or higher.

Viewing 25 results - 19,176 through 19,200 (of 22,650 total)
Skip to toolbar