/var/softaculous/fluxbb
NameSizeModeActions
images/-0755rm
languages/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
changelog.txt40930644editdlrm
clone.php61710644editdlrm
config.php3530644editdlrm
edit.php44850644editdlrm
edit.xml4330644editdlrm
fileindex.php5380644editdlrm
fluxbb.sql177300644editdlrm
fluxbb.zip3980310644editdlrm
import.php33540644editdlrm
info.xml18490644editdlrm
install.js9210644editdlrm
install.php47240644editdlrm
install.xml17300644editdlrm
md5114450644editdlrm
notes.txt2230644editdlrm
upgrade.php47320644editdlrm
upgrade.xml3280644editdlrm
Edit: /var/softaculous/fluxbb/fluxbb.sql (17730B)
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `fluxbb1511` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]bans` -- CREATE TABLE `[[dbprefix]]bans` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(200) DEFAULT NULL, `ip` varchar(255) DEFAULT NULL, `email` varchar(80) DEFAULT NULL, `message` varchar(255) DEFAULT NULL, `expire` int(10) unsigned DEFAULT NULL, `ban_creator` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `[[dbprefix]]bans_username_idx` (`username`(25)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]categories` -- CREATE TABLE `[[dbprefix]]categories` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_name` varchar(80) NOT NULL DEFAULT 'New Category', `disp_position` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]categories` -- INSERT INTO `[[dbprefix]]categories` VALUES (1, 'Test category', 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]censoring` -- CREATE TABLE `[[dbprefix]]censoring` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `search_for` varchar(60) NOT NULL DEFAULT '', `replace_with` varchar(60) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]config` -- CREATE TABLE `[[dbprefix]]config` ( `conf_name` varchar(255) NOT NULL DEFAULT '', `conf_value` text, PRIMARY KEY (`conf_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]config` -- INSERT INTO `[[dbprefix]]config` VALUES ('o_additional_navlinks', ''), ('o_admin_email', '[[admin_email]]'), ('o_announcement', '0'), ('o_announcement_message', 'Enter your announcement here.'), ('o_avatars', '1'), ('o_avatars_dir', 'img/avatars'), ('o_avatars_height', '60'), ('o_avatars_size', '10240'), ('o_avatars_width', '60'), ('o_base_url', '[[softurl]]'), ('o_board_desc', '[[site_desc]]'), ('o_board_title', '[[site_name]]'), ('o_censoring', '0'), ('o_cur_version', '1.5.11'), ('o_database_revision', '21'), ('o_date_format', 'Y-m-d'), ('o_default_dst', '0'), ('o_default_email_setting', '1'), ('o_default_lang', '[[language]]'), ('o_default_style', 'Air'), ('o_default_timezone', '0'), ('o_default_user_group', '4'), ('o_disp_posts_default', '25'), ('o_disp_topics_default', '30'), ('o_feed_ttl', '0'), ('o_feed_type', '2'), ('o_forum_subscriptions', '1'), ('o_gzip', '0'), ('o_indent_num_spaces', '4'), ('o_mailing_list', '[[admin_email]]'), ('o_maintenance', '0'), ('o_maintenance_message', 'The forums are temporarily down for maintenance. Please try again in a few minutes.'), ('o_make_links', '1'), ('o_parser_revision', '2'), ('o_quickjump', '1'), ('o_quickpost', '1'), ('o_quote_depth', '3'), ('o_redirect_delay', '1'), ('o_regs_allow', '1'), ('o_regs_report', '0'), ('o_regs_verify', '0'), ('o_report_method', '0'), ('o_rules', '0'), ('o_rules_message', 'Enter your rules here'), ('o_searchindex_revision', '2'), ('o_search_all_forums', '1'), ('o_show_dot', '0'), ('o_show_post_count', '1'), ('o_show_user_info', '1'), ('o_show_version', '0'), ('o_signatures', '1'), ('o_smilies', '1'), ('o_smilies_sig', '1'), ('o_smtp_host', NULL), ('o_smtp_pass', NULL), ('o_smtp_ssl', '0'), ('o_smtp_user', NULL), ('o_timeout_online', '300'), ('o_timeout_visit', '1800'), ('o_time_format', 'H:i:s'), ('o_topic_review', '15'), ('o_topic_subscriptions', '1'), ('o_topic_views', '1'), ('o_users_online', '1'), ('o_webmaster_email', '[[admin_email]]'), ('p_allow_banned_email', '1'), ('p_allow_dupe_email', '0'), ('p_force_guest_email', '1'), ('p_message_all_caps', '1'), ('p_message_bbcode', '1'), ('p_message_img_tag', '1'), ('p_sig_all_caps', '1'), ('p_sig_bbcode', '1'), ('p_sig_img_tag', '0'), ('p_sig_length', '400'), ('p_sig_lines', '4'), ('p_subject_all_caps', '1'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]forums` -- CREATE TABLE `[[dbprefix]]forums` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `forum_name` varchar(80) NOT NULL DEFAULT 'New forum', `forum_desc` text, `redirect_url` varchar(100) DEFAULT NULL, `moderators` text, `num_topics` mediumint(8) unsigned NOT NULL DEFAULT '0', `num_posts` mediumint(8) unsigned NOT NULL DEFAULT '0', `last_post` int(10) unsigned DEFAULT NULL, `last_post_id` int(10) unsigned DEFAULT NULL, `last_poster` varchar(200) DEFAULT NULL, `sort_by` tinyint(1) NOT NULL DEFAULT '0', `disp_position` int(10) NOT NULL DEFAULT '0', `cat_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]forums` -- INSERT INTO `[[dbprefix]]forums` VALUES (1, 'Test forum', 'This is just a test forum', NULL, NULL, 1, 1, [[timestamp]], 1, '[[admin_username]]', 0, 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]forum_perms` -- CREATE TABLE `[[dbprefix]]forum_perms` ( `group_id` int(10) NOT NULL DEFAULT '0', `forum_id` int(10) NOT NULL DEFAULT '0', `read_forum` tinyint(1) NOT NULL DEFAULT '1', `post_replies` tinyint(1) NOT NULL DEFAULT '1', `post_topics` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`group_id`,`forum_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]forum_subscriptions` -- CREATE TABLE `[[dbprefix]]forum_subscriptions` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `forum_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`user_id`,`forum_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]groups` -- CREATE TABLE `[[dbprefix]]groups` ( `g_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `g_title` varchar(50) NOT NULL DEFAULT '', `g_user_title` varchar(50) DEFAULT NULL, `g_promote_min_posts` int(10) unsigned NOT NULL DEFAULT '0', `g_promote_next_group` int(10) unsigned NOT NULL DEFAULT '0', `g_moderator` tinyint(1) NOT NULL DEFAULT '0', `g_mod_edit_users` tinyint(1) NOT NULL DEFAULT '0', `g_mod_rename_users` tinyint(1) NOT NULL DEFAULT '0', `g_mod_change_passwords` tinyint(1) NOT NULL DEFAULT '0', `g_mod_ban_users` tinyint(1) NOT NULL DEFAULT '0', `g_mod_promote_users` tinyint(1) NOT NULL DEFAULT '0', `g_read_board` tinyint(1) NOT NULL DEFAULT '1', `g_view_users` tinyint(1) NOT NULL DEFAULT '1', `g_post_replies` tinyint(1) NOT NULL DEFAULT '1', `g_post_topics` tinyint(1) NOT NULL DEFAULT '1', `g_edit_posts` tinyint(1) NOT NULL DEFAULT '1', `g_delete_posts` tinyint(1) NOT NULL DEFAULT '1', `g_delete_topics` tinyint(1) NOT NULL DEFAULT '1', `g_post_links` tinyint(1) NOT NULL DEFAULT '1', `g_set_title` tinyint(1) NOT NULL DEFAULT '1', `g_search` tinyint(1) NOT NULL DEFAULT '1', `g_search_users` tinyint(1) NOT NULL DEFAULT '1', `g_send_email` tinyint(1) NOT NULL DEFAULT '1', `g_post_flood` smallint(6) NOT NULL DEFAULT '30', `g_search_flood` smallint(6) NOT NULL DEFAULT '30', `g_email_flood` smallint(6) NOT NULL DEFAULT '60', `g_report_flood` smallint(6) NOT NULL DEFAULT '60', PRIMARY KEY (`g_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `[[dbprefix]]groups` -- INSERT INTO `[[dbprefix]]groups` VALUES (1, 'Administrators', 'Administrator', 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0), (2, 'Moderators', 'Moderator', 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0), (3, 'Guests', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 60, 30, 0, 0), (4, 'Members', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 60, 30, 60, 60); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]online` -- CREATE TABLE `[[dbprefix]]online` ( `user_id` int(10) unsigned NOT NULL DEFAULT '1', `ident` varchar(200) NOT NULL DEFAULT '', `logged` int(10) unsigned NOT NULL DEFAULT '0', `idle` tinyint(1) NOT NULL DEFAULT '0', `last_post` int(10) unsigned DEFAULT NULL, `last_search` int(10) unsigned DEFAULT NULL, UNIQUE KEY `[[dbprefix]]online_user_id_ident_idx` (`user_id`,`ident`(25)), KEY `[[dbprefix]]online_ident_idx` (`ident`(25)), KEY `[[dbprefix]]online_logged_idx` (`logged`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]posts` -- CREATE TABLE `[[dbprefix]]posts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `poster` varchar(200) NOT NULL DEFAULT '', `poster_id` int(10) unsigned NOT NULL DEFAULT '1', `poster_ip` varchar(39) DEFAULT NULL, `poster_email` varchar(80) DEFAULT NULL, `message` mediumtext, `hide_smilies` tinyint(1) NOT NULL DEFAULT '0', `posted` int(10) unsigned NOT NULL DEFAULT '0', `edited` int(10) unsigned DEFAULT NULL, `edited_by` varchar(200) DEFAULT NULL, `topic_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `[[dbprefix]]posts_topic_id_idx` (`topic_id`), KEY `[[dbprefix]]posts_multi_idx` (`poster_id`,`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]posts` -- INSERT INTO `[[dbprefix]]posts` VALUES (1, '[[admin_username]]', 2, '[[clientip]]', NULL, 'If you are looking at this (which I guess you are), the install of FluxBB appears to have worked! Now log in and head over to the administration control panel to configure your forum.', 0, [[timestamp]], NULL, NULL, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]reports` -- CREATE TABLE `[[dbprefix]]reports` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `post_id` int(10) unsigned NOT NULL DEFAULT '0', `topic_id` int(10) unsigned NOT NULL DEFAULT '0', `forum_id` int(10) unsigned NOT NULL DEFAULT '0', `reported_by` int(10) unsigned NOT NULL DEFAULT '0', `created` int(10) unsigned NOT NULL DEFAULT '0', `message` text, `zapped` int(10) unsigned DEFAULT NULL, `zapped_by` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `[[dbprefix]]reports_zapped_idx` (`zapped`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]search_cache` -- CREATE TABLE `[[dbprefix]]search_cache` ( `id` int(10) unsigned NOT NULL DEFAULT '0', `ident` varchar(200) NOT NULL DEFAULT '', `search_data` mediumtext, PRIMARY KEY (`id`), KEY `[[dbprefix]]search_cache_ident_idx` (`ident`(8)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]search_matches` -- CREATE TABLE `[[dbprefix]]search_matches` ( `post_id` int(10) unsigned NOT NULL DEFAULT '0', `word_id` int(10) unsigned NOT NULL DEFAULT '0', `subject_match` tinyint(1) NOT NULL DEFAULT '0', KEY `[[dbprefix]]search_matches_word_id_idx` (`word_id`), KEY `[[dbprefix]]search_matches_post_id_idx` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]search_matches` -- INSERT INTO `[[dbprefix]]search_matches` VALUES (1, 1, 0), (1, 2, 0), (1, 3, 0), (1, 4, 0), (1, 5, 0), (1, 6, 0), (1, 7, 0), (1, 8, 0), (1, 9, 0), (1, 10, 0), (1, 11, 0), (1, 12, 0), (1, 13, 0), (1, 14, 1), (1, 15, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]search_words` -- CREATE TABLE `[[dbprefix]]search_words` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `word` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', PRIMARY KEY (`word`), KEY `[[dbprefix]]search_words_id_idx` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ; -- -- Dumping data for table `[[dbprefix]]search_words` -- INSERT INTO `[[dbprefix]]search_words` VALUES (1, 'looking'), (2, 'guess'), (3, 'install'), (4, 'fluxbb'), (5, 'appears'), (6, 'worked'), (7, 'log'), (8, 'head'), (9, 'administration'), (10, 'control'), (11, 'panel'), (12, 'configure'), (13, 'forum'), (14, 'test'), (15, 'topic'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]topics` -- CREATE TABLE `[[dbprefix]]topics` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `poster` varchar(200) NOT NULL DEFAULT '', `subject` varchar(255) NOT NULL DEFAULT '', `posted` int(10) unsigned NOT NULL DEFAULT '0', `first_post_id` int(10) unsigned NOT NULL DEFAULT '0', `last_post` int(10) unsigned NOT NULL DEFAULT '0', `last_post_id` int(10) unsigned NOT NULL DEFAULT '0', `last_poster` varchar(200) DEFAULT NULL, `num_views` mediumint(8) unsigned NOT NULL DEFAULT '0', `num_replies` mediumint(8) unsigned NOT NULL DEFAULT '0', `closed` tinyint(1) NOT NULL DEFAULT '0', `sticky` tinyint(1) NOT NULL DEFAULT '0', `moved_to` int(10) unsigned DEFAULT NULL, `forum_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `[[dbprefix]]topics_forum_id_idx` (`forum_id`), KEY `[[dbprefix]]topics_moved_to_idx` (`moved_to`), KEY `[[dbprefix]]topics_last_post_idx` (`last_post`), KEY `[[dbprefix]]topics_first_post_id_idx` (`first_post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]topics` -- INSERT INTO `[[dbprefix]]topics` VALUES (1, '[[admin_username]]', 'Test topic', [[timestamp]], 1, [[timestamp]], 1, '[[admin_username]]', 0, 0, 0, 0, NULL, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]topic_subscriptions` -- CREATE TABLE `[[dbprefix]]topic_subscriptions` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `topic_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`user_id`,`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]users` -- CREATE TABLE `[[dbprefix]]users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `group_id` int(10) unsigned NOT NULL DEFAULT '3', `username` varchar(200) NOT NULL DEFAULT '', `password` varchar(40) NOT NULL DEFAULT '', `email` varchar(80) NOT NULL DEFAULT '', `title` varchar(50) DEFAULT NULL, `realname` varchar(40) DEFAULT NULL, `url` varchar(100) DEFAULT NULL, `jabber` varchar(80) DEFAULT NULL, `icq` varchar(12) DEFAULT NULL, `msn` varchar(80) DEFAULT NULL, `aim` varchar(30) DEFAULT NULL, `yahoo` varchar(30) DEFAULT NULL, `location` varchar(30) DEFAULT NULL, `signature` text, `disp_topics` tinyint(3) unsigned DEFAULT NULL, `disp_posts` tinyint(3) unsigned DEFAULT NULL, `email_setting` tinyint(1) NOT NULL DEFAULT '1', `notify_with_post` tinyint(1) NOT NULL DEFAULT '0', `auto_notify` tinyint(1) NOT NULL DEFAULT '0', `show_smilies` tinyint(1) NOT NULL DEFAULT '1', `show_img` tinyint(1) NOT NULL DEFAULT '1', `show_img_sig` tinyint(1) NOT NULL DEFAULT '1', `show_avatars` tinyint(1) NOT NULL DEFAULT '1', `show_sig` tinyint(1) NOT NULL DEFAULT '1', `timezone` float NOT NULL DEFAULT '0', `dst` tinyint(1) NOT NULL DEFAULT '0', `time_format` tinyint(1) NOT NULL DEFAULT '0', `date_format` tinyint(1) NOT NULL DEFAULT '0', `language` varchar(25) NOT NULL DEFAULT 'English', `style` varchar(25) NOT NULL DEFAULT 'Air', `num_posts` int(10) unsigned NOT NULL DEFAULT '0', `last_post` int(10) unsigned DEFAULT NULL, `last_search` int(10) unsigned DEFAULT NULL, `last_email_sent` int(10) unsigned DEFAULT NULL, `last_report_sent` int(10) unsigned DEFAULT NULL, `registered` int(10) unsigned NOT NULL DEFAULT '0', `registration_ip` varchar(39) NOT NULL DEFAULT '0.0.0.0', `last_visit` int(10) unsigned NOT NULL DEFAULT '0', `admin_note` varchar(30) DEFAULT NULL, `activate_string` varchar(80) DEFAULT NULL, `activate_key` varchar(8) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `[[dbprefix]]users_username_idx` (`username`(25)), KEY `[[dbprefix]]users_registered_idx` (`registered`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]users` -- INSERT INTO `[[dbprefix]]users` VALUES (1, 3, 'Guest', 'Guest', 'Guest', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 'English', 'Air', 0, NULL, NULL, NULL, NULL, 0, '0.0.0.0', 0, NULL, NULL, NULL), (2, 1, '[[admin_username]]', '[[admin_pass]]', '[[admin_email]]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, '[[language]]', 'Air', 1, [[timestamp]], NULL, NULL, NULL, [[timestamp]], '[[clientip]]', [[timestamp]], NULL, NULL, NULL); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;