Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 20,251 through 20,275 (of 26,846 total)
  • Author
    Search Results
  • #76764
    LargeCell
    Member

    It is compatible with WordPress 2.8.4? Thanks.

    #78324
    gerikg
    Member

    Okay I found a few things. I don’t know if it matters but I just try to mimic what I had. I’m not an expert.

    I don’t know if this was a factor: You didn’t have enough keys (Salts weren’t used)

    You got your keys from here: https://api.wordpress.org/secret-key/1.1/

    I got my keys from here: https://api.wordpress.org/secret-key/1.1/salt

    I added the new keys to both files.

    You had the COOKIEPATH in wp-config but not in bb-config (again I don’t know if it matters but I do it anyway) I copied it onto bb-config. I also moved that line to the top before anything else, just in case.

    And that was that.

    I notice you had the wrong URL to the forums (/bb-press/ instead of /bbpress/) but that was to get the cookie path and it didn’t matter either way.

    #78267

    Using IE on it doesn’t work at all for me. How weird… http://www.oraclepronet.com/techzone/index.php loads fine though on first try, so it might be something to do with how the server is handling the directory index rather than bbPress. Your version of WordPress has security holes by the way, you might want to upgrade.

    #31646
    Tomcraft1980
    Member

    Hi there,

    is there a way to build canonical URLs like WordPress does? WordPress automatically redirects http://domain.tld to http://www.domain.tld and I would like bbPress to do so too.

    This is needed to prevent duplicate content on your site.

    kind regards

    Tom

    #78653
    Olaf Lederer
    Participant

    bbpress registrations via facebook connect is not so strange, but there is no plugin at the moment, check facebook connect plugin from wordpress, maybe you can change it that it works.

    btw. that would be a great feature.

    #72864

    In reply to: Hide Links

    I think should do it, it’s based off code here: https://bbpress.org/forums/topic/open-links-in-new-window

    Change the values of $forums to the forum IDs of those you wish to restrict (it’ll only work on direct parent forums, not grandparents or categories, I don’t want to include walker code unless people need it).

    Tested on 1.0.2 trunk, so I’m not 100% sure it’ll run on 0.9, sorry.

    <?php
    /*
    Plugin Name: Remove Links (conditional)
    Description: Removes links for non-registered users. Based on <a href="http://ckon.wordpress.com/2007/07/12/bbpress-plugin-bb-tweaks/">bb tweaks</a>.
    Plugin URI: https://bbpress.org/forums/topic/hide-links
    Version: 0.01
    */

    function bb_strip_links( $text ) {
    global $topic;

    $forums = array(
    1,
    2,
    3,
    );

    if ( !in_array( $topic->forum_id, $forums ) )
    return $text;

    if ( !bb_current_user_can( 'write_post' ) )
    $text = preg_replace('|<a (.+?)>(.+?)</a>|i', 'Login or register to download', $text);

    return $text;

    }

    add_filter('post_text', 'bb_strip_links');

    ?>

    @Hanratty: hiding links using CSS visibility will still leave the link URLs in the code, which isn’t too desirable for some

    #78614
    gerikg
    Member

    This is how I’m doing it. Please, this is not the official how to on this.

    PART 1

    COPY Kakemi theme into my-template. Open Style.css and change this line, Theme Name: Kakumei

    I changed it to Theme Name: Kakumei (Edited Theme)

    Activate it, you’ll see Kakumei’s screen shot but Kakumei (Edited Theme) as it’s name.

    Then open style.css of the Edited Theme and open the CSS of the WordPress theme. Their might be multiple css so look out. I make a line in the style.css at the bottom.

    /*********************** WPTHEME *******************

    Then start with Header.php and footer.php start copying over the codes from WP theme to BBpress theme. Slowly start looking at the classes it that the header uses and start bringing in the codes from the WP to BBpress CSS. BEWARE some of them uses the same class! so rename the WP one not the BBpress one!!! You will have to replace all the div tags and such. The only one I recommend to keep in the header is the <div id="main"> at the end. The same with the footer. but remember to put an extra </div> on the top to cover the <div id="main"> in the header. Start with that. If you can get the hang of it then you’ll be able to continue.

    #78288
    gerikg
    Member

    What happened so far…

    Okay I looked through the file. Yangers101 was on the right track. There were some extra lines in the wp-config:

    $bb->cookiepath = '';
    $bb->sitecookiepath = '';

    I took those out.

    The problem: “www.” The WPMU was configured to be on website.com/blogs (without the www.)

    so all the settings needed to be without the “www.” or with. One or the other on both WPMU & BBpress.

    Since his host forced the www. We had to put all the www. in the configuration. BBpress didn’t like the www. in the dashboard so he logged into his DB and manually changed it.

    #70365
    sicdigital
    Member

    I have buddypress install with bbforum integration working as far as it shares users etc and if you login you are logged in to both sites.

    However, I can’t log out of the other if i logged in with

    For example if i log in using WordPress and go to my forums I am logged in but can not log out from that location, i have to go back to wordpress to logout.

    The same if I login through forum I can go to wordpress and I am logged in but I can not log out, I have to go back to forum to logout.

    Clicking logout button does nothing in either scenerio.

    #78287
    yangers101
    Member

    Thanks gerikg! I just emailed you.

    #31633

    http://wordpress.org/extend/themes/pyrmont-v2

    I don’t even want to post what I have so far. Are there any suggestions or walk throughs on how to port themes? I searched but didn’t find much.

    thanks

    #78204
    gj-tje
    Member

    Okay, I’ve fixed it and it’s working at the moment! :)

    I forgot the settings in wp-admin/options.php for WordPress itself.

    #78323
    hopeful4info
    Member

    Would the fact that I have bbPress working in a iframe in one of the wordpress pages be causing any problems?

    #78322
    hopeful4info
    Member

    I have both wordpress and the bbpress (FOLDER) in the members directory. So where it asks for Blog address (URL) should it be https://my_site/members/ or should it be https://my_site/members/bbpress/

    I’ve tried both ways and neither works. Just a scattered thought.

    #78321
    hopeful4info
    Member

    Hmmm, again. I did open up, side by side, the WordPress config file and the bbpress config file and made absolutely sure that AUTH_KEY=BB_AUTH_KEY and that SECURE_AUTH_KEY=BB_SECURE_AUTH_KEY and that LOGGED_IN_KEY=BB_LOGGED_IN_KEY. So, this may not be what we are looking for.

    I’m wondering about the “User Role Map” settings: (Below is how I set them)

    WordPress Administrator = bbPress Administrator

    WordPress Editor = bbPress Member

    WordPress Author = bbPress Member

    WordPress Contributor = bbPress Member

    WordPress Subscriber = bbPress Member

    #78320
    gerikg
    Member

    look through your BB-press dashboard –> Settings—>wordpress intergration

    #78319
    hopeful4info
    Member

    Hmmm, that’s interesting. I ftp’d the options-wordpress.php file down from the site and opened it in Dreamweaver. I recognize some of the comments in this as being from the “wordpress Integration settings as found in the Settings/Wordpress Integration tab of the Admin section of bbpress. This is where I set the “User Role Map”, WordPress Address (URL), Blog Address (URL), auth cookie salt, secure auth cookie salt, and logged in cookie salt.

    HOWEVER, when I look into the actual options-wordpress.php file (as ftp’d down from the site) and open it up, the php code still seems to be asking for those items??? I just copied a bit of the code from that file and pasted it below. Please advise,

    <table>

    <tr>

    <th><?php _e(‘WordPress’); ?></th>

    <td></td>

    <th><?php _e(‘bbPress’); ?></th>

    </tr>

    <tr>

    <td>AUTH_KEY</td>

    <td><=></td>

    <td>BB_AUTH_KEY</td>

    </tr>

    <tr>

    <td>SECURE_AUTH_KEY</td>

    <td><=></td>

    <td>BB_SECURE_AUTH_KEY</td>

    </tr>

    <tr>

    <td>LOGGED_IN_KEY</td>

    <td><=></td>

    <td>BB_LOGGED_IN_KEY</td>

    </tr>

    </table>

    #78203
    gerikg
    Member

    And make sure you filled in in the BB Admin side the information under

    DASHBOARD->SETTINGS->Wordpress Integration

    #78201
    gj-tje
    Member

    Hi there!

    Thanks for your response. Does this also affect WordPress (no MU version)?

    Sorry I was a bit unclear about the exact version.

    I can try the define(‘sitecookiepath’, ‘/’); , I haven’t tried that.

    =====

    I’ve tried the above define( ‘SITECOOKIEPATH’, ‘/’ ); but it didn’t work as well.

    Any further ideas what I can try?

    =====

    Does anyone have a plain and simple manual how to integrate WP (no MU!) with bbPress? The manual on the site seems to fail me over and over again.

    #78318
    gerikg
    Member

    this is all filled out correctly? /bb-admin/options-wordpress.php

    #78317
    gerikg
    Member

    as is, as the plugin appears.

    #78316
    hopeful4info
    Member

    Yes, I did that and put in the line as they request on that plug-in. Still doesn’t work. But this is where I was wondering about the line: define( ‘COOKIEPATH’, ‘/members/’ );

    Do I Put this in exactly as it is or do I need to change ‘COOKIEPATH’ to an actual path.

    If the line is correct as is, what else could be wrong?

    #78541

    There’s not necessarily a ‘correct’ way to map users across, it just depends what you want your WordPress users to be capable of in bbPress.

    The bbPress Key Master is the equivalent of a WordPress Admin: it gives full control over all options for bbPress.

    bbPress Admins can edit forums and users, but not access options.

    bbPress Moderators can see the user list and edit topics, but not mess with forums or users.

    Members can post and edit their own posts.

    Inactive users can view topics, but not post… and blocked users can’t do anything at all.

    #78218
    eclipsenow
    Member

    because every second post I read here seems to be trouble with integration not working out, and an enormous headache.

    I just want it all to be easy. I want bbsync to work again, but like so many 3rd party things, it died. That’s why I’m having trouble committing to any CMS, one does XYZ but not ABC, requiring a plug in (that could die), the other does ABC but not XYZ which is again a 3rd party plug-in, which again could die.

    I really want one software, a community portal. It has to have a nice home page, a nice blog, and a nice forum community side to it.

    I want all the features of each to be CORE (no vital 3rd party functions dying) and already installed, “out of the box”. (EG: BBpress being “fully loaded” like SMF and phpbb3. Just click boxes for the functions you want to work!)

    I want a “bbsync” styled function to be core. EG: Each blog article submitted by our expert authors would be automatically copied across to a forum and auto-linked to the forum.

    EG: At the bottom it would say “If you enjoyed this article, please click HERE to leave a comment”.

    As far as I know, the Kunena forum team for Joomla might be developing something like this for the Joomla core blog, but the core blog is VERY minimalist and doesn’t even seem to have an archive function! So my preference would be if WordPress made BBpress a “fully loaded plugin” (automatically integrated) with bbsync as a core option as well.

    But if Kunena are bringing their own version of ‘Joomlablog sync’ to life with K1.6, then maybe I’ll just have to convert CMS’s.

    #78217

    You could use bbPages (https://bbpress.org/plugins/topic/bbpages/) for pages. You’ll probably need to edit some code yourself though if existing plugins don’t do what you want and possibly write some of your own as well. WordPress is really more geared towards this sort of thing with regards to WYSIWIG and image management, to even allow images on bbPress you need to install a plugin and BBcode is probably the closest to WYSIWYG.

    I’m sure with a lot of coding, you could get bbPress to behave like a portal, but why not just use WordPress and integrated bbPress?

Viewing 25 results - 20,251 through 20,275 (of 26,846 total)
Skip to toolbar