主要安了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.
Re: Triggers模組
重新安裝模組看看
---
notaBlueScreen | 訂閱RSS | Plurk
Re: Triggers模組
有重新安裝模組但還是出現以上的錯誤訊息
Re: Triggers模組
是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
Re: Triggers模組
kay.l非常感謝您~
但為什麼建了這個就都不會出現錯誤訊息了呢?
Re: Triggers模組
上面的錯誤信息告訴我的
不知什麼原因,你安裝時沒有建立那一個資料表
---
notaBlueScreen | 訂閱RSS | Plurk