What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

  • This area is dedicated to the support of our xF1 add-ons. For xF2, please use the dedicated area: HERE.
  • We are aware that a no permission error was shown when you tried to purchase in the last 2 days, this is now fixed.

Bug Fixed Exception 4.27

Robert9

Well-Known Member
ErrorException: Undefined index: xfa_ec_target_url - library/XFA/ExtendedCover/Model/Abstract.php:39
Generiert durch: Chebakka, Donnerstag um 13:58 Uhr
Stapelverfolgung

#0 /var/www/web1/html/forum/library/XFA/ExtendedCover/Model/Abstract.php(39): XenForo_Application::handlePhpError(8, 'Undefined index...', '/var/www/web1/h...', 39, Array)
#1 /var/www/web1/html/forum/library/XFA/ExtendedCover/Model/Forum.php(66): XFA_ExtendedCover_Model_Abstract->getCoverAttachments('xfaEcForum', 352)
#2 /var/www/web1/html/forum/library/XFA/ExtendedCover/Extends/XenForo/ControllerPublic/Forum.php(28): XFA_ExtendedCover_Model_Forum->getCoverParams(352, Array, true, false)
#3 /var/www/web1/html/forum/library/XenForo/FrontController.php(351): XFA_ExtendedCover_Extends_XenForo_ControllerPublic_Forum->actionForum()
#4 /var/www/web1/html/forum/library/XenForo/FrontController.php(134): XenForo_FrontController->dispatch(Object(XenForo_RouteMatch))
#5 /var/www/web1/html/forum/index.php(13): XenForo_FrontController->run()
#6 {main}

Benötigter Status

array(3) {
["url"] => string(76) "http://www.magazin.com/forum/forums/lala352/page-2"
["_GET"] => array(0) {
}
["_POST"] => array(0) {
}
}
 

Fred

Administrator
Staff member
I think i know where is the problem
I look this today to get you a fix
 

Fred

Administrator
Staff member
In library/XFA/ExtendedCover/Model/Abstract.php

Search
PHP:
if($userPermissions['xfa_ec']['xfa_ec_target_url'])

Replace by

PHP:
if(isset($userPermissions['xfa_ec']['xfa_ec_target_url']) && $userPermissions['xfa_ec']['xfa_ec_target_url'])
 
Top