Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 25,876 through 25,900 (of 26,836 total)
  • Author
    Search Results
  • #56857

    In reply to: login form wordpress

    fel64
    Member

    To change where the user is redirected, add a hidden field to the login form called redirect_to, with a value of where-ever you want the user to end up (default is in the dashboard).

    #1725
    #1720
    binialas
    Member

    Hi, i’ve downloaded bbPress because i’m a lover of WordPress amb because i like bbPress very much. But now i’im in a big trouble.

    I want to integrate bbPress in an standard XHTML website with any line of WordPress code, and so i need to know how i can integrate it from the beggining of the process.

    Now i’ve just installed bbPress in a url rute like /mydomain.com/bbpress but i need to be shown in a basic xthml document, like mydomain.com/phorum.php

    How can i do this?

    I think it’s possible, but can you help me?

    Regards guys from Mediterranean sea. ;)

    I’m waiting a good response form you as soon as you can, thanks guys. ;)

    #56840
    c00l2sv
    Member

    Read this!

    #56633

    In reply to: bbpress future

    c00l2sv
    Member

    Of, thank you guys for reply…


    @Trent

    I’m sorry, maybe I did not explained myself clearly:

    I appreciate the thing that developers like the accessibility given by ajax, and are using this in their application, but the point was to leave the core functions that are for displaying content (like wp_list_pages(); for example in wordpress) outside of ajax.

    You’re right wordpress uses ajax in the core but the templating part and the content is not affected at all (only the admin CP). This way we have ajax but only where it is really necessary.

    Sorry for bugging, I do understand that my problem is not the #1 priority of the project team but I was thinking maybe there is any solution, thats why I reported that. Sorry …


    @Null

    Maybe the problem was in the marketing. bbPress was from the start advertised as perfectly compatible and easy to be integrated with WordPress. That is a great advantage, because WordPress is already one of the most usable publishing platform on the web, and people like everything that comes with it – as a result they took bbPress as an another plugin for giant. =]

    #56835
    fel64
    Member

    And everytime a visitor writes a comment in that wordpress posts, it will appear as a post in that bbpress forum? (and vice versa)

    Unfortunately that bb Post plugin only toasts your bagels but doesn’t put anything on them. It’ll send WP blogposts as new topics on your forum, but comments/replies aren’t integrated. Someday.

    #56659
    thierryyyyyyy
    Participant

    on 2diabolos.com, everything is working fine. And actually, my wordpress plugin allow me to make what you propose (cookie_domaine = ‘.2diabolos.com’ and cookie_path = “/” for wordpress and bbPress)

    But on “localhost” (my computer), cookie_domain = “false” and cookie_path = “/” works fine for the front-page, but not for topic pages … that’s not normal (to my opinion). But perhaps someone have an explanation ….

    #55484

    Thanks. I will try this and let you guys know how it turns out.

    #56832
    Nola1974
    Participant

    Crazy little thing, that google. First result.

    http://dev.mbzeus.net/?page_id=6

    #55483
    fel64
    Member

    Not sure what the DXX theme is, but if it’s the one you’re using on your site yeah it’s ultra-easy.

    First of all, don’t try to force bb into the WP theme … that rarely works. Your best bet is to open (or make if it doesn’t exist) your my-templates folder and start a new theme by making a new folder (call it dxx or something). Go back up into your main bb folder, open bb-templates > kakumei and copy style.css, then paste it into your new my-templates > dxx folder.

    Using CSS you can then modify how your page looks (not what’s on it though). The basic way to do css is like this:

    html element {
    property: something;
    }

    For example, the code to colour links red with NO underline is like this:

    a {
    color: red;
    text-decoration: none;
    }

    To change the way your forum looks, you therefore open the copy of style.css you made and change properties like that. There’s much more info at http://www.w3schools.com/css/. That is all you need to know.

    So for example, what you would do for your theme is make links blue and no underline, make the header green, change the background of the page and put a border on the main div element. Some knowledge of HTML will be helpful but you can also pick this up.

    #1715
    pschwar
    Member

    Is it possible with a plugin (or existing functionality?) to create a bbpress forum topic everytime a new wordpress posts is made? And everytime a visitor writes a comment in that wordpress posts, it will appear as a post in that bbpress forum? (and vice versa)

    Cheers all!

    #55119
    Trent Adams
    Member

    Just through plugins I think. I know mdawaffe is using more wordpress functions in bbPress and maybe there might be more things that would be considered tighter integration. The bbPress-Post plugin already has the comments of WP controlled by bbPress, so that is why I speculate that it will be done through plugins.

    Trent

    #56157
    albert4000
    Member

    This one too:

    http://www.informedbanking.com/resources/forums/

    Its not nearly as big as Technorati but I’ve been tweaking it slowly but surely, integrating it in with a custom CMS / Wiki, WordPress, and now bbpress.

    Thanks for the awesome software. I sent in a patch of themes.php last night – it needs a urldecode() in the current subversion revision.

    #1713
    Nola1974
    Participant

    If anyone is using ‘ Avatar pluginsuleiman, here’s a hack I use to show the WPMU’s avatar in BBPress:

    In post.php, after the <small><?php post_author_title(); ?></small> bit I use the following:

    <?php
    $userid = get_post_author_id();
    $wp_avatar = '/full/path/to/public_html/wp-content/avatars/' .$userid. '.jpg';
    $wp_avatarURL = '/wp-content/avatars/' .$userid. '.jpg';

    if (file_exists($wp_avatar)) {
    echo '<img class="avatar" src="'. $wp_avatarURL.'" />';
    }
    ?>

    Probably not the most elegant, but it works:

    http://blognola.org/forums

    Vincent

    #55482

    Well I think I may pass at doing that one myself. I am working on a much simpler site and am using the DXX theme (my site is http://www.maconcardeals.com ). How would I make this theme work for bbPress? Is it easy? I mean for an ultra rookie?

    #56592
    archasek
    Member

    in wordpress ofcourse yes. in bbpress there is not polish lang file (as i know).

    yes i have plugin and js in my-plugins folder. tomorrow i’ll check it in my default.

    in my wordpress, in adminpanel i also don’t have quicktags panel in visual mode in my adding post site. may it has something in common with bbpress plugin?

    #55117
    Trent Adams
    Member

    If you have a local computer with windows or a Mac, you can always have the install of WAMP or an install that is similar. Do a search for apache, php and mySQL local windows install in google and you will find that there are many packages out there that can run them on your local computer instead of IIS. Packages like WAMP have all the packages together and a walkthrough on getting them all installed.

    As for bbPress and WordPress installation together, I am involved with WP as well and can for sure tell you that they will never be packaged together for a single install unless someone makes their own release of the 2 packages together, but will not happen from Automattic because they are run completely seperate.

    Does that help?

    Trent

    #56658
    fel64
    Member

    There’s an easier way to do this, just put in the right domain.

    //cookies
    define('COOKIE_DOMAIN', '.2diabolos.com');

    Or

    //cookies
    define('COOKIE_DOMAIN', 'forum.2diabolos.com');

    If you go with the first, in my opinion neater version, you also need to add this to bbPress’ config.php.

    //try to sync cookies
    $bb->cookiedomain = '.2diabolos.com';
    $bb->cookiepath = '/';

    Then clear your cookies, log out and in and see if it works across your site.

    #1705
    thierryyyyyyy
    Participant

    I made a plugin that allows you to change wordpress cookie path&domain (and even cookieHash) to suit the need of bbPress.

    My configuration was not “simple” :

    wordPress : http://www.2diabolos.com/blog

    bbPress : forum.2diabolos.com

    everything is explained here.

    http://www.2diabolos.com/blog/2007/04/06/nouveau-plugin-setcookieparams/

    BUT I have a problem :

    on my local server (for tests), I tried my plugin.

    it works … for bbPress front-page and admin page, but not for topics and other “deeper” pages.

    I put “cookie domain == false” (because cookie must not have domain when you are a “local server”, that what I understood from the standard)

    I don’t understand why the frontpage appears nicely, and why, when I try to go into a topic, Firefox tells me that the server redirects the request in way that can’t go nowhere. And IE does not achieve anything (I prefer Firefox, it better for debugging…)

    Firefox tells it can be a problem with cookie acceptance or desactivation.

    I feel that bbPress is making a round (infinite) redirection ….

    #1535
    mjtaryan
    Member

    Moodle, the open source Course Management System (http://www.moodle.org) has put together a package that contains all components needed for a Windows localhost installation (including Apache, MySQL and PHP). The only problem is that it is semi-manual. It would be nice if they would develop an installer that uses, for example, InstallShield, and makes the process automatic. I believe it would be very welcome and helpful for most users if WordPress would do the same for WP and bb and include both packages in the installer with checkboxes to select to install one or the other or both (under a Custom Install option).

    BTW will anyone at WordPress see this?

    #55116
    mjtaryan
    Member

    Trent,

    In response to the original post by Chenchen you said there are packages out there that meet the minimum requirements. Three questions:

    1. Where (please provide source and name)?

    2. Do they contain apache, php and mysql?

    3. Do they have a mechanism for installing all three components?

    Plus a comment that applies to both WP and bb. Moodle, the open source Course Management System (http://www.moodle.org) has put together a package that contains all components needed for a Windows localhost installation. The only problem is that it is semi-manual. It would be nice if they would develop an installer that uses, for example, InstallShield, and makes the process automatic. It would be very welcome and helpful if WordPress would do the same for WP and bb and include both packages in the installer with checkboxes to select to install one or the other or both (under a Custom Install option).

    BTW will anyone at WordPress see this?

    #1701
    Maido
    Member

    I just recently installed bbpress integrating it into my wordpress website, and I noticed that, being the key master, I never appear as Last poster in a topic I just added a message too, nor my posts are counted in the totals of the main forums summary page.

    Is this intended? And if so, any way to change this behaviour?

    Thanks all :>

    #1702

    Topic: WP-Ads

    in forum Plugins
    wittmania
    Member

    I use a plugin on my WP site called WP-Ads, which allows me to rotate custom built ads in various places throughout my site. It is very easy to use, but also very robust in what it allows you to do.

    Does anyone know of anything similar for bbp? I know how to ad Adsense or something similar, but I need to serve up my own custom built ads for people/companies who have sponsored the site.

    Any ideas?

    #1697
    archasek
    Member

    where can i change this forms? how can i add panels, like on the wordpress.org forums (Allowed markup: a blockquote br etc, but in buttons)?

    #1694
    startribe
    Member

    Hey Community,

    I am starting up another site, and I am setting up the Latest Discussions Plugin. I have installed and integrated WP & BB. Once I activate the plugin and use the call for the latest discussion on the wordpress page I am given this error:

    WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1]
    SELECT * FROM topics WHERE topic_status = 0 ORDER BY topic_time DESC LIMIT

    Any ideas what might be going on here?

    Thanks,

    Orion

Viewing 25 results - 25,876 through 25,900 (of 26,836 total)
Skip to toolbar