Knowledge Base - Maian Cart - Free to Commercial

Download: maiancart

 

Open "sys-controller.php"

Located here: /control/system/core/

 

Go to Line 465

Before:

// Initialise..
$MSWLIC = new mswLic();
define('LICENCE_VER', $MSWLIC->mswCheckLicence() );

After:

// Initialise..
$MSWLIC = new mswLic();
define('LICENCE_VER', 'unlocked' );

 

================================

Now you can delete the "licence.lic" file, as it is no longer needed.

===================================

 To change the FOOTERS: 

In the Admin CP > Settings (top menu)  > Manage Settings > Other > Footers

Enter anything you like in the FOOTER boxes, then hit "Update". This will remove the copyrighted information.

 

 ==================================

Updated: Sept 2022

Remove Footer Copyright

Admin CP => General => Options => Footers

===========================================================

control/classes/mailer/class.mail.php

Line: 242 (Cart), 208 (Support)

Remove this:

if (LICENCE_VER == 'unlocked') {
return '';
}
switch($type) {
case 'plain':
$string = mswNL(2);
$string .= 'Free ' . SCRIPT_DESC . ' Powered by ' . SCRIPT_NAME . mswNL();
$string .= 'https://www.' . SCRIPT_URL;
break;
case 'html':
$string = mswNL(2);
$string .= 'Free ' . SCRIPT_DESC . ' Powered by ' . SCRIPT_NAME . mswNL();
$string .= '<a href="https://www.' . SCRIPT_URL . '">https://www.' . SCRIPT_URL . '</a>';
break;
}
return $string;

========================================
========================================

Remove this:

control/classes/mailer/class.mail.php

Bottom of Page:

if (!defined('LICENCE_VER') || !class_exists('mswLic')) {
die(@base64_decode('U3lzdGVtIGVycm9yLCBwbGVhc2UgY29udGFjdCBNYWlhbk1lZGlhIEAgPGEgaHJlZj0iaHR0cHM6Ly93d3cubWFpYW5tZWRpYS5jb20vY29udGFjdCI+aHR0cHM6Ly93d3cubWFpYW5tZWRpYS5jb20vY29udGFjdDwvYT48YnI+PGJyPlNvcnJ5IGZvciB0aGUgaW5jb252ZW5pZW5jZS4='));
}

===================================

control/functions.php

Line 284 or 333 or 336

function mswFLCTR() {
// if (!file_exists(GPATH . 'control/system/core/mm.php')) {
// die(base64_decode('W0ZBVEFMIEVSUk9SXSBMaWNlbmNlIGVycm9yLiBQbGVhc2UgdXBsb2FkIGFsbCBmaWxlcyBhZ2Fpbg=='));
// }
}


==================================

/control/options.php

Line 30
Move the other ones down and ADD this line:

define('LICENCE_VER', 'unlocked' );

===================================

/admin/control/init.php (Cart)

/control/system/init.php (Support)

Line 64 or 69, or 36
// include(IPATH . 'control/system/core/mm.php');

=====================================

/control/controllers.php

Line 15

// include(PATH . 'control/system/core/mm.php');

===================================

Support

admin/control/system/init.php:mm.php
control/system/init.php:mm.php
control/functions.php:mm.php

Line 36

// include(PATH . 'control/system/core/mm.php');

===================================

Details

Created : 2017-11-01 01:11:10, Last Modified : 2023-02-12 05:19:25