Search Results for 'code'
-
Search Results
-
Hi,
I dont know what happen, currently I found my bbpress (1.0.3) admin could not open the user admin page with error “You are not allowed to do this here”.
Currently my bbpress template was integrated with wordpress they installed separately.
You can look the page here: http://teknoinfo.web.id/forum
previously it works fine, after i do some changes regarding bug in the count bbpress from here http://bbpress.org/forums/topic/problems-on-recount-tools-after-upgrade-102-to-103, not sure its related or not.
From the error_log i found:
[28-Apr-2011 02:36:13] ERROR: bbPress database error – “Table ‘latqueir_teknoforum.bb_privatemessages’ doesn’t exist” for query “SELECT * FROM
bb_privatemessages” via caller “bb_activate_plugin, include, bbPM->bbPM, bbPM->update”[28-Apr-2011 10:33:17] ERROR: bbPress database error – “Table ‘lat_teknoforum.tekno_users’ doesn’t exist” for query “SELECT * FROM
wp_usersWHEREuser_loginin (‘raffaell’);” via caller “require_once, require_once, require_once, bb_current_user, bb_get_current_user, WP_Auth->get_current_user, WP_Auth->validate_auth_cookie, WP_Users->get_user”[03-May-2011 06:24:52] PHP Fatal error: Call to a member function get_terms() on a non-object in /home7/latqueir/public_html/teknoinfo/forum/bb-admin/includes/functions.bb-recount.php on line 167
Is there anyone experience this ?
I don’t want to hijack the thread where JJJ and I were talking about the template locations filling up my theme root, so here is a new post.
I was playing around with an idea, and before I go to far with it, I was curious what you think.
You had mentioned that this type of system was expressly forbidden by wp, due to having to search all folders for files before proceeding. That would be a nightmare, but here I am defining the folders up front, so it ‘should’ be just as fast, though I am unsure of how to bench test it.
If we could get a system in place like this, then it would clean up the theme area considerably.
I am using the same logic on a number of client sites and it works perfectly, though they are not using bbpress or buddypress. I simply use it for my own custom post-types.
example:
public function template_include( $template ) {
if ( get_query_var('post_type') == $this->post_type ) {
if ( is_single() ) {
if ( $single = locate_template( array( $this->post_type.'/single.php') ) )
return $single;
}
if ( is_paged() ) {
if ($paged = locate_template( array( $this->post_type.'/archive.php') ) )
return $paged;
}
else { // loop
return locate_template( array(
$this->post_type . '/index.php',
$this->post_type . '.php',
'index.php'
));
}
}
return $template;
}This would completely change the structure of bbpress template names, but could potentially allow me to store everything inside 3 folders ‘forums/topics/replies’.
I’m sure there would be much more to it than that….
What do you think of this type of approach?
*right now it is quite generic and would effect all custom post_types, which would not be good. Changing to be bbpress specific would prob just be a matter of defining types in the array vs. all
I’m really asking because even though I know I could get this to work, I am quite curious how this would end up effecting buddypress when combined with bbpress.
Would a system like this be a deal breaker?
Good idea or bad?
If I mark a post as either super sticky or sticky it does indeed stick to the top.
However, the same post shows up twice, once on the top, and also repeated again within the list of posts wherever it would normally belong.
In my instance I made a super sticky post and can also find the same sticky post on page2 of my forum. It is even highlighted on page 2, just like it is on page 1.
solution:
I believe this is a similar problem that I ran into when building a featured gallery. The solution was to store the post id#s of my featured posts, and make sure to remove those from the loop calling the regular posts, i.e. no duplicates.
Sorry, I have not read through any of the bbpress code itself beyond theme files to even have a clue on where to fix it, otherwise I would try and post a fix here.
Topic: some questions
Hello !
After i finally understand what you are doing here…

I checked what i need to do. A little bit confusing for me, my english isn`t that good.
Ok, i setup a new WP (current version with twenty theme) and installed the bbpress 2 beta.
So far so good. Will there be categories in BBpress ? Cause i just need one Forum under one menupoint with different categories with the topics inside.
Currently i can only make different forums wich are seperatet, thant`s a little bit strange cause i have to a menupoint for every forum.
When i click on “forum” at the breadcrump i get this error:
The requested URL /mashup/forums/ was not found on this server.
404, folder not found.
Sure, there is none. Is this just a relict of the older BBPress version where normally i should have this folder ?
First look is nice, this can be great in the future, but its in a very early beta state i guess.
It`s the only forum wich is native in WP and runs directly in the page.
All others like Vbulletin, PHPbb and so can`t be included and iframes are not really nice.
so, BBPress is my hope and the only solution at the horizon.
Thanks for your work.
Also, when I edit some very old posts through the admin panel, they get uncategorized and I can’t reassociate them with the correct topic as old topics can not be found in the parent drop down list.