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
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

Allie Micka - February 11, 2007 - 23:28
Status:active» won't fix

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:

  • Which options you have clicked
  • Which page you are accessing to send a node (e.g. send/send/node_id )
  • Which button you have clicked
  • Anything else about your environment you might think is informative or helpful

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

khenney - March 16, 2007 - 02:41
Status:won't fix» active

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:

<?php
    
print $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

ekrispin - December 16, 2007 - 14:32
Priority:normal» critical

I have the same problem, also issued at http://drupal.org/node/171227

It's 10 months since this issue opened

#4

Allie Micka - February 19, 2008 - 01:06
Project:Send» Mime Mail
Version:5.x-1.x-dev» 5.x-1.x-dev

Deliverability issues are Mime Mail related, and dependent on your host's configuration.

#5

Allie Micka - February 19, 2008 - 01:07
Category:bug report» support request
Priority:critical» normal

#6

ekrispin - February 21, 2008 - 11:57

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

Allie Micka - August 3, 2008 - 01:34
Project:Mime Mail» Send
Version:5.x-1.x-dev» 5.x-1.x-dev
Status:active» duplicate

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.

 
 

Drupal is a registered trademark of Dries Buytaert.