I can set up a new rule, and this morning I even had it working that I could send myself and email with the post title and body. Some of the actions, however, cause a blank screen after they are submitted (and the action is not saved). I know this is the case with "Display a tokenized message" and "Show a configurable message" as well as "Send tokenized email."

Any ideas why this is the case?

Comments

ivrh’s picture

You need to enable PHP errors on your webserver. Blank screen means there's Fatal Error but errors are disabled.
Put

######################
ini_set('display_errors', 1);
error_reporting(E_ALL | E_STRICT);
##########################

at the bottom of your settings.php file and see what happens.

mattbk’s picture

Ahh, thank you.

The error I get is

Fatal error: Unsupported operand types in /Users/Matt/Sites/drupal/sites/all/modules/rules/rules/rules.admin.inc on line 815

whether I use tokens or not (I am using the most recent dev of the tokens module). I am not sure what this means.

This occurs for the "Show a configurable message on the site" action. I'll have to take some time today to nail down exactly which actions give me this error.

amitaibu’s picture

Status: Active » Closed (duplicate)
mattbk’s picture

Thanks!

mitchell’s picture

Component: Code » Rules Core

Updated component.