Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length

JoomlaTune Support Forum    JComments component    General discussion    Topic: No e-mail for writers
Pages: [1] 2   Go Down
  Print  
Author Topic: No e-mail for writers  (Read 5920 times)
0 Members and 4 Guests are viewing this topic.
trax
Newbie
*

Karma: 0
Offline Offline

Posts: 3


« on: October 28, 2009, 16:45:33 »

Hello,

I hope you understand my english.


Jomments is working fine, but I have got a problem with e-mails.

The author gets no e-mail, if he wants to be informed about new comments. Guest or registered users make no difference.
But the e-mail notification for the admin is working.


Joomla: 1.5.14 (german language)
JComments: 2.1.0.0

Can you help me?

Thank you.
Logged
smart
Administrator
Hero Member
*****

Karma: 160
Offline Offline

Gender: Male
Posts: 2559



WWW
« Reply #1 on: October 28, 2009, 17:39:46 »

Please wait until JComments AutoSubscribe plugin will be released. It allows automatically create subscriptions to comments for authors of commented objects. At this time plugin in closed beta-testing stage.
Logged

If you use JComments, please post a rating and a review at the Joomla! Extensions Directory
trax
Newbie
*

Karma: 0
Offline Offline

Posts: 3


« Reply #2 on: October 28, 2009, 19:35:20 »

Maybe, there is a misunderstood. I try it more exactly.

A guest or registered user of my website writes a comment. He inserts his email address and clicks the checkbox "Notify me of follow-up comments". But he never gets an email. The admin account gets notification about new comments.

That's my problem.

Logged
smart
Administrator
Hero Member
*****

Karma: 160
Offline Offline

Gender: Male
Posts: 2559



WWW
« Reply #3 on: October 28, 2009, 22:47:45 »

Oh, you mean comments writers, not article auhtors? Their emails are correct? Try same email as you use in admin notification - may be on some mailboxes is aggresive spam filter?
Logged

If you use JComments, please post a rating and a review at the Joomla! Extensions Directory
trax
Newbie
*

Karma: 0
Offline Offline

Posts: 3


« Reply #4 on: October 29, 2009, 15:56:24 »

I dont know why, but now it works.  Grin

Thank you for your help.
« Last Edit: October 29, 2009, 16:26:28 by trax » Logged
eglescout
Newbie
*

Karma: 0
Offline Offline

Posts: 1


« Reply #5 on: November 17, 2009, 03:05:13 »

Please wait until JComments AutoSubscribe plugin will be released. It allows automatically create subscriptions to comments for authors of commented objects. At this time plugin in closed beta-testing stage.

This is for the author of the article, right?  I could really use this!  Smiley Could you let us know where you are in the development cycle?

Thanks!
« Last Edit: November 17, 2009, 03:12:00 by eglescout » Logged
charobnjak
Newbie
*

Karma: 0
Offline Offline

Posts: 3


« Reply #6 on: December 24, 2009, 20:53:19 »

Hi, thanks for the component... love it


I have the same problem.

My subscribers dont get email notifications when autopublish is OFF

When i turn on autopublish for unregistered users the mails are sent immediately.

I cant allow people on my site to write anything....

Any help is appreciated

thanks
Logged
smart
Administrator
Hero Member
*****

Karma: 160
Offline Offline

Gender: Male
Posts: 2559



WWW
« Reply #7 on: December 25, 2009, 05:10:30 »

charobnjak, what JComments version do you use?
Logged

If you use JComments, please post a rating and a review at the Joomla! Extensions Directory
umad
Newbie
*

Karma: 0
Offline Offline

Posts: 1


Email
« Reply #8 on: April 13, 2010, 01:12:01 »

Hello

I have the same problem.

My unregistered user dont get email notifications when autopublish is OFF, and when I publish their comments

can any body help this?
Logged
jakow86
Newbie
*

Karma: 0
Offline Offline

Posts: 1


« Reply #9 on: July 15, 2010, 21:12:21 »

Here's my solution to the problem.

Open administrator/components/com_jcomments/admin.jcomments.php

Find function publish (should on line 599), and replace it with this one (or just insert the HACK fragment):

Code:
function publish( $publish )
{
$id = JCommentsInput::getVar('cid', array());

if (is_array($id) && (count($id) > 0)) {
$ids = implode(',', $id);

$db = & JCommentsFactory::getDBO();
$db->setQuery("UPDATE #__jcomments SET published='$publish' WHERE id IN ($ids)");
$db->query();

// HACK
      if($publish){
        $row = new JCommentsDB($db);
       
        require_once (JCOMMENTS_BASE.DS.'jcomments.php');
       
        foreach($id as $comment){
      if ($row->load($comment)) {
            JComments::sendToSubscribers($row);
          }
        }
      }
      // END HACK
}
JCommentsRedirect(JCOMMENTS_INDEX . '?option=com_jcomments&task=comments');
}

You see the problem is that mails are send to subscribers, when a comment is saved and published. If it is not published, there are no mails. So I insert this piece of code ti run the sendToSubscribers function on comment publish from the backend.

This is probably not the best possible solution. It would be better not to require the whole jcomment.php. It does work though. Also tested with auto subscribe plugin, works as one would expect.
Logged
smart
Administrator
Hero Member
*****

Karma: 160
Offline Offline

Gender: Male
Posts: 2559



WWW
« Reply #10 on: July 16, 2010, 16:11:26 »

@jakow86: this bug is already fixed in upcoming version but anycase thank you for your patch!
Logged

If you use JComments, please post a rating and a review at the Joomla! Extensions Directory
timand
Newbie
*

Karma: 0
Offline Offline

Posts: 1


« Reply #11 on: August 26, 2010, 21:05:30 »

@jakow86: this bug is already fixed in upcoming version but anycase thank you for your patch!

Hello,
Can I know when the fix will be available?

Thanks
Andrea
Logged
omrigez
Newbie
*

Karma: 0
Offline Offline

Posts: 2


« Reply #12 on: April 16, 2011, 16:18:38 »

Hi,

This hack didn't work for me. Any ideas why?

Thanks,
Omrigez
Logged
naimless
Newbie
*

Karma: 0
Offline Offline

Posts: 12


« Reply #13 on: June 07, 2011, 23:48:09 »

Hi Jakow

I tried your hack but it doesn't work for me either, although it looks very sound in theory!  Sad

Commenter notifications only works if a registered user (set to autopublish comments) leaves a comment.

When an unregistered user (where comments don't autopublish) leaves a comment, no notification is sent out to other previosu subscribers to the thread.

Any ideas anyone? Is really great functionality but a shame I can't get it to work...

I've got version JComments 2.2.0.2 [12/09/2010] and Joomla 1.5.2x
Logged
naimless
Newbie
*

Karma: 0
Offline Offline

Posts: 12


« Reply #14 on: June 10, 2011, 11:59:25 »

Hi,

Thanks for your response.

Have already tried that, it's definitely not that. Also a bunch of email addresses hosted on my domain do not even have a spam filter set up and notifications for registered (autopublish) users leaving comments do go through.

Could it be something with my settings? I changed the form around a tiny bit and made some fields non-compulsory or removed them altogether, although I don't know how this would affect the notification.

To clarify, only messages posted by users with autopublish off, do not get sent via email notifications...

Very strange, any help would be greatly appreciated!
Logged
Pages: [1] 2   Go Up
  Print  
JoomlaTune Support Forum    JComments component    General discussion    Topic: No e-mail for writers
 
Jump to: