bbPress Plugin Browser »

Subscribe To Topic (0.0.6)

Download

Version: 0.0.6

Last Updated: 2009-6-7

Requires bbPress Version: 0.9 or higher

Compatible up to: 0.9

Author Homepage »

Plugin Homepage »

Donate to this plugin »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(7)

Your Rating

Author: _ck_


  1. cK is such a ****. Why? She has got all the talent in the world, but quit from BBPress. She doesn't seem to care about the lesser souls like us. I am really angry at her.

    +++++++++++++++++cK YOU ARE BEING MISSED+++++++++++++++++

    Posted: 2 years ago #
  2. LambWarren

    Member

    Solution: I was having the problem mentioned in other posts, where when you click "Subscribe to Instant Email" the page reloads and then reverts back to the default "Don't Subscribe".

    For me, this was because the mySQL database table was not being created automatically. See @_ck_'s post here for the proper SQL query to run: http://bbpress.org/plugins/topic/subscribe-to-topic/page/2/#post-2648

    Copying the SQL query given my _ck_ in the previous link, I logged into my cPanel, went to phpMyAdmin, clicked on the SQL tab, and pasted the query I had copied into the field and hit "Go". I don't know much about SQL, but it worked for me!

    I post this here because the answer I needed was buried deep. Hopefully this can help someone.

    Posted: 2 years ago #
  3. I have installed the plugin, activated it and see it on my site. However, when I change the status from "Don't Subscribe" to "Instant Email Notification" the page processes but the status returns to "Don't Subscribe"

    I tested by posting a reply and I did not receive an email notification.

    Any thought s as to what the issue is?

    bbPress 1.0.2

    Thanks.

    Posted: 1 year ago #
  4. @keithck73 You should take a look at _ck'_ reply here:

    http://bbpress.org/plugins/topic/subscribe-to-topic/page/2/#post-2648

    You'll need to go into your SQL admin interface and run the following query (done by clicking on "SQL' on the top and pasting it in the box below that):

    CREATE TABLE IF NOT EXISTS subscribe_to_topic (
    user int(10) UNSIGNED NOT NULL default '0',
    topic int(10) UNSIGNED NOT NULL default '0',
    post int(10) UNSIGNED NOT NULL default '0',
    last int(10) UNSIGNED NOT NULL default '0',
    time int(10) UNSIGNED NOT NULL default '0',
    type tinyint UNSIGNED NOT NULL default '0',
    PRIMARY KEY (user,topic),
    INDEX (user),
    INDEX (topic)
    ) CHARSET utf8 COLLATE utf8_general_ci

    Hope that helps.

    Posted: 1 year ago #
  5. Blutch123

    Member

    Hi CK, the file is missing :(

    Posted: 1 year ago #
  6. Blutch123, if you mean you are getting an error when trying to download here, the servers sometimes go wonky. Try clicking the download link a few times even if it fails the first few. Or wait an hour.

    Posted: 1 year ago #
  7. Blutch123

    Member

    i tried many times and it works now :) thank you !!

    Posted: 1 year ago #
  8. does this work on bbPress 1.0? this is a feature I would love to integrate!

    Posted: 1 year ago #
  9. it subscribes but email does not arrive, what could it be?

    Posted: 1 year ago #
  10. It seems broken for v1.0.2. Clicking or selecting subscribe doesn't work, it just "insists" on no subscribe. Is there a quick fix to this?

    Posted: 1 year ago #
  11. @nolash: you're most likely missing the following table, this worked for me

    CREATE TABLE IF NOT EXISTS subscribe_to_topic (
    user int(10) UNSIGNED NOT NULL default '0',
    topic int(10) UNSIGNED NOT NULL default '0',
    post int(10) UNSIGNED NOT NULL default '0',
    last int(10) UNSIGNED NOT NULL default '0',
    time int(10) UNSIGNED NOT NULL default '0',
    type tinyint UNSIGNED NOT NULL default '0',
    PRIMARY KEY (user,topic),
    INDEX (user),
    INDEX (topic)
    ) CHARSET utf8 COLLATE utf8_general_ci

    Although the subscribe options with email work visually, but I don't receive any emails, I've checked the tables and records are being inserted. No email though - if anyone knows, please give me a heads up.

    cheers

    Posted: 1 year ago #
  12. Does this plugin send an email EACH time something new is posted in a topic, provided they are more than 1 minute apart?
    Is there a way to send only one per topic?
    Thanks

    Posted: 1 year ago #
  13. A small note for those that are using bbpress in conjunction with wordpress and are using wp-cache or similar caching plugin. You will want to exclude the forum pages from being cached. I thought this plugin wasn't working at first then I realized wp-cache was caching the page making it look like the subscribe options weren't changing when the page refreshed. Turns out they were, although I still have not received an update email.

    Posted: 1 year ago #
  14. Ok it's official. No emails. Any thoughts? I really would like this plugin to work as I use it a lot on the other forums I frequent.

    Posted: 1 year ago #
  15. @PropaneFitness (http://bbpress.org/plugins/topic/subscribe-to-topic/page/5/#post-6326)
    Yup, each time a post is made to the particular thread that you subscribed to. You can unsubscribe at any time by clicking on the unsubscribe url too.

    Posted: 1 year ago #
  16. @naviathan (http://bbpress.org/plugins/topic/subscribe-to-topic/page/5/?replies=95#post-6353)
    Check if subscribe_to_topic table has been populated when you installed the plugin. Also, the function that fires the emails, output the results (or create some debug) and check if the record is written to the database.

    Also is this installation running off the same wordpress or are you allowing access from a user base on another host? I ran into a couple of walls with this plugin as bbpress lives on a subdomain on it's own and shares the user tables from our main site, but with some modifications works like a dream.

    Posted: 1 year ago #
  17. @trippygrape
    Here's what I can tell you. I know my forum sends mail just fine, I get user account notices and comment verifications from WordPress. The bbpress installation is on the same server under a forum subdirectory with my wordpress install. I ran the query listed in this thread when I first installed the plugin and it created the tables for subscribe_to_topic. From what I can discern the tables are populating appropriately. It looks like it uses users, topics, posts and type all referenced by ID numbers. User listed as 1 is admin and 3 is a user I created for testing, there are table entries for each. I assume this takes us down to just the method used to send mail. My wordpress is using an smtp relay host to send mail, could this be what's mucking up the mail functions?

    Posted: 1 year ago #
  18. Scratch that part about sending mail just fine. My WordPress sends mail just fine, I don't think I've received a thing from the bbpress forum.

    Posted: 1 year ago #
  19. I'm still not getting emails from this plugin. I noticed the plugin is using bb_mail, how does bb_mail send its traffic?

    Posted: 1 year ago #
  20. Just had a thought. bbpress is using my wpress db for user accounts, but the subscribe_to tables are in the bbpress db where the topics and posts are stored.

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment »

You must log in to post.