Forum Replies Created
-
I know, I hope you can figure this out as this plugin is real helpfull for me and the site (when it’s fully working).
If there is anything else you want INFO/LOGS what ever let me know.
I’m admin / it’s my own site and can not save attachments. The restrictions are default
And even when i set them all (except for delete) to “read” it still doesn’t work, all is in order / folders are 777 and so on. Deactivated / Reactivated plugin no go for me
Even this version gives me the same problems that i had with _CK_’s 0.27
http://www.cell-systems.net/forums/topic/enzyme-11-beta/page/3#post-1226
I can not save attachments to my desktop / and some even fail to open at all.
In reply to: Show off your Forum !!http://test2.cell-systems.net/forums <- Template + Forums I’m working on now (test domain) it will be moved to http://www.cell-systems.net this weekend once i finalzie it.
AdSense for bbPress
Version 1.0.1 | By Seans0n
Akismet
Version 1.1 | By Michael Adams
BBcode Lite
Version 2.0.0 | By KillerSneak/_ck_ | (customized to work with WYSIWYG text editor)
bbPM
Version 0.1-alpha10 | By KillerSneak/Nightgunner5| (customized to work with WP theme layout)
bbPress-WordPress syncronization
Version 0.8.0 | By Ivan Babrou
bbPress Attachments
Version 0.2.7 | By _ck_
bbPress Recent Replies
Version 0.1b | By Ashfame
Bozo Users
Version 1.1 | By Michael Adams
Role Manager
Version 0.1 | By Nightgunner5
Other:
* Integrated theme with WordPress
* new and easy HTML text editor (customized to work with “BBcode Lite Version 2.0.0 | By KillerSneak/_ck_ | -customized to work with WYSIWYG text editor)
* Custom top user nav + user icon’s on group eg:
-Admin icon
-Moderator icon
-Clan Memeber icon
-Donators icon
-Member icon
* 1 tag cloud to work for BBpress and WordPress
– and allot of other customized stuff to get everything WP/BB to look the same.
In reply to: WordPress Editor for bbpress?http://test2.cell-systems.net/forums/topic/testing-forum-software/page/3
I’m running a custom Editor on my test site and will move it to my normal site this weekend works wonders
In reply to: Cookie Integration only one way/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);
that was needed in your wp-config.php If you want real deep integartion there will be allot more work. I just fixed a long running problem of using all bb-press plugins in wp, i managed to do it after working on it for 4 days
test2.cell-systems.net .. I’m now able to call plugins from BB in WP (like the BBpm in the header and such)
I’m thinking about posting my fix / work but.
The above isn’t (post by gerikg) as you want to integrate bb-press into WordPress and not the other way around. I’m not posting all the work i have done yet btw as i want to run the test site for atleast 2 weeks (to see if any problems appear)
In reply to: *seamless* wordpress integrationhttp://test2.cell-systems.net/
test setup working almost flawless, 100% valid CSS and XHTML
Allot of css work goes into it to make the WP theme and Bb theme to work. I’m not combining both CSS files to make 1 standart css file.
In reply to: *seamless* wordpress integrationFor the people who can’t login. Here are the steps i have taken to make it work:
**
BBpress Part
**
all php files of bbpress
<?php bb_get_header(); ?>
to
<?php get_header(); ?>
and
<?php bb_get_footer(); ?>
to
<?php get_footer(); ?>
:: bb-config.php::
add just before the ?> ending tag:
define(‘WP_BB’, true);
if ( !defined(‘DB_NAME’) ) {
require_once( dirname(__FILE__) . ‘/../wp-config.php’);
}
define(‘WP_BB’, true);
if ( !defined(‘DB_NAME’) ) {
require_once( dirname(__FILE__) . ‘/../wp-blog-header.php’);
}
**
WordPress Part
**
::wp-blog-header.php::
at the top add
<?php global $forumpage;
$forumpage = TRUE; ?>
This should at least make the login part work and replace the header + footer and in some cases (depanding on your WP-Theme??) some css
http://test2.cell-systems.net/ <- thats the testing site. It;s 01:05 here now and I need to get into my bed. I hope this at least helps a bit as it seems most people who have it working 100% don’t want to share??>>
In reply to: wp and bb press css intergrationwould be the best way to take the default WP theme -> and add the BBpress needed functions into it? (and add a few files from the BBpress needed theme) ?
This is the only bad thing about Wp and BBp integration isn’t as smooth as it should be, and the DEV should have had Wp / BBp compatibility #1 .. At the moment they depend to much on community work.