[BR] Support Ticket System

xF2 Add-on [BR] Support Ticket System 3.2.1

No permission to download

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

LQD submitted a new resource:

[BR] Support Ticket System - This add-on provides you with an advanced ticket system that allows you to manage your clients’ issu

This add-on provides you with an advanced ticket system that allows you to manage your clients’ issues, including in Featuring threaded discussions, Completing with staff groups, Ticket flagging, Varying priority levels, Predefined replies, Escalated rules and much more... Administrators are assigned in a departmental basis, so they have to access only the area they are meant to be dealing with.

FEATURES:
* Client Interface:

- Users can submit new tickets.
- Ability to add...

Read more about this resource...
 

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

Can you please help me how can i remove the copyright for this add-on?
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

After i have installed it on my forum the copyright showing in the footer attached screenshot.
Screenshot_20190804-174757__01.jpg
 

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

Sent you the details in conversation.
 

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

I have found the code in this file:

PHP:
src/addons/MJCore/1000000/Listener.php

How can i remove the copyrights without getting a mismatch of the hash and do not break the checksum of the file.
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

I have found the code in this file:

PHP:
src/addons/MJCore/1000000/Listener.php

How can i remove the copyrights without getting a mismatch of the hash and do not break the checksum of the file.
PainI installed site on the demo website, it does not show copyrights demo upimages.net/forums/
 
Last edited:

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

That's really strange, it's start showing after i have installed this add-on.
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

That's really strange, it's start showing after i have installed this add-on.
PainThis must be deleted on the host, I will find out and inform you
 

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

Thank you my friend for your support.

Looking forward for your updates.
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

Thank you my friend for your support.

Looking forward for your updates.
Pain/src/addons/MJCore/1000000/Listener.php
Delete
Code:
class Listener
{
    protected static $addedCopyright = false;
    public static function templaterSetup(Container $container, Templater &$templater)
    {
        $templater->addFunction('copyright', function(Templater $templater, &$escape){
            $copyrightHtml = $templater->fnCopyright($templater, $escape);
            return self::addCopyrightIfRequired($copyrightHtml);
        });
    }

    protected static function addCopyrightIfRequired($defaultCopyright = '')
    {
        if(!self::requiredCopyright())
        {
            return $defaultCopyright;
        }
        self::$addedCopyright = true;
        return $defaultCopyright.self::getCopyrightHtml();
    }

    protected static function getCopyrightHtml()
    {
        return (string) '<div id="BRCopyright" class="concealed muted" style="float:left;margin-left: 10px;"><style>@media (max-width:480px){.Responsive #BRCopyright span{display: none;}}</style><div class="muted"><a href="http://brivium.com/" class="concealed" title="Brivium Limited"><span>XenForo </span>Add-ons by Brivium<span> &trade;  &copy; 2012-'.date("Y").' Brivium LLC.</span></a></div></div>';
    }

    protected static function requiredCopyright()
    {
        return !self::$addedCopyright && self::addOnsRequired() && !self::bypassCopyright();
    }

    protected static function addOnsRequired()
    {
        $prefixes = ['brivium', 'mj'];
        $addOns = \XF::app()->registry()->get('addOns');

        $pattern = sprintf('/^(?|'.implode('|', $prefixes).')\//i');
        foreach($addOns as $addOnId => $versionId)
        {
            if(preg_match($pattern, $addOnId, $match))
            {
                return true;
            }
        }
        return false;
    }

    protected static function bypassCopyright()
    {
        return \XF::app()->options()->brBypassCopyright || \XF::app()->config('brBypassCopyright');
    }
}
 

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

I have removed it but it will show this message:
Code:
The files listed below have contents different from those originally downloaded.
If you have edited these files yourself, you may ignore this message, otherwise you should investigate further as this may be evidence of corrupted or altered files.
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

Pain

Member
Registered
Joined
Jul 28, 2019
Messages
12
Points
3

Reputation:

I have removed the file but the message still showing.
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,119
Points
823

Reputation:

Top