Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 18,451 through 18,475 (of 26,846 total)
  • Author
    Search Results
  • #88221
    chrishajer
    Participant

    If this is a problem with the forum at wordpress.org you would get more response reporting the error there, since the version of bbPress they use there is not a default installation by any means.

    https://wordpress.org/report-bugs/

    #88248
    pagal
    Participant

    I’ve tried to load bbpress into wp config via

    if ( !defined(‘BBDB_NAME’) )

    require_once(ABSPATH.’bbpress/bb-load.php’);

    then I call <?php login_form(); ?> into wp template where i want to show it…

    it works fine.. but there is a problem…

    when i open my wp-admin … all colors and buttons has gone..just wp structure still there..

    look at this screenshot

    http://img687.imageshack.us/img687/7772/wpadmin.jpg

    when I remove this code

    if ( !defined(‘BBDB_NAME’) )

    require_once(ABSPATH.’bbpress/bb-load.php’);

    then admin works fine… but i need this code to show bbpress login/registration into wp..

    please guide me where I am wrong…

    Thanks

    #84346
    Ryan Hellyer
    Participant

    Yes, but the following is quite literal:

    This page is a work in progress. Please come back later for updated information.

    I haven’t updated it for the new version yet since it’s still in beta. Those instructions won’t work at all with the current version.

    I’ll add a note about that to save confusing people.

    #34240
    #84345
    gerikg
    Member

    Great plugin, now I have to rethink my site about deep integration…(wpbbpthemes.org)

    BTW you have two instructions:

    1. http://pixopoint.com/help/theme-integrator/ from http://pixopoint.com/theme-integrator-alpha-launch/

    2. http://pixopoint.com/products/pixopoint-theme-integrator/

    andykillen
    Member

    People cannot use IE to place ratings on plugins on the wordpress site.

    For example rating the “share and follow” pluing with IE give this error page….

    http://wordpress.org/extend/plugins/share-and-follow/?rate=5&topic_id=13964&_wpnonce=0de7c56cd6

    on screen error

    “Your attempt to do this has failed.

    Please try again.

    Back to WordPress Plugins.”

    This has only been tested and not working with IE8. It will most likely exibit the same problems on every version of IE.

    #84344
    Ryan Hellyer
    Participant

    Thanks for testing it. I’ll hopefully get back to this in a few weeks.

    Strange I didn’t notice that bug with .html being missing. I guess it was so obvious to me I just glanced over it.

    #88205
    chrishajer
    Participant

    What version of bbPress are you using?

    Is it integrated with WordPress?

    AND

    Are you using a customized theme? If so, try the included default kakumei theme and see if the functionality works.

    #34231
    kikko088
    Member

    Hi at all, there is a way for integrate bbpress and wordpress avatar?I want to use only the bbpress avatar upload for upload the avatar but i want to post on my wordpress blog the bbpress avatar.

    kikko088

    #84343
    gerikg
    Member

    http://img41.imageshack.us/img41/2885/screenshotpp.jpg

    Works good without deep integration, thank you.

    #84342
    gerikg
    Member

    I added a specific page number and nothing.

    Then I visited the specific page then it started generating the code to the uploads folder.

    In the admin section and your screen-shot (http://pixopoint.com/uploads/theme_integrator_adminpage1-480×668.png) notice it doesn’t have “.html” after.

    <?php require( '/homepages/0/xxx/htdocs/xxx/wordpress/wp-content/uploads/pixopoint-theme-integrator/chunk1' ); ?>I added html and it’s working so far.

    I’m still going…

    #84341
    gerikg
    Member

    http://pixopoint.com/forum/index.php?topic=1605.0

    I’m having the same problem. I have nothing set other than the default settings. Nothing is being written to the uploads folder.

    Also: “Chunks of text to remove” boxes numbers keep increasing, it started with 3 boxes now it’s 11 boxes with nothing in them.

    I’m using Version 1.0.2 beta

    ZeroDegrees
    Member

    I need some help with getting bbpress on my wordpress blog. I am totally confused and have not a clue on where to go for help. Can someone give me simplified directions on what to do?

    #88009

    In reply to: Linking to WordPress

    xarzu
    Participant

    I went the PHP route.

    At the top of register.php I put this code:

    <?php

    header( ‘Location: http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php?action=register&#8217; ) ;

    and it works.

    #88008

    In reply to: Linking to WordPress

    xarzu
    Participant

    While I try several combinations of this I thought I would throw this out for consideration.

    PHP is not like HTML. PHP generates HTML or browser code on the server and spits it out onto the browser on the client side. I am just thinking now that maybe you cannot use this method of redirection because the functionality is overwritten. I am just asking. Has anyone tried this redirection method with PHP before?

    As I type this, I am deleting the browser histrory/memory to see if that helps because so far this method does not redirect anything.

    #58365
    kikko088
    Member

    there is a way for add in this function the form of login?instead use a link to wp-login.php have a form where put user and pass?

    So we can have on wordpress sidebar the Form for login, the link for register when user isn’t logged and whe can have a link to admin dashboard or a link to the profile page when the user is logged

    thank you

    kikko088

    #88120
    wizardregis
    Member

    I did set up the role map in bbPress WordPress integration during installation.

    #88007

    In reply to: Linking to WordPress

    zaerl
    Participant

    Try:

    RewriteRule ^.*/bb-login.php$ http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php [R=301,L]

    or:

    Redirect 301 /bb-login.php http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php

    #88174

    In reply to: Modlook tag

    _ck_
    Participant

    Yes, I wrote the “Skip Akismet” plugin last year to do that.

    https://bbpress.org/plugins/topic/skip-akismet/

    It’s cross compatible with bbPress and WordPress, however they refused to accept it into the WordPress plugin repository and told me to submit it to the core (which I didn’t bother if they are going to be like that).

    Later I discovered the akismet plugin itself already has a “trusted user” filter via bb_is_trusted so my method is overly complicated, but my plugin could in theory be modified to trust users who have X number of posts or pass a certain minimum membership age.

    This method however would be much cleaner:

    add_filter( 'bb_is_trusted_user','more_trusted',10,2);
    function more_trusted($trusted,$user_id) {
    // bb_get_user here and determine if trusted, possibly cache result
    return $trusted; // boolean true/false
    }

    Feel free to develop that, let me know if you need help.

    #88006

    In reply to: Linking to WordPress

    xarzu
    Participant

    oh.

    That is pretty clever. I like that. I think I will use this technique. Now I just need to refresh my memory on how to code .htaccess

    I have created the file, .htaccess and I included the lines

    And I gave it a shot, but it did not work. Is there something I need to do such as make the file a certain type or read/write privledge?

    #84340
    Ryan Hellyer
    Participant

    Yes it’s good for testing, that’s why it is released as a beta.

    It seems to be working fine on the one site I installed it on, but I guess I mucked up something in the instructions so I’ll need to sort that out – probably in a few weeks time.

    #84339

    If you want I’ll allow you to test it on my site :D

    1. I can’t do it myself.

    2. Its good for testing, correct?

    #87731
    mediabros
    Member

    It is great indeed, the only section i miss is the THEME section.

    Just like wordpress.org

    extend

    – plugins

    – themes

    I think this will also result in more themes.

    Everything else is just great, love to see bbpress is getting more mature, in a few years bbpress will be the most used forumboard.

    Keep it up!

    #34216
    madlan
    Member

    I’m trying to install bbpress on my site.

    I have wordpress installed at the root, have uploaded the bbpress folder and started the config.

    Once I’m at the last step I get a page of white text on a white background with the attached errors (Theres several pages of the fwrite() errors)

    At the bottom of the page it states the installation completed and the log shows no errors.

    This is a virtual host, IIS6

    Warning: fopen(C:InetpubvhostsXXXXXhttpdocsbbpress/bb-config.php) [function.fopen]: failed to open stream: Permission denied in C:InetpubvhostsXXXXXhttpdocsbbpressbb-adminincludesclass.bb-install.php on line 1044

    Warning: fwrite(): supplied argument is not a valid stream resource in C:InetpubvhostsXXXXXhttpdocsbbpressbb-adminincludesclass.bb-install.php on line 1051

    Warning: fwrite(): supplied argument is not a valid stream resource in C:InetpubvhostsXXXXXhttpdocsbbpressbb-adminincludesclass.bb-install.php on line 1051

    Warning: fwrite(): supplied argument is not a valid stream resource in C:InetpubvhostsXXXXXhttpdocsbbpressbb-adminincludesclass.bb-install.php on line 1051

    Warning: fwrite(): supplied argument is not a valid stream resource in C:InetpubvhostsXXXXXhttpdocsbbpressbb-adminincludesclass.bb-install.php on line 1051

    #88032
    kikko088
    Member

    Hi, yes is the same problem happan on endurodoc, now I put all on a web site test,

    http://www.scrocco.netsons.org/wordpress/

    http://www.scrocco.netsons.org/wordpress/forum/

    0 plugin,

    [07-May-2010 17:06:04] PHP Fatal error: Cannot redeclare wp_clone() (previously declared in /home/scroccon/public_html/wordpress/forum/bb-includes/backpress/functions.core.php:1043) in /home/scroccon/public_html/wordpress/wp-settings.php on line 308

    kikko088

Viewing 25 results - 18,451 through 18,475 (of 26,846 total)
Skip to toolbar