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
Comment #1
ivrh commentedYou 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.
Comment #2
mattbk commentedAhh, 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.
Comment #3
amitaibu#304018: Fatal error when saving a condition/ action
Comment #4
mattbk commentedThanks!
Comment #5
mitchell commentedUpdated component.