Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 6,026 through 6,050 (of 6,780 total)
  • Author
    Search Results
  • #68346
    chrishajer
    Participant

    Does the problem happen with the default theme? Chances are there’s a problem in one of your template files.

    Or, possibly a plugin issue. Turn off plugins until your forum works again.

    If you have access to error logs, you can look in there and see exactly what’s causing the problem. A blank screen is normally a 500 Internal Server Error.

    #67601
    chrishajer
    Participant

    There is no language file for that text, it’s in your template file: /bb-templates/kakumei/post-form.php line 15 by default. You can change it there.

    #3981
    sawndiddle
    Member

    Where is the language file for “Enter a few words (called tags) separated by spaces to help someone find your topic: “?

    I need to change spaces to commas. Also, I think this needs to be updated in the new bbpress, but the default setting I got was separated by commas, but spaces is misleading to those who post.

    #4120
    agitainment
    Member

    Hi.

    I recently installed bbPress on my WordPress site here at http://agitainment.com/ics/forum/.

    I’ve built a theme based on 1col_fixed 1.1 (I believe it’s kakumei with most of the CSS stripped out). In any case, when I go to my forums I can see my Gravatars and default avatars in kakumei, but when I switch on my theme they disappear.

    Is there a php file I’m missing or a block of code somewhere I need to copy over from the kakumei theme to get these to work? If so, where should I put the code?

    Thanks!

    #4103
    #67937
    Sam Bauers
    Participant

    Another thing left is to try it using the default template instead of the custom one you are using and seeing if that changes the behaviour.

    You can just switch to it temporarily, then test and switch back.

    #4092
    kuroir
    Member

    I’m wondering if there’s a way to change the default Permalink structure and prefixes.

    For example :

    http://www.exolimpo.com/foro/topic/post-de-prueba

    I would like to change topic for something else.

    and

    http://www.exolimpo.com/foro/forum/anime

    I would also like to change Forum, since Foro already means forum in spanish.. so “Forum Forum” is reiterative.

    If there’s a way to do this tell me, I don’t mind editing a little bit of code in the core, I just need a little bit of direction.

    #67516

    In reply to: Plugin suggestions

    Sam Bauers
    Participant

    @Detective

    Why not just edit the previous post? 5 minutes is within the default editing time limit.

    #4090
    cralor
    Member

    Here is how to correctly install Avatar Upload.

    The “Additional Info” is not too detailed.

    Here is the instructions on how to get the plugin (currently) on your bbPress site:

    1. Download and upload the plugin to your bbPlugins directory.

    2. Activate the plugin in the bbPress Admin section.

    3. Follow the file movement instructions:

    In the “additional-files” folder (inside this Avatar Upload plugin directory) there is several files. These need to be moved elsewhere.

    • Move the entire “avatars/” folder to your bbPress root directory. (Including the “default.png” inside.)
    • Move the “avatar-upload.php” to the bbPress root directory.
    • Move the “avatar.php” (inside the “my-templates” folder) to your template(s) (theme(s)). Example: Move “my-templates/avatar.php” to “forums/bb-templates/kakumei/” (So it is like “forums/bb-templates/kakumei/avatar.php”.)

    I hope this helps someone :D

    #4079

    I’m using Tera-WURFL to detect whether my bbpress forum is being accessed by a mobile browser.

    I also have a specific theme (1col_fixed, I think it’s called) that works very nicely in mobile browsers.

    Now, what I want to do is to have bbpress use the 1col_fixed theme when a mobile browser is detected, and use my default theme otherwise. What function(s) do I call to set the currently activated theme to a different theme? And how do I make it ‘stick’ just for the mobile user — cookies? sessions?

    Thanks so much if anyone can help me.

    #67890
    Sam Bauers
    Participant

    The filter will only be passed one argument by default, so you need to change your add_filter() call to this:

    add_filter('get_user_profile_link', 'ss_get_user_profile_link', 10, 2);

    .

    The third parameter is the priority, the second is the number of arguments to pass.

    I created a database with full privileges and a user on the host and then entered it into the script. I received a message saying there was a failure to connect to the database.

    The user name and password fields were populated with the admin login and pass from my WordPress installation. I used that login and name to create a user for the database, and then I re-ran the script with the default entries. Still can’t connect.

    Any help would be appreciated.

    #4071
    ikailo
    Member

    This was originally going to be an “It’s not working!” post, but I made some progress. Now it’s “Is what I did ok?” post.

    I kept getting a”This Topic is Closed” error every time I tried to create a new topic. Traced it back to the insert statement in ‘bb_insert_topic’ in functions.php. The database was responding with the error of “The value ‘ ‘ is not a valid integer for column ‘topic_id’. (I am paraphrasing, I don’t have the exact response in front of me)

    I suspected it had something to do with the fact that the topic_id value is being supplied to MySql, but it is set to be an auto-increment / not null field.

    So, I commented out in the $default array definition in ‘bb_insert_topic’:

    // 'topic_id' => false, // accepts ids or slugs

    and I changed this line:

    unset( $default, $defaults );

    to this:

    unset( $args, $defaults );

    Did the same thing under the ‘bb_insert_post’ function in the same file, but for the ‘post_id’ variables.

    Presto. Everything seems to work OK now.

    Could this issue be specific to my version of MySql? Although it is strange, because the original query works just fine using a third party tool (SQLyog).

    Has anyone encountered this issue before? Or – can anyone comment on the validity of my changes, and if they might cause issues going forward?

    Finally – should this be logged as a bug?

    Thanks!

    WP 2.6, BB 1.0, IIS 6.

    #67971
    Olaf Lederer
    Participant

    just checked the code and it seems to me that this function is not 100% fine:

    function new_topic( $args = null ) {
    $defaults = array( 'text' => __('Add New »'), 'forum' => 0, 'tag' => '' );
    if ( $args && is_string($args) && false === strpos($args, '=') )
    $args = array( 'text' => $args );

    $args = wp_parse_args( $args, $defaults );
    extract( $args, EXTR_SKIP );

    if ( $forum && $forum = get_forum( $forum ) )
    $url = get_forum_link( $forum->forum_id ) . '#postform';
    elseif ( $tag && ( ( is_numeric($tag) && $tag = bb_get_tag( $tag ) ) || $tag = bb_get_tag_by_name( $tag ) ) )
    $url = bb_get_tag_link( $tag->tag ) . '#postform';
    elseif ( is_forum() || is_bb_tag() )
    $url = '#postform';
    elseif ( is_topic() )
    $url = get_forum_link() . '#postform';
    elseif ( is_front() )
    $url = add_query_arg( 'new', '1', bb_get_option( 'uri' ) );

    if ( !bb_is_user_logged_in() )
    $url = add_query_arg( 're', urlencode($url), bb_get_option( 'uri' ) . 'bb-login.php' );
    elseif ( is_forum() || is_topic() ) {
    if ( !bb_current_user_can( 'write_topic', get_forum_id() ) )
    return;
    } else {
    if ( !bb_current_user_can( 'write_topics' ) )
    return;
    }

    if ( $url = attribute_escape( apply_filters( 'new_topic_url', $url ) ) )
    echo "<a href='$url' class='new-topic'>$text</a>n";
    }

    this part is not good and result im some error:

    elseif ( is_forum() || is_bb_tag() )
    $url = '#postform';

    what is your adbvice to fix that? rewriting the function / adding a filter as a kind of plugin?

    #4065
    eschen
    Member

    I installed bbPress 0.9.0.2 and tried to integrate with WP 2.5 site. The two are at http://www.my-site/forum and http://www.mysite/blog under the root directory. I have two issues:

    First is with permalinks set to the default (/forum.php?id=1), no problem, I can view profiles and posts within bbPress. However if I use either of the other settings for a permalink, when I click on any profile or post topic within admin control panel or site view, I only get a blank page, no error. Example: the post should be at “forum/post-name”, which is exactly where the link takes me but a blank page exists. However I can view the user profiles registered at bbPress within the WP admin area, so I believe the two are at least partially integrated.

    The host is GoDaddy and there are no problems with WP permalinks. I have tried the using the following htaccess code with the /forum directory:

    # BEGIN bbPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forum/

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /forum/index.php [L]

    </IfModule>

    Also just having one line:

    Options +MultiViews

    Also the exact code generated at bb-admin/rewrite-rules.php

    Second issue is after login to bbPress, a simple link to the WP admin requests me to login again. Does this take more than a simple link to “…/blog/wp-admin/”? I have checked the cookies and both look identical.

    Thanks for any help

    #67818

    In reply to: What database to use?

    chrishajer
    Participant

    Use the existing database, but be sure the table prefixes are different. By default WordPress uses wp_ and bbPress uses bb_ – those are safe. When you get into the installation, you will see a place where it asks what the WordPress table prefix is.

    #67760
    Olaf Lederer
    Participant

    hi,

    do they offer money back garanty?

    I’m sure you get more trouble with them. A lot of default PHP function doesn’t work with them (I guess they have safe_mode = On)

    #4017
    leoleoleo
    Member

    Anyone use Godaddy webhost? I just use the service and moved my old site to .

    WordPress http://xxx.com (URL Rewrite is fine)

    bbPress http://xxx.com/forum/

    but the default (rewrite-rules.php) permalinks is not work. Anyone know how to use bbPress URL Rewrite with GoDaddy?

    #67699
    _ck_
    Participant

    Works fine for me with default template in newest 1.0 alpha. Or do you mean you want anonymous people to be able to vote. That’s not possible.

    Any particular reason you started a new topic on this rather than asking on the page for the plugin itself?

    #61909

    In reply to: BB Poll Plugin

    _ck_
    Participant

    I am not sure why people bump year old topics instead of posting on the page for the plugin itself, but to answer your question, if you are logged in and admin, you can add a poll anytime. Otherwise the ability to add a poll expires an hour after the topic is started by default (which you can change in the settings).

    #67681
    _ck_
    Participant

    If you didn’t hack the core and just templates, all they need to do is install the same version of bbPress you have installed, send them your custom theme files to install, and then send them a full export of your bbpress db to replace their default install. Then it should be identical.

    #67643
    _ck_
    Participant

    Remember, the problem with MATCH AGAINST is it will not do partial words or words under 4 characters.

    It’s not too hard to replace the search, you just have to decide which way you want to go. The regular expression will at least do 3 character words which I find is more common than you’d imagine.

    The problem is that the time for any way without an index is going to increase dramatically once you start adding sorting and other options that cause full table scans. You can see this happen if you try to add a simple option to the regex demo like sorting by reverse post_id (which is a trick that should be a little faster than sorting by date).

    SELECT * FROM bb_posts WHERE post_text LIKE '%test%' LIMIT 5 ORDER BY post_id DESC;

    and

    SELECT * FROM bb_posts WHERE post_text LIKE '%test%' AND REGEXP ':<:%test%:>:' LIMIT 5 ORDER BY post_id DESC;

    You might want to test a worse case scenario by using three character nonsense words that will cause a cache-miss like “zzz” and “aaa”. Change them each time so mysql cannot cache the results and give you faster times.

    If the above example returns in an acceptable amount of time you can just replace bbpress’s built in search with that simple method. By parsing a query you can also AND words together instead of bbPress’s default OR which to me is incredibly annoying and useless (you’ll notice no major search engine like Yahoo or Google does OR by default).

    #67640
    _ck_
    Participant

    But keeping a full-text index can get rather huge, which is probably why bbPress doesn’t use it by default.

    BTW, MySQL 5.1 apparently has some nice improvements in fulltext search.

    If you have your own dedicated or vps server you can tinker with some mysql settings to speed things up. (You never did answer if you have mysql cache turned on)

    #67683

    In reply to: Hackers?

    _ck_
    Participant

    I think that’s one of the default javascripts scripts loaded in the topic.php page.

    It only shows in mini-track because it’s generated by a php file.

    Most of the javascript in bbPress can be disabled and makes for faster loading pages (ajax goes away however).

    So the answer is no, it’s not hacking. But you will see the attempts sooner or later – there are thousands of bots out there scanning sites and most people are unaware.

    I’ll put in some code to exclude bb-includes in the next mini-track.

    #67661
    Clicknathan
    Participant

    Thanks everyone, I’m going to try out the first plugin Chris recommended and I’ll let the thread know if that’s the ticket.

Viewing 25 results - 6,026 through 6,050 (of 6,780 total)
Skip to toolbar