您在這裡

Triggers模組

主要安了workflow、workflow_ng、workflow_owner、actions、token之後出現的Triggers模組
出現以下錯誤訊息
想詢問要如何排除呢~thx
* user warning: Table 'test.actions_assignments' doesn't exist query: SELECT h.aid, a.description FROM actions_assignments h LEFT JOIN actions a on a.aid = h.aid WHERE h.hook = 'nodeapi' AND h.op = 'presave' ORDER BY h.weight in D:\AppServ\www\test\includes\database.mysql.inc on line 172.
* user warning: Table 'test.actions_assignments' doesn't exist query: SELECT h.aid, a.description FROM actions_assignments h LEFT JOIN actions a on a.aid = h.aid WHERE h.hook = 'nodeapi' AND h.op = 'insert' ORDER BY h.weight in D:\AppServ\www\test\includes\database.mysql.inc on line 172.
* user warning: Table 'test.actions_assignments' doesn't exist query: SELECT h.aid, a.description FROM actions_assignments h LEFT JOIN actions a on a.aid = h.aid WHERE h.hook = 'nodeapi' AND h.op = 'update' ORDER BY h.weight in D:\AppServ\www\test\includes\database.mysql.inc on line 172.
* user warning: Table 'test.actions_assignments' doesn't exist query: SELECT h.aid, a.description FROM actions_assignments h LEFT JOIN actions a on a.aid = h.aid WHERE h.hook = 'nodeapi' AND h.op = 'delete' ORDER BY h.weight in D:\AppServ\www\test\includes\database.mysql.inc on line 172.
* user warning: Table 'test.actions_assignments' doesn't exist query: SELECT h.aid, a.description FROM actions_assignments h LEFT JOIN actions a on a.aid = h.aid WHERE h.hook = 'nodeapi' AND h.op = 'view' ORDER BY h.weight in D:\AppServ\www\test\includes\database.mysql.inc on line 172.

是Actions模組哦...
或者自己新增
<?php

CREATE TABLE actions_assignments (
hook varchar(32) not null default '',
op varchar(46) not null default '',
aid varchar(255) not null default '',
weight int not null default '0',
PRIMARY KEY (hook, op, aid)
) ENGINE=INNODB /*!40100 DEFAULT CHARACTER SET UTF8 */

?>

---
notaBlueScreen | 訂閱RSS | Plurk