Search Results for '\"wordpress\'
-
AuthorSearch Results
-
September 5, 2009 at 4:46 pm #76764
In reply to: bbPress 1.0.2 and bbPress 0.9.0.6 released
LargeCell
MemberIt is compatible with WordPress 2.8.4? Thanks.
September 5, 2009 at 4:18 pm #78324gerikg
MemberOkay 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.
September 5, 2009 at 3:30 pm #78267In reply to: Weird IE problem with bbpress
Adam Harley (Kawauso)
MemberUsing 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.
September 5, 2009 at 2:56 pm #31646Topic: canonical URLs for bbPress 1.02?
in forum TroubleshootingTomcraft1980
MemberHi 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
September 5, 2009 at 12:53 pm #78653In reply to: Connecting Facebook group to BBPress ?
Olaf Lederer
Participantbbpress 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.
September 5, 2009 at 12:22 am #72864In reply to: Hide Links
Adam Harley (Kawauso)
MemberI 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
September 4, 2009 at 5:27 pm #78614In reply to: Failing miserably at porting theme
gerikg
MemberThis 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.September 4, 2009 at 3:59 am #78288In reply to: Help Integrate WordPressMU, Buddypress, and bbpress
gerikg
MemberWhat 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.
September 4, 2009 at 1:54 am #70365In reply to: Basic integration screencast
sicdigital
MemberI 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.
September 4, 2009 at 1:19 am #78287In reply to: Help Integrate WordPressMU, Buddypress, and bbpress
yangers101
MemberThanks gerikg! I just emailed you.
September 3, 2009 at 11:12 pm #31633Topic: Failing miserably at porting theme
in forum Themesunholyfruitbat
Memberhttp://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
September 3, 2009 at 8:20 pm #78204gj-tje
MemberOkay, I’ve fixed it and it’s working at the moment!

I forgot the settings in wp-admin/options.php for WordPress itself.
September 3, 2009 at 7:39 pm #78323hopeful4info
MemberWould the fact that I have bbPress working in a iframe in one of the wordpress pages be causing any problems?
September 3, 2009 at 7:31 pm #78322hopeful4info
MemberI 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.
September 3, 2009 at 7:12 pm #78321hopeful4info
MemberHmmm, 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
September 3, 2009 at 7:06 pm #78320gerikg
Memberlook through your BB-press dashboard –> Settings—>wordpress intergration
September 3, 2009 at 7:01 pm #78319hopeful4info
MemberHmmm, 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>
September 3, 2009 at 6:36 pm #78203gerikg
MemberAnd make sure you filled in in the BB Admin side the information under
DASHBOARD->SETTINGS->Wordpress Integration
September 3, 2009 at 3:05 pm #78201gj-tje
MemberHi 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.
September 3, 2009 at 12:51 pm #78318gerikg
Memberthis is all filled out correctly? /bb-admin/options-wordpress.php
September 3, 2009 at 12:27 pm #78317gerikg
Memberas is, as the plugin appears.
September 3, 2009 at 12:21 pm #78316hopeful4info
MemberYes, 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?
September 3, 2009 at 9:28 am #78541In reply to: How to set the User Role Map
Adam Harley (Kawauso)
MemberThere’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.
September 3, 2009 at 7:57 am #78218In reply to: Using bbpress as my "blog"… adding a header navbar
eclipsenow
Memberbecause 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.
September 3, 2009 at 4:39 am #78217In reply to: Using bbpress as my "blog"… adding a header navbar
Adam Harley (Kawauso)
MemberYou 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?
-
AuthorSearch Results