Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 23,026 through 23,050 (of 32,481 total)
  • Author
    Search Results
  • #50320
    anabelle
    Member

    That would be great, Im sure i don’t have the best way to do it, im sure working together we can find the best way of achieving it.

    I’d love to pay, and I will. You must consider nonetheless I live and work in colombia. My current salary is les than $5 an hour. And I can’t even pay half that :( BUT! Im happy to give “donations” if the developer is ok. How much do you charge?

    I’ve thought about anonymous, but that isn’t the idea. If an account can be created, why not?

    I will surely use instant pasword! thanks for that!

    That gives me even more clear ideas about this.

    The reply form in a topic, if a user is logged out. Should include login, password, and reply.

    If the account exists, login and post. If it doesn’t exist; ask for email, createaccount, login and post.

    A special message could be shown. Your reply has been posted! And an account has been created for you. Thanks for joining our community.

    What do you think about it?

    #80791
    chrishajer
    Participant

    1. If your website is in public_html, then I would put the folder inside that folder, so you would have this:

    /public_html/bbpress/

    or

    /public_html/forums/

    or

    /public_html/discussions/

    When you unzip bbPress, it will create a folder called bbpress. Rename that folder to whatever you want before you upload it.

    Uncompress it on your desktop, then rename it, then upload the whole thing to public_html.

    4. Well, if /public_html resolves to your domain at http://www.example.com/ and you renamed your bbpress folder to discussions, you would visit http://www.example.com/discussions/ and start the installation.

    If you want a link to the forum in your WordPress menu, you will need to create a Page with a slug that is identical to your folder name. So, if you called your folder discussions, create a Page called Discussions with a slug of discussions and if you’re using permalinks in WordPress, that menu item will serve up the bbPress installation.

    There are also plugins that will allow you to redirect a page to another URL. You might need to do something like that.

    Custom Field Redirect: http://www.nathanrice.net/plugins/

    Page Links To: https://wordpress.org/extend/plugins/page-links-to/

    There are ways to do it in a page template as well, but you might not need any of that. Create a page with the slug named the same as your forum folder, and it should ‘just work’.

    #50317
    anabelle
    Member

    Sure, and i’ll definitely use it. Im just a little scared about support or having to fix things that are beyond my reach.

    So, as much as i Will test it. I don’t think im using it in production enivonment yet.

    But, my concept of a forum, the way I am conceiving it, designin it, and targeting it, REQUIRES this feature. I won’t use it right now but I’m sure the lack of it will almost fully stop the growth of the site.

    Simple as is, mi site “¿Cómo diablos.. ?” is targeted to solve basic questions to tech newbies in spanish, you can imagine there are a LOT of people, and grownups how are just getting to know a computer. And the process of registering, in a separate page, activating through email, and then asking some really basic question, it just really doesn’t work.

    What we’ve been using until now is a WordPress site, with reply to coment mail notification enabled. So they just ask, and get the answer to their mails. It’s working ok. But we really think the right way of doing it is using a forum. Auto-creating an account when the user signs up could be incredibly useful for getting recurent visitors and building local support communities in common language.

    Sorry for writing so much in such a bad english :P hope you understand.

    #80756

    In reply to: instable scripts

    chrishajer
    Participant

    I think that’s the output from the command top so watpocom is just the user that’s running the processes.

    I suspect it’s a plugin causing the problem. Using the plugins linked to by johnhiler will help pinpoint the problem. I’d start with bbPress plugins.

    #50316

    anabelle: The code that I’ve posted is fully working as a proof of concept, so you could use it. I’m not sure if this would ever be implemented into the core code though. I’ll look into re-doing it with an interstatial page at a later point if I have the time.

    #80760
    chrishajer
    Participant

    What version of bbPress are you running? The 1.0 version has some classes that you seem to be missing there. I don’t have a 0.9 version installed with categories to check this out.

    This would get you close, at the bottom of your style.css, but it’s not quite right – it spaces all the table data cells over. You just want the first ‘column’ over, the forum category.

    .bb-root td {
    padding-left: 2.5em;;
    }

    I didn’t think the older version had forums as categories – are you using a plugin for that, or are you using 1.0 and just missing some classes for your theme? Maybe that theme was for 0.9 and is missing the markup for 1.0.

    #80689

    In reply to: When bbpress 1.0.3?

    johnhiler
    Member

    @grassrootspa – BuddyPress uses bbPress to power forums, so as long as BuddyPress is important for Automattic then that’s good for us. :-)

    We definitely need clear guidance around the future of bbPress. If it’s not going to be supported, then we will have to work together as a community to fork it…

    #78876

    I was having the same problem. I back tracked through the code and found the problem was the admin section looking for a secure cookie and the login script was always setting the cookies without the secure flag. I worked around the issue by changing the force_ssl_admin function to always return true.

    function is located in: bbpress/bb-includes/backpress/functions.core.php line 802-ish

    hope this helps somebody.

    #80142
    legacyblade
    Member

    thanks, it worked perfectly :D

    AphelionZ
    Participant

    So I totally hacked up my htaccess file and now when I visit a nonexistant url it goes to the apache 404 page instead of the bbpress 404.. how do I need to change the code below to fix that?

    # BEGIN bbPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /community

    Options +FollowSymlinks +MultiViews

    RewriteRule ^forums$ forums/ [R=301]

    RewriteRule ^forums/$ /community/index.php?view=forums [P,L,QSA]

    RewriteRule ^leaderboards$ leaderboards/ [R=301]

    RewriteRule ^leaderboards/$ /community/index.php?view=leaderboards [P,L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/([^/]+)/?$ tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ tags.php [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/?$ profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/([^/]+)/?$ profile.php?id=$1 [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([^/]+)/?$ view.php?view=$1 [L,QSA]

    RewriteRule ^rss/?$ rss.php [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/?$ rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/topic/([^/]+)/?$ rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/?$ rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/profile/([^/]+)/?$ rss.php?profile=$1 [L,QSA]

    RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]

    RewriteRule ^forums/([^/]+)/([^/]+)/page/([0-9]+)/?$ topic.php?id=$2&page=$3 [L,QSA]

    RewriteRule ^forums/([^/]+)/([^/]+)/?$ topic.php?id=$2 [L,QSA]

    RewriteRule ^forums/([^/]+)/page/([0-9]+)/?$ forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^forums/([^/]+)/?$ forum.php?id=$1 [L,QSA]

    </IfModule>

    # END bbPress

    #80757
    nutsmuggler
    Member

    Oops, just 2 mins after posting I found a list of BBpress functions, featuring is_bb_admin()

    Well, hope this monologue will be helpful to other developers :)

    #80750

    In reply to: Color of text.

    batrachoid
    Member

    They’re links, so look for

    a { color: #2e6e15; text-decoration: none; }

    #32119

    Topic: Color of text.

    in forum Installation
    InvTrdr
    Member

    When I change the font color to “ffffff” in the code below, it does not apply it to all the text on the top of the page for registration/login etc. It only changes “welcome” and the rest like “admin”, “logout”, “register” and “lost password” are still the same. Where is the color of these fonts (all the text having to do with login, logout, forgot password, logout etc.) controlled in the CSS?

    .login {
    position: absolute;
    bottom: 31px;
    left: 0;
    font-weight: normal;
    color: #ffffff;
    width: 100%;
    z-index: 1;
    font-size: 12px;
    }

    Thank you.

    #50314
    anabelle
    Member

    I’ve been looking the code for a while, I’m not that familiar with bbPress yet, but i’d really like this feature so I’ll keep an eye on this.

    #65166

    In reply to: Several domains

    altimitmine
    Member

    I know this is old but I needed it to, so here is the answer for anyone else finding this on google:

    1) Open bb-includes/functions.bb-meta.php

    2) Find this line:

    case 'url':
    $option = 'uri';

    3) After it, add:

    case 'uri':
    return "http://".$_SERVER['HTTP_HOST']."/forum/";
    break;

    Replace the “/forum/” part with the proper URL to your forums. For example

    http://blah.com/bbpress/

    would be:

    return "http://".$_SERVER['HTTP_HOST']."/bbpress/";

    #80293
    apam
    Member

    bb-gian:

    Thankyou VERY much for your help and the clarity with which you explained yourself.

    I kinda had managed to make images work with tinyMCE alone (tinyMCE3.7.2, bb-press1.01) and have only used your tip on the ‘functions.bb-formatting.php’ that I’m not too sure is working.

    When I insert images and then render the page there is a ‘ “image26.jpg” />’ after the image itself, looking at the source code I see a linebreak (br) inside the value of the ‘alt’ attribute that breaks the code.

    Same thing happens on links: a linebreak ‘br’ at the beginning of the ‘href’ value.

    Anyone having/had the same problem?

    #32113
    alekseo
    Member

    Is it possible to install bbPress in the same folder as WordPress or have anyone tried? I have seen alot of people trying to remove the extra /forum url that appears in bbPress. This really seems like the obvious solution and like it’s what it’s coded for initially. I only fear that it’s too easy and straight forward that it won’t work =)

    #32105
    notprathap
    Member

    I recently installed bbpress by extending buddypress 1.1 with wordpress mu 2.8.4. While everything is ok on the buddypress end, the forum does not have a “Add New Topic” link displayed…. I tried adding topics and posts through the database too, but same result! :( You can find the link to the forum here – http://smartlearnwebtv.com/iitjee/forums. I’d appreciate any help from you guys.

    Note: The forum under the “Groups” category seems to work fine – not sure if this has got anything to do with the problem am facing.

    #80600
    ZoiX
    Member

    Thank you Olaf, but, I was trying with this plugin before and I can’t get a highlighting code, just a white square with the information.

    And, another issue, is that if I write the quotes, bbpress (or the plugin?) change for more quotes: I write “as”, and get “”as””, so, I need to write <pre lang=as>code</pre >

    #55973

    In reply to: Show off your Forum !!

    Peter A. Gebhardt
    Participant

    A (German) standalone implementation using “Hidden Forums” (and some more of _CK_s fine PlugIns) and some code tweaking to differentiate user experience for:

    • Visitors
    • Members
    • Exklusive Contributors (Experts)
    • Customers (Subscribers)

    http://versam.org/bb-vers/

    Peter A. Gebhardt
    Participant

    Change template-functions.php as described below:

    function post_form( $h2 = '' ) {
    global $page, $topic, $forum;
    $add = topic_pages_add();
    if ( empty($h2) && false !== $h2 ) {
    if ( is_topic() )
    $h2 = __('Reply');
    elseif ( is_forum() && !bb_forums( $forum_id )) // <== Change here
    $h2 = __('New Topic in this Forum');
    elseif ( is_bb_tag() || is_front() )
    $h2 = __('Add New Topic');
    }
    ...

    It’s a pity that I had to change a core file. Maybe somebody else could contribute a better solution?

    #80622
    chrishajer
    Participant

    Which text in the footer? The “Invicta Trader Forums is proudly powered by” text?

    #footer p {
    color:red;
    }

    This will change the color of that text.

    If you’re not talking about that text, please post exactly what text you want to style.

    Also, please stick with one subject per topic so we can close items as they are resolved.

    #80621
    InvTrdr
    Member

    Found the h1 color. Was set on a separate line. Below is the code for the footer. Where do I set all the text color in there?

    #footer {
    font-family: Georgia;
    font-style: italic;
    border-top: 0px solid #ccc;
    margin: auto;
    color: #666;
    font-size: 1.4em;
    padding-top: 10px;
    clear: both;
    text-align: center;
    height: 80px;
    width: 960px;
    }

    Thank you.

    #32103
    InvTrdr
    Member

    When I am using the code below to change the h1 text color, it will not work. Is it set somewhere else in the stock theme “Kakumei”? I was trying to change the color line below to ffffff from 444. Same problem with footer font too. Just some of it changes to ffffff.

    Thank you.

    #header h1 {
    font-family: Georgia;
    font-style: italic;
    overflow: auto;
    position: absolute;
    display: block;
    color: #444;
    text-align: right;
    letter-spacing: -1px;
    right: 69px;
    bottom: 36px;
    padding: 6px;
    z-index: 2;
    }

    #32093
    Immelody
    Member

    I’m hoping this is possible, but am doubtful. Hopefully someone can help if it is possible.

    I run a small community website. I have a friend that runs a similar but not exactly the same small community website. We were looking to become “sister” websites. What we want to do is have the message boards from both sites be a single board. This part isn’t what I’m worried about. I know it’s as simple as directing a link.

    What we are wanting however is to have her WP theme show up as the bbP theme when entered from her domain.. And when entered from my domain, my WP theme to show up as the bbP theme. Does anyone feel this is 1) possible 2) relatively “easy” to accomplish? When I say relatively easy, I mean that I know it will be difficult, but I don’t want to re-write ALL of the bbPress code.

    Thanks!

Viewing 25 results - 23,026 through 23,050 (of 32,481 total)
Skip to toolbar