Software License Error #5

Your license key has expired.

Status:
includes/extra folder exists and is writable.
includes/extra/key.php doesn't exist!
Note: The key.php file can be deleted at anytime and the store will attempt to regenerate it. Your software license key is held in the includes/global.inc.php file.


Solution:

Please check the value of your software license key in the includes/global.inc.php file. If you installed your store using a trial software license key you will need to purchase full software license key to continue to use this software. If you have already purchased one or after you have purchased one there is no need to reinstall the software. It is possible to continue from where you left off.

Using an FTP client please edit the file: /includes/global.inc.php

The contents should look something like:

<?php
$glob['adminFile'] = 'admin.php';
$glob['adminFolder'] = 'admin';
$glob['dbdatabase'] = 'cubecart_db';
$glob['dbhost'] = 'localhost';
$glob['dbpassword'] = '******';
$glob['dbprefix'] = '';
$glob['dbusername'] = 'cubecart_user';
$glob['installed'] = '1';
$glob['license_key'] = 'xxxx-xxxx-x-xxxxxxxxxx-xxxxxxxx';
$glob['rootRel'] = '/';
$glob['storeURL'] = 'http://www.example.com';
?>


Please locate your new full software license key from your CubeCart customer control panel. You then need to edit the global.inc.php file so that it has the new software license key and upload this back to the server.

e.g.
<?php
$glob['adminFile'] = 'admin.php';
$glob['adminFolder'] = 'admin';
$glob['dbdatabase'] = 'cubecart_db';
$glob['dbhost'] = 'localhost';
$glob['dbpassword'] = '******';
$glob['dbprefix'] = '';
$glob['dbusername'] = 'cubecart_user';
$glob['installed'] = '1';
$glob['license_key'] = 'yyyy-yyyy-y-yyyyyyyyyy-yyyyyyyy';
$glob['rootRel'] = '/';
$glob['storeURL'] = 'http://www.example.com';
?>


Please now delete the /includes/extra/key.php file if it exists and then refresh this page. You may be able to do this using the delete link a the top of this page which works on some servers.