Can't save form

asked Aug 4, 2012 by Ciatronical (950 points)
If I try to edit a new or exist form I get a error message.
"Oops! sorry but something fishy is going on - try again or call for support."
In version 2.0.2 forms works but I can't save modifications.
Note:
In Manage Action Emails -> When feedback form sent -> send an e-mail to - Drop down is empty
If I press button "Add recipient" I get a second, ... form.

1 Answer

answered Aug 6, 2012 by Eugene Nezhuta (2,920 points)
selected Aug 8, 2012 by Ciatronical
 
Best answer
Hi there, Ciatronical
That's true that we'r missing some default values in the db.
We will fix that for sure in the next package, But for now, if you'r familiar with MySql, execute following queries and your system will work.

=======================================================

INSERT INTO `email_triggers_recipient` (`id`, `recipient`) VALUES
(4, 'admin'),
(3, 'copywriter'),
(1, 'guest'),
(2, 'member'),
(5, 'superadmin');

=======================================================

INSERT INTO `email_triggers` (`id`, `enabled`, `trigger_name`, `observer`) VALUES
(1, '1', 't_feedbackform', 'Tools_Mail_SystemMailWatchdog'),
(2, '1', 't_passwordreset', 'Tools_Mail_SystemMailWatchdog'),
(3, '1', 't_passwordchange', 'Tools_Mail_SystemMailWatchdog'),
(4, '1', 't_membersignup', 'Tools_Mail_SystemMailWatchdog'),
(5, '1', 't_systemnotification', 'Tools_Mail_SystemMailWatchdog');

=======================================================

 ALTER TABLE  `form` ADD  `reply_text` TEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL;
commented Aug 6, 2012 by Ciatronical (950 points)
edited Aug 8, 2012 by Ciatronical
Hi Eugene,
thanks, now I Can save forms.
  Ronny
...