I tried but no avail.MarkDHamill wrote:The modes for Smartfeed are contained in the language changes to language/en/acp/common.php. There are two sets of changes. Did you make both?
If you missed them, make them and flush the cache again.
FYI Smartfeed link is:MarkDHamill wrote:Most likely you missed changes to includes/acp/info/acp_board.php. The mode parameter when you click on the Smartfeed link in the ACP should say "smartfeed", and these changes should set the proper mode. That comes from this file change.
Yes:MarkDHamill wrote:Unfortunately I cannot get in with that URL. Did you make the changes to the file I mentioned? If it is not made based on my reading of /includes/acp/common.php that should trigger the error you are getting because that is where the $mode variable is set and passed to /includes/acp/acp_board.php.
Code: Select all
'registration' => array('title' => 'ACP_REGISTER_SETTINGS', 'auth' => 'acl_a_board', 'cat' => array('ACP_BOARD_CONFIGURATION')),
// phpBB Smartfeed MOD - Addition begin -----------------------------------------
'smartfeed' => array('title' => 'ACP_SMARTFEED_SETTINGS', 'auth' => 'acl_a_board', 'cat' => array('ACP_BOARD_CONFIGURATION')),
// phpBB Smartfeed MOD - Addition end -------------------------------------------
'auth' => array('title' => 'ACP_AUTH_SETTINGS', 'auth' => 'acl_a_server', 'cat' => array('ACP_CLIENT_COMMUNICATION')),
Code: Select all
default:
trigger_error('NO_MODE', E_USER_ERROR);
break;
Code: Select all
$mode = request_var('mode', '');