• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Showcase confliction with another add-on.

mrbook

New Member
Showcase
Received this error log this morning. I'm going to post this over at Waindiago's forums as well as I can see that Showcase and his Social Groups add-on are conflicting somewhere.


ErrorException: Undefined property: XenForo_ControllerResponse_Redirect::$params - library/NFLJ/Showcase/ControllerPublic/Forum.php:264
Generated By: Unknown Account, Today at 10:41 AM
Stack Trace
#0 /home/myscifio/public_html/thelowerworld.com/library/NFLJ/Showcase/ControllerPublic/Forum.php(264): XenForo_Application::handlePhpError(8, 'Undefined prope...', '/home/myscifio/...', 264, Array)
#1 /home/myscifio/public_html/thelowerworld.com/library/PrefixForumListing/Extend/ControllerPublic/Forum.php(7): NFLJ_Showcase_ControllerPublic_Forum->actionForum()
#2 /home/myscifio/public_html/thelowerworld.com/library/XenForo/FrontController.php(347): PrefixForumListing_Extend_ControllerPublic_Forum->actionForum()
#3 /home/myscifio/public_html/thelowerworld.com/library/XenForo/FrontController.php(134): XenForo_FrontController->dispatch(Object(XenForo_RouteMatch))
#4 /home/myscifio/public_html/thelowerworld.com/index.php(13): XenForo_FrontController->run()
#5 {main}
Request State
array(3) {
["url"] => string(62) "http://thelowerworld.com/index.php?forums/role-play-portal.45/"
["_GET"] => array(1) {
["forums/role-play-portal_45/"] => string(0) ""
}
["_POST"] => array(0) {
}
}
 
Definitely an issue with PrefixForumListing addon.

This is line 264 which is assigning one of the key $viewParams from the parent:
PHP:
$forum = $parent->params['forum'];

params from the parent controller
PHP:
$viewParams = array(
            'nodeList' => $this->_getNodeModel()->getNodeDataForListDisplay($forum, 0),
            'forum' => $forum,
            'nodeBreadCrumbs' => $ftpHelper->getNodeBreadCrumbs($forum, false),
SNIP.....
};
 
Back
Top