Cheetah 1.0.0.B3 has been released. It is a few days late. This is the final beta. No additional changes will be made to this beta. It's purpose is to make sure no problems exist that must be fixed before the stable version is released. With any luck, there won't be any serious issues.
This one does not contain an upgrade. The final stable version that will be released at the end of this month will not contain a upgrade either.
You can keep your current database if your need to. To do that, do the following.
- Backup your current database
- Drop all tables in the database.
- install Cheetah beta 3
- Restore your database.
Then run the following sql queries in PhpMyAdmin
UPDATE `sys_menu_top` SET `Caption` = '_ch_polls_profile' WHERE `Parent` = 4 AND `Name` = 'My Polls';
UPDATE `sys_menu_top` SET `Caption` = '_ch_ads_Ads_profile' WHERE `Parent` = 4 AND `Name` = 'Profile Ads';
UPDATE `sys_menu_top` SET `Caption` = '_ch_ads_Ads_profile' WHERE `Parent` = 9 AND `Name` = 'Profile Ads';
UPDATE `sys_options` SET `AvailableValues` = 'File,Memcache' WHERE `Name` = 'sys_db_cache_engine';
UPDATE `sys_options` SET `AvailableValues` = 'File,Memcache' WHERE `Name` = 'sys_pb_cache_engine';
UPDATE `sys_options` SET `AvailableValues` = 'File,Memcache' WHERE `Name` = 'sys_mm_cache_engine';
UPDATE `sys_options` SET `AvailableValues` = 'FileHtml,Memcache' WHERE `Name` = 'sys_template_cache_engine';
DELETE FROM `sys_options` WHERE `Name` = 'sys_antispam_smart_check';
INSERT IGNORE INTO `sys_options` VALUES ('sys_antispam_bot_check', '', 23, 'Block Detected Spam Bots', 'checkbox', '', '', 10, '');
UPDATE `sys_options` SET `order_in_kateg` = '10' WHERE `Name` = 'sys_antispam_bot_check';
UPDATE `sys_options` SET `order_in_kateg` = '20' WHERE `Name` = 'sys_dnsbl_enable';
UPDATE `sys_options` SET `order_in_kateg` = '30' WHERE `Name` = 'sys_dnsbl_behaviour';
UPDATE `sys_options` SET `order_in_kateg` = '40' WHERE `Name` = 'sys_uridnsbl_enable';
UPDATE `sys_options` SET `order_in_kateg` = '50' WHERE `Name` = 'sys_akismet_enable';
UPDATE `sys_options` SET `order_in_kateg` = '60' WHERE `Name` = 'sys_akismet_api_key';
UPDATE `sys_options` SET `order_in_kateg` = '70' WHERE `Name` = 'sys_stopforumspam_enable';
UPDATE `sys_options` SET `order_in_kateg` = '80' WHERE `Name` = 'sys_stopforumspam_api_key';
UPDATE `sys_options` SET `order_in_kateg` = '90' WHERE `Name` = 'sys_antispam_block';
UPDATE `sys_options` SET `order_in_kateg` = '100' WHERE `Name` = 'sys_antispam_report';
UPDATE `sys_options` SET `order_in_kateg` = '110' WHERE `Name` = 'sys_antispam_add_nofollow';
-- last step is to update current version
UPDATE `sys_options` SET `VALUE` = '1.0.0.B3' WHERE `Name` = 'sys_tmp_version';
Clear the Cheetah cache
Then add the following language keys.
'_adm_fields_error_reserved_name' => 'Name entered is a reserved name and cannot be used.',
'_sys_adm_page_cpt_botdetection' => 'Bot Detection',
'_sys_adm_title_botdetection_log' => 'Bot Detection Log',
Then update the following language key.
'_Exception_user_msg' => 'A database error has occurred while loading the page. The system administrator has been notified.',
That should be it.