论坛: 公开讨论 (Thread #30544)

gnavi D3の知られている既存の問題、その他 (2011-10-05 06:44 by domifara #59940)


忘れるのでメモ
他のモジュールのと競合でGNAVIで投稿できなくなる場合がある

http://www.xugj.org/modules/QandA/index.php?topic_id=941
include/common_prepend.inc.php
line 4,5
[code]
require_once dirname(dirname(__FILE__)).'/include/read_configs.php' ;
require_once dirname(dirname(__FILE__)).'/include/get_perms.php' ;
[/code]

require でないと他のモジュールと競合を起こす
[code]
require dirname(dirname(__FILE__)).'/include/read_configs.php' ;
require dirname(dirname(__FILE__)).'/include/get_perms.php' ;
[/code]