Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'register'

Viewing 25 results - 3,751 through 3,775 (of 4,248 total)
  • Author
    Search Results
  • #3248
    jaydedman
    Member

    I just realized that when a new user registers, they are sent an email with Gravatar information. http://showinabox.tv/forum/topic.php?id=8#post-286

    I see nothing in the bbPress admin panel under the Gravatar plugin that lets me customize this email. Unfortunately, the wording of this email seems to confuse people.

    “New Gravatar Email is blahblah@NewMexicast.com.

    New Verification Code is *******

    It is an 8-letter string. Note that before you successfully verify your new Gravatar Email, your Gravatar will not work. “

    Anyone know how to customize this email…or send out an automatic welcome email so I can be more clear?

    Jay

    #64158
    refueled
    Member

    I’ve updated this theme. If you’ve been having registration issues, please download it again and replace the following files:

    login-form.php

    register.php

    register-success.php

    #64365
    chrishajer
    Participant

    I just registered at your forum, and I received a well formed email. I have no idea what you’re talking about. Did you receive an email regarding my registration at the same time?

    If you are receiving these bounce messages, how would anyone ever get their password to log in?

    The email was from fbw (at) forums blogs wikis (dot) com (no spaces, the From: was well-formed.)

    /confused

    #55026
    samuli
    Member

    I for one would appreciate the possibility for registration approval. I’m currently involved in a zero budget project to launch a forum on a sports related website that runs WordPress as CMS, and registration approval seems to become the last thing we need to solve before choosing bbPress (over Vanilla.) In this scenario, a registration approval plugin for bbPress would naturally be very handy. (I don’t think we have skills to make our own plugin.)

    For what the approval thing is needed, then? For example, Vanilla discussion forum uses registration approval in a way we would appreciate to copy for our project. The idea of people not registering an account but applying for one would suit our project really well. “Why do you want to join this forum?” is a question we would like people to answer before letting them post anything.

    A Finnish online magazine covering ice hockey, Jatkoaika.com, has a forum that has grown into a lively discussion community for over 13,000 registered users without losing its, well, usefulness. It’s not only because of strict moderation of discussions, they require their users to apply for registration as well. Given that the topic is ice hockey (you know, that game with all the tackling and fighting and strong emotions) and most forum users are hockey fans (“We want blood!”) and male (“We want blood!”), we consider that a great role model for this forum project of ours, even though we don’t expect our forum to become as popular (and we are not about ice hockey.)

    (In what comes to our project, we might still decide to NOT having approval for registration. There are advantages in also not having that, of course.)

    #64374

    In reply to: Forum Disappeared!

    Is there a manual way to get someone set to KeyMaster? I registered and was user #1. There seems to be no use #0 so there is no administer for the forum. I’m totally locked out. :(

    #62413
    robomilk
    Member

    Ahh, no, that’s because I’m running WordPress MU, which seems to have a thing where if the page doesn’t exist then it gives the option to register it as a username.

    #64348

    In reply to: Redirect problem

    JaneLitte
    Member

    I don’t have pretty permalinks on. I don’t have an .htaccess file in the bbpress install. My root .htaccess is this

    php_flag register_globals off

    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/print/?$ /wp-print.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA,L]

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
    RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
    RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{DOCUMENT_ROOT}/wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz -f
    RewriteRule ^(.*) /wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz [L]

    RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
    RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
    RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1index.html [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    <Files 403.shtml>
    order allow,deny
    allow from all
    </Files>
    #AddHandler php5-script .php

    #64347

    In reply to: Redirect problem

    chrishajer
    Participant

    I registered and received my email, but I can’t log in, no message, it just refreshes the page. I would say it has something to do with the rewrite rules. I would turn off slugs or permalinks in your bb-config.php.

    I just looked in my bb-config-sample.php though, and there is no mod_rewrite line in there? Weird. Not sure how to tell you to turn off pretty permalinks, but I suspect that’s the problem. That, or something in an .htaccess file that is causing weirdness.

    #3209
    momo-i
    Member

    Hi all,

    I’m using this in Japanese. When the user is registered, mail is garbled. It seems that it is because the mail body is submitted with raw UTF8 (not MIME-encode) also this is because of mail in Japanese(encoded iso-2022-jp) being provided as shown in RFC1468.(See http://www.ietf.org/rfc/rfc1468.txt)

    However, it is possible to display it even in Japanese with UTF8 normally by doing appropriate treatment.

    1. Add Content-Type header and etc.

    $headers[] = “MIME-Version: 1.0”;

    $headers[] = “Content-Type: text/plain; Charset=UTF-8”;

    $headers[] = “Content-Transfer-Encoding: 8bit”;

    2. MIME encodes the header.

    use mb_encode_mimeheader().

    http://www.php.net/manual/en/function.mb-encode-mimeheader.php

    Regards,

    #3206
    glanceup
    Member

    I am switching my board from phpbb to bbpress and am very worried about porn spamming robots that register and post urls to porn sites.

    In phpbb, there is a mod that didn’t stop the registration, but was COMPLETELY EFFECTIVE in stopping the posting of porn sites. It simply would not allow brand-new members to post URLs.

    Is anyone capable of writing such a plug in for bbpress?

    Here’s a link to the phpbb mod —

    http://www.phpbb.com/mods/db/index.php?i=misc&mode=display&contrib_id=1649&sid=11350f22f9dec93e4361bf7b1d53a801

    #3202

    Topic: Shoutbox

    in forum Plugins
    thion
    Member

    Is there any shoutbox plug-in for BBpress? I’m looking for something simple to use for registered users, with simple managment (edit, delete), maybe something ajax-powered :).

    citizenkeith
    Participant

    From 1998-2003, I ran a forum using the Network54 website. These forums were horrendous. There wasn’t any user database… people just wrote their posts then filled in their name and an optional email address. (It’s amazing I didn’t get any spam during that five year period.)

    My goal is to get all these posts into bbPress.

    I was unable to spider the forum. Network54’s server kicked in and blocked all attempts using Spiderzilla.

    Here’s the forum:

    http://www.network54.com/Forum/3752/

    Instead this is what I’ve done: There are 53 pages of posts. Some of them are threaded, some are not. On each page, there’s a “View All Messages” link that will show you all of that’s page’s posts and threads on one single HTML page. Each thread is separated with an HR tag.

    I downloaded each of these 53 “View All” pages. I just spent 20 minutes cleaning up the code from Page 1, and I’m left with a fairly lean page. Here’s what I got for page 1:

    http://www.judyhenskefan.com/viewall-page-1.htm

    I will continue doing this for all 53 pages. Then I would like to separate out all the topics and posts, and put it into an “Archive” forum in my bbPress install. I’m trying to determine the best way of doing this…

    For one, a lot of the users are not registered on the current forum. Some are, but used slightly different names. Some people never entered their optional email address at the Network54 forum, so I don’t have a way to put everybody into a user account. I could match up a bunch of them, but not all of them.

    How would you proceed, if you were me?

    #3201
    raygene
    Member

    Hi,

    I added a bbPress forum to my WP 2.5 Blog and being that I didn’t want users to either login nor register from the forum section, I modified the template’s header.php file to comment out <?php login_form(); ?>.

    If there’s another way of doing this, let me know.

    Thanks,

    Gene

    #64214

    that’s what i did, but it doesn’t work. all users that registered with bbpress before the update, are shown as “anonymous”. and also, some of the other users are getting mixed up …

    #3191
    Ryan
    Participant

    The first two user registrations I’ve had on my new forum are both using @mail.ru email addresses. Experience with other forums tells me these are probably spam registrations. On the SMF forums I admin I block @mail.ru email addresses from being able to register at all. Is there a way to do this in bbPress? Maybe have them default to Inactive or Blocked depending on the email address used?

    #3185
    raygene
    Member

    Hi,

    I have upgraded my WP blog to version 2.5 and would like to integrate a bbPress forum. Before I do so, I would like to hear from people who have done this and could give me a few tips on how to go about it.

    A few things on my mind:

    1- Is it better to use a separate database for the forum (which I would prefer if possible)?

    2- Should bbPress be installed in a WP sub-folder?

    3- Is there a plugin or setting which would prevent users to register via the forum (disable forum registration) and would redirect the user to the WP registration panel?

    Any advice (and good plugins) would be well appreciated.

    Cheers,

    Gene

    #64212

    this order: WP 2.3, bbpress 0.8 (no integration with plugins at that time!), WP 2.5, bbpress 0.9

    I patently waited with integration until 0.9 was out since I did not understand the whole thing before. And everything seems to work fine. Just as soon as I add the WP_ prefix setting to my bbpress config, it seems as if bbpress can only access the WP users anymore (with the correct role mapping i set up etc.).

    maybe I should just ask all registered users to reregister after integration, since the forum is pretty new anyway ;-)

    #64201
    skehoe
    Member

    Ok so I take back my last statement, those that register through bbpress get a bbpress role and those that go through wp get a wp role. Again, is there a file where these functions are written that I can check to make sure the table prefix is right? My user registration is integrated in that users show up on both, but the roles only are assigned in the form which a user registers.

    #64204

    In reply to: Whitelisting

    _ck_
    Participant

    Make sure they have not been flagged as a “bozo” by looking at their profile.

    In bbpress 0.9 you can disable the built-in bozo plugin entirely which I actually recommend as it’s more trouble than it’s worth.

    (Then use my Human Test plugin to make sure you don’t get bots registering to post spam).

    #3179

    Hey there,

    my problem/question might be funny, but I just don’t get it. Just upgraded bbpress to 0.9.1 and set it up to be integrated with wordpress 2.5 (they both share the same DB).

    in the bbpress config, i have the WP_ prefix set and everything seems to sync well.

    But now all posts in the bbpress forums done by users that registered at the bbpress forums are signed as “Anonymous” and all these users are neither listed in the bbpress nor in the worspress admin.

    To test, i removed the WP_prefix from the bbpress config, then these users are back, but for sure this is not the idea since i’d like to integrate both things.

    Am I getting this all wrong, or is there any way to “import” the bbpress users into WP or something (without manually editing the database)?

    Thanks!

    Christophe

    #3173
    skehoe
    Member

    I currently have bbpress .9.0.1. installed as well as wordpress 2.3.3. The user databases are integrated (I have mouldy old cookie and reverted back to the md5 hashing system). The only difference from a normal installation is that my table prefix for wordpress is nothing, not wp_. Now I set this correctly in order to integrate the user databases on the wordpress admin page, however I heard sambauers mention in another post that this could cause an issue with the bbpress role integrator? What is even wierder is if someone registers through bbpress they still do not get a role, and cannot post.

    #3174
    skehoe
    Member

    I currently have bbpress .9.0.1. installed as well as wordpress 2.3.3. The user databases are integrated (I have mouldy old cookie and reverted back to the md5 hashing system). The only difference from a normal installation is that my table prefix for wordpress is nothing, not wp_. Now I set this correctly in order to integrate the user databases on the wordpress admin page, however I heard sambauers mention in another post that this could cause an issue with the bbpress role integrator? What is even wierder is if someone registers through bbpress they still do not get a role, and cannot post.

    #3148
    trcyshw
    Member

    Hi,

    In my template I want to specify that one of my forums can be posted to by admins only, and other users can only reply.

    I figured the best way (and I know it’s not foolproof, but at least I can make it more difficult for people to do!) would be to use an if… else statement, but I’m not sure how to correctly write it.

    In non-PHP structure: “if the forum ID is 2 and the user is an admin, show the ‘add topic’ link; and if the forum is not equal to 2 then show the link to all registered members (in other words, let them see the ‘add topic’ link in every other forum except 2) “.

    If you could please assist a php-noob by showing me the correct structure for this statement, it’d be much appreciated.

    Also, if you know of a better way to make one forum admin-post only and member-reply only (while the others forums remain as they are now), I’m all ears! Well, all eyes since I’ll be reading rather than listening.

    Thank you so much in advance!

    #64095
    timskii
    Member

    What you are probably looking for is Flickr-in-a-box as a separate application with a common user database. Just as I’m looking for a Facebook-in-a-box application to run alongside the forum to foster the more personal social side. I don’t believe these should be core parts of the forum software, but there is a need for them somehow.

    This notion of modular is important, because it is easy to get side-tracked and try and build the entire internet into one application. That might ultimately happen (mirroring the history of the Microsoft platform model), but at this stage of the game, nobody has the resources to do everything, so doing one part of the jigsaw well is the best plan.

    BBPress should focus development on its core, which still has weaknesses. IMHO the most urgent is augmentation of futuristic geek-only features with the traditional ones that most users understand. The need for these functions has been acknowledged in BBPress’s design, however the current implementation is lacking because they are too complex for “normal people”.

    So RSS needs to be mirrored with bespoke email notifications, because the only people that “get” RSS are ‘bloggers. Gravatars need to be mirrored with uploadable avatars, because the only people that get Gravatars are ‘bloggers.

    Ok, I generalise on the “bloggers” part. But I know moderately technical people that can’t manage to set up a Gravatar, and have no idea what to do with an RSS feed. So the clueless masses stand no chance of using these features for the purpose they were designed.

    BBPress’s killer feature at the moment is spam control without forcing users to jump through hoops just to register and post. Easy to work with code, and general lack of bloat are good to. But take a look at this, and tell me the #1 feature requirement of forum software (and if anyone can point to why that’s affecting phpBB 2 sites more than other software, I’m curious). That’s literally hundreds of spam posts an hour. Most admins faced with that kind of nightmare won’t be too worried about forcing users to host files elsewhere.

    #64087
    zapata
    Member

    the problem with the first install is:

    1 – I did not integrate the forum with WP (the now infamous secret cookie key thingy)

    2 – the username I registered and got the password for does not work. So now I can’t login to bbPress myself.

    3 – the forums are open. I have a plugin for the older version which hid the forums from the outside world except the authors but that seems to not work with 0.9

Viewing 25 results - 3,751 through 3,775 (of 4,248 total)
Skip to toolbar