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.

Support Fixed Extended Cover Server Error

Welder

New Member
Hello,

So, I noticed today that I have a server associated with Extended Cover. Please see the 2 attachments.

I have no idea how to fix, but I am not happy.

Can you please help?

If you need more details, I'll do my best.
 

Attachments

  • server error 1.JPG
    server error 1.JPG
    31 KB · Views: 7
  • server error 2.JPG
    server error 2.JPG
    176.5 KB · Views: 7

Fred

Administrator
Staff member
In XFA/ExtendedCover/ControllerPublic/Profile.php

Search :
PHP:
// Check permissions
if(!$extendedCoverPermissionProfile->canManageCoverProfile($user))
{
    return false;
}

Replace by

PHP:
// Check permissions
if(!$extendedCoverPermissionProfile->canManageCoverProfile($user))
{
    throw $this->getErrorOrNoPermissionResponseException('');
}

It should fix your problem
I will update addon for this soon
 
Top