Doesn't work with 5.1?
novon - February 9, 2007 - 19:32
| Project: | Send |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | duplicate |
Jump to:
Description
Hi
I installed this, and mimemail, and set the access controls, added to nodes. When I send a node, I recieve no email or on page confirmation. Also - There are two buttons on the page, Submit and Send, I tried both to no avail.
please advise

#1
This can't be reproduced in our environment, so I suspect it's a configuration or a server issue.
Please re-open if you can provide more details on:
If you are not seeing any error/success messages, you should check your theme to ensure that it is configured to display messages correctly.
If you are not receiving any emails, you should check your server's error logs in case it's failing at that level.
#2
I ran into this same problem. On submitting I would be returned to the "send to friend" page with no confirmation or error message. In my case it looks like a conflict with the jrating module, as I noticed the 5 star rating widget from jrating appeared broken on the page. It was showing a select box and submit button rather than the usual stars (This may be the second "submit" button that the original poster refers to). Turning off jrating solved the problem.
Of course I still wanted to use jrating along with Send. Since I'm including the jrating voting widget via a tpl file, so I just replaced the code that inserted the jrating widget:
<?phpprint $node->jrating_html;
?>
with a conditional statement that doesn't include the voting widget on the Send pages:
<?php
$uri_request_id = $_SERVER['REQUEST_URI'];
$section = explode("/", $uri_request_id);
$mainsection = $section[1];
if ($mainsection != 'send'){
print $node->jrating_html;
}
?>
That's a bit of a kludge of course, but I have only limited familiarity with both of these modules, so I wasn't able to figure out which module is responsible for the problem. Until someone more capable can track down the cause of the problem, that's what got it working for me.
#3
I have the same problem, also issued at http://drupal.org/node/171227
It's 10 months since this issue opened
#4
Deliverability issues are Mime Mail related, and dependent on your host's configuration.
#5
#6
In our case, it happens on dreamhost. Anyway, all other mail-related services work fine (e.g. regsitration confirmations, etc.) so it doesn't look as a host configuration issue.
You can try and see this for yourself as an authenticated user in http://www.gurusfeet.com on any node.
#7
I'm marking this as a dupe. I think we're on the trail ( nodes with forms, such as fivestar or ecommerce? ). But there are too many dupes to sort it all out.
See also:
http://drupal.org/node/273621
http://drupal.org/node/122743
http://drupal.org/node/197886
I'm also moving it back to Send. Sorry.