Code: Alles auswählen
# Check Downloads Table phpbb_downloads
# CREATE TABLE phpbb_downloads ( id INT(11) auto_increment NOT NULL, description VARCHAR(255) DEFAULT '', file_name VARCHAR(255) DEFAULT '', klicks INT(11) DEFAULT '0', free TINYINT(1) DEFAULT '0', extern TINYINT(1) DEFAULT '0', long_desc TEXT DEFAULT '', sort INT(11) DEFAULT '0', cat INT(11) DEFAULT '0', hacklist TINYINT(1) DEFAULT '0', hack_author VARCHAR(255) DEFAULT '', hack_author_email VARCHAR(255) DEFAULT '', hack_author_website TINYTEXT DEFAULT '', hack_version VARCHAR(32) DEFAULT '', hack_dl_url TINYTEXT DEFAULT '', test varchar(50) DEFAULT '', req TEXT DEFAULT '', todo TEXT DEFAULT '', warning TEXT DEFAULT '', mod_desc TEXT DEFAULT '', bbcode_uid VARCHAR(10) DEFAULT '', mod_list TINYINT(1) DEFAULT '0', file_size BIGINT(20) NOT NULL DEFAULT '0', change_time INT(11) DEFAULT '0', add_time INT(11) DEFAULT '0', rating SMALLINT(5) DEFAULT '0' NOT NULL, file_traffic BIGINT(20) NOT NULL DEFAULT '0', overall_klicks INT(11) DEFAULT '0', approve TINYINT(1) DEFAULT '0', add_user MEDIUMINT(8) DEFAULT '0', change_user MEDIUMINT(8) DEFAULT '0', last_time INT(11) DEFAULT '0', down_user MEDIUMINT(8) DEFAULT '0' NOT NULL, thumbnail VARCHAR(255) DEFAULT '' NOT NULL, broken TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (id))
+++ Failed: Table 'phpbb_downloads' already exists
# UPDATE phpbb_downloads SET change_time = 1236109051, add_time = 1236109051, add_user = 5, change_user = 5
+++ Time on phpbb_downloads updated
+++ successfull
# Check Categories Table phpbb_downloads_cat
# CREATE TABLE phpbb_downloads_cat ( id INT(11) auto_increment NOT NULL, parent INT(11) DEFAULT '0', path VARCHAR(255) DEFAULT '', cat_name VARCHAR(255) DEFAULT '', sort INT(11) DEFAULT '0', description TEXT DEFAULT '', rules TEXT DEFAULT '', bbcode_uid VARCHAR(10) DEFAULT '', auth_view TINYINT(1) DEFAULT '1' NOT NULL, auth_dl TINYINT(1) DEFAULT '1' NOT NULL, auth_up TINYINT(1) DEFAULT '0' NOT NULL, auth_mod TINYINT(1) DEFAULT '0' NOT NULL, must_approve TINYINT(1) DEFAULT '0' NOT NULL, allow_mod_desc TINYINT(1) DEFAULT '0' NOT NULL, statistics TINYINT(1) DEFAULT '1' NOT NULL, stats_prune MEDIUMINT(8) DEFAULT '0' NOT NULL, comments TINYINT(1) DEFAULT '1' NOT NULL, cat_traffic BIGINT(20) DEFAULT '0' NOT NULL, cat_traffic_use BIGINT(20) DEFAULT '0' NOT NULL, allow_thumbs TINYINT(1) DEFAULT '0' NOT NULL, auth_cread TINYINT(1) NOT NULL DEFAULT '0', auth_cpost TINYINT(1) NOT NULL DEFAULT '1', approve_comments TINYINT(1) NOT NULL DEFAULT '1', bug_tracker TINYINT(1) NOT NULL DEFAULT '0', PRIMARY KEY (id))
+++ Failed: Table 'phpbb_downloads_cat' already exists
+++ successfull
# Check Permissions Table phpbb_dl_auth
# CREATE TABLE phpbb_dl_auth ( cat_id INT(11) NOT NULL, group_id INT(11) NOT NULL, auth_view TINYINT(1) DEFAULT '1' NOT NULL, auth_dl TINYINT(1) DEFAULT '1' NOT NULL, auth_up TINYINT(1) DEFAULT '1' NOT NULL, auth_mod TINYINT(1) DEFAULT '0' NOT NULL)
+++ Failed: Table 'phpbb_dl_auth' already exists
+++ successfull
# Check Comments Table phpbb_dl_comments
# CREATE TABLE phpbb_dl_comments ( dl_id bigint(20) unsigned auto_increment NOT NULL, id int(11) NOT NULL default '0', cat_id int(11) NOT NULL default '0', user_id mediumint(8) NOT NULL default '0', username varchar(32) NOT NULL default '', comment_time int(11) NOT NULL default '0', comment_edit_time int(11) NOT NULL default '0', comment_text text NOT NULL default '', bbcode_uid varchar(10) NOT NULL default '', approve tinyint(1) NOT NULL default '0', PRIMARY KEY (dl_id))
+++ Failed: Table 'phpbb_dl_comments' already exists
+++ successfull
# Check Rating Table phpbb_dl_ratings
# CREATE TABLE phpbb_dl_ratings ( dl_id INT(11) DEFAULT '0', user_id MEDIUMINT(8) DEFAULT '0', rate_point VARCHAR(10) DEFAULT '0')
+++ Failed: Table 'phpbb_dl_ratings' already exists
+++ successfull
# Check Statistics Table phpbb_dl_stats
# CREATE TABLE phpbb_dl_stats ( dl_id bigint(20) unsigned auto_increment NOT NULL, id int(11) NOT NULL default '0', cat_id int(11) NOT NULL default '0', user_id mediumint(8) NOT NULL default '0', username varchar(32) NOT NULL default '', traffic bigint(20) NOT NULL default '0', direction tinyint(1) NOT NULL default '0', user_ip varchar(8) NOT NULL default '', browser varchar(20) NOT NULL default '', time_stamp int(11) NOT NULL default '0', PRIMARY KEY (dl_id))
+++ Failed: Table 'phpbb_dl_stats' already exists
+++ successfull
# Check Configuration Table phpbb_dl_config
# CREATE TABLE phpbb_dl_config ( config_name VARCHAR(255) NOT NULL default '', config_value VARCHAR(255) NOT NULL default '', PRIMARY KEY (config_name))
+++ Failed: Table 'phpbb_dl_config' already exists
+++ successfull
# Check No Traffic Table phpbb_dl_notraf
# CREATE TABLE phpbb_dl_notraf ( user_id MEDIUMINT(8) NOT NULL DEFAULT 0, dl_id INT(11) NOT NULL DEFAULT 0 )
+++ Table phpbb_dl_notraf created
+++ successfull
# Check Hotlink Table phpbb_dl_hotlink
# CREATE TABLE phpbb_dl_hotlink ( user_id MEDIUMINT(8) NOT NULL DEFAULT 0, session_id VARCHAR(32) NOT NULL DEFAULT '', hotlink_id VARCHAR(32) NOT NULL DEFAULT '', code VARCHAR(5) NOT NULL DEFAULT '' )
+++ Table phpbb_dl_hotlink created
+++ successfull
# Check File Extention Blacklist Table phpbb_dl_ext_blacklist
# CREATE TABLE phpbb_dl_ext_blacklist ( extention VARCHAR(10) DEFAULT '' NOT NULL )
+++ Table phpbb_dl_ext_blacklist created
+++ successfull
# Check Downloads Table phpbb_dl_banlist
# CREATE TABLE phpbb_dl_banlist ( ban_id INT(11) AUTO_INCREMENT NOT NULL, user_id MEDIUMINT(8) DEFAULT 0 NOT NULL, user_ip CHAR(8) DEFAULT '' NOT NULL, user_agent VARCHAR(50) DEFAULT '' NOT NULL, username VARCHAR(25) DEFAULT '' NOT NULL, guests TINYINT(1) DEFAULT 0 NOT NULL, PRIMARY KEY (ban_id))
+++ Table phpbb_dl_banlist created
# INSERT INTO phpbb_dl_banlist (user_agent) VALUES ('n/a')
+++ Insert default ban value into phpbb_dl_banlist
+++ successfull
# Check Downloads Table phpbb_dl_favorites
# CREATE TABLE phpbb_dl_favorites ( fav_id INT(11) AUTO_INCREMENT NOT NULL, fav_dl_id INT(11) DEFAULT 0 NOT NULL, fav_dl_cat INT(11) DEFAULT 0 NOT NULL, fav_user_id MEDIUMINT(8) DEFAULT 0 NOT NULL, PRIMARY KEY (fav_id))
+++ Table phpbb_dl_favorites created
+++ successfull
# Check Downloads Table phpbb_dl_bug_tracker
# CREATE TABLE phpbb_dl_bug_tracker ( report_id INT(11) AUTO_INCREMENT NOT NULL, df_id INT(11) NOT NULL DEFAULT '0', report_title VARCHAR(255) DEFAULT '', report_text TEXT, report_uid VARCHAR(10) DEFAULT '', report_file_ver VARCHAR(50) DEFAULT '', report_date INT(11) DEFAULT '0', report_author_id MEDIUMINT(8) DEFAULT 0 NOT NULL, report_assign_id MEDIUMINT(8) DEFAULT 0 NOT NULL, report_assign_date INT(11) DEFAULT '0', report_status TINYINT(1) DEFAULT '0' NOT NULL, report_status_date INT(11) DEFAULT '0', report_php VARCHAR(50) DEFAULT '', report_db VARCHAR(50) DEFAULT '', report_forum VARCHAR(50) DEFAULT '', PRIMARY KEY (report_id))
+++ Table phpbb_dl_bug_tracker created
+++ successfull
# Check Downloads Table phpbb_dl_bug_history
# CREATE TABLE phpbb_dl_bug_history ( report_his_id INT(11) AUTO_INCREMENT NOT NULL, df_id INT(11) NOT NULL DEFAULT '0', report_id INT(11) NOT NULL, report_his_type VARCHAR(10) DEFAULT '', report_his_date INT(11) DEFAULT '0', report_his_value VARCHAR(255), PRIMARY KEY (report_his_id) )
+++ Table phpbb_dl_bug_history created
+++ successfull
# Insert/Convert Configuration Values on Table phpbb_dl_config
# Alter Groups Table phpbb_groups
# Alter User Table phpbb_users
# Prepare file extention blacklist basic values
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_click_reset_time', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_click_reset_time'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_edit_time', '3')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_edit_time'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_links_per_page', '10')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_links_per_page'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_new_time', '3')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_new_time'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_posts', '25')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_posts'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('download_dir', 'downloads/')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'download_dir'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('enable_post_dl_traffic', '1')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'enable_post_dl_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('newtopic_traffic', '524288')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'newtopic_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('recent_downloads', '10')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'recent_downloads'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('reply_traffic', '262144')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'reply_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('user_dl_auto_traffic', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'user_dl_auto_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('overall_traffic', '104857600')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'overall_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('remain_traffic', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'remain_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('traffic_retime', '1236109051')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'traffic_retime'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('stop_uploads', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'stop_uploads'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('upload_traffic_count', '1')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'upload_traffic_count'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('physical_quota', '524288000')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'physical_quota'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('delay_auto_traffic', '30')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'delay_auto_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('delay_post_traffic', '30')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'delay_post_traffic'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('disable_popup', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'disable_popup'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('disable_email', '1')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'disable_email'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('guest_stats_show', '1')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'guest_stats_show'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_method', '2')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_method'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_method_quota', '2097152')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_method_quota'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_stats_perm', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_stats_perm'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_mod_version', '5.3.2')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'dl_mod_version'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('use_hacklist', '1')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'use_hacklist'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('thumb_xsize', '200')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'thumb_xsize'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('thumb_ysize', '150')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'thumb_ysize'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('thumb_fsize', '0')
+++ Field/Value already up to date
# DELETE FROM phpbb_config WHERE config_name = 'thumb_fsize'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('show_footer_legend', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'show_footer_legend'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('show_footer_stat', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'show_footer_stat'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('limit_desc_on_index', '0')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'limit_desc_on_index'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('use_ext_blacklist', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'use_ext_blacklist'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('disable_popup_notify', '0')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'disable_popup_notify'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('show_real_filetime', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'show_real_filetime'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('report_broken', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'report_broken'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('user_traffic_once', '0')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'user_traffic_once'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('prevent_hotlink', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'prevent_hotlink'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('hotlink_action', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'hotlink_action'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('report_broken_lock', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'report_broken_lock'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('report_broken_message', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'report_broken_message'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('report_broken_vc', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'report_broken_vc'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('download_vc', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'download_vc'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('edit_own_downloads', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'edit_own_downloads'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('shorten_extern_links', '10')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'shorten_extern_links'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('icon_free_for_reg', '0')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'icon_free_for_reg'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('latest_comments', '1')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'latest_comments'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('sort_preform', '0')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'sort_preform'
+++ successfull
# INSERT INTO phpbb_dl_config (config_name, config_value) VALUES ('dl_direct', '0')
+++ successfull
# DELETE FROM phpbb_config WHERE config_name = 'dl_direct'
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('asp')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('cgi')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('dhtm')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('dhtml')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('exe')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('htm')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('html')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('jar')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('js')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('php')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('php3')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('pl')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('sh')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('shtm')
+++ successfull
# INSERT INTO phpbb_dl_ext_blacklist (extention) VALUES ('shtml')
+++ successfull
# DELETE FROM phpbb_dl_config WHERE config_name='user_dl_permission'
+++ successfull
# ALTER TABLE phpbb_groups ADD COLUMN group_dl_auto_traffic BIGINT(20) DEFAULT '0' NOT NULL
+++ Field/Value already up to date
# ALTER TABLE phpbb_groups DROP COLUMN group_dl_permission
+++ Field/Value already up to date
# ALTER TABLE phpbb_users ADD COLUMN user_allow_new_download_email TINYINT(1) DEFAULT '0' NOT NULL
+++ Field/Value already up to date
# ALTER TABLE phpbb_users ADD COLUMN user_allow_fav_download_email TINYINT(1) DEFAULT '1' NOT NULL
+++ successfull
# ALTER TABLE phpbb_users ADD COLUMN user_allow_new_download_popup TINYINT(1) DEFAULT '1' NOT NULL
+++ Field/Value already up to date
# ALTER TABLE phpbb_users ADD COLUMN user_allow_fav_download_popup TINYINT(1) DEFAULT '1' NOT NULL
+++ successfull
# ALTER TABLE phpbb_users ADD COLUMN user_dl_update_time INT( 11 ) DEFAULT '0' NOT NULL
+++ Field/Value already up to date
# ALTER TABLE phpbb_users ADD COLUMN user_new_download TINYINT(1) DEFAULT '0' NOT NULL
+++ Field/Value already up to date
# ALTER TABLE phpbb_users ADD COLUMN user_traffic BIGINT(20) DEFAULT '0' NOT NULL
+++ Field/Value already up to date
# ALTER TABLE phpbb_users ADD COLUMN user_dl_note_type TINYINT(1) DEFAULT '1' NOT NULL
+++ successfull
# ALTER TABLE phpbb_users ADD COLUMN user_dl_sort_fix TINYINT(1) DEFAULT '0' NOT NULL
+++ successfull
# ALTER TABLE phpbb_users ADD COLUMN user_dl_sort_opt TINYINT(1) DEFAULT '0' NOT NULL
+++ successfull
# ALTER TABLE phpbb_users ADD COLUMN user_dl_sort_dir TINYINT(1) DEFAULT '0' NOT NULL
+++ successfull
# Convert Download Clicks to Overall Clicks
+++ successfull
Database Update now complete!
dann habe ich nochmal die tabellen exportiert und importiert die konvertierung gemacht und es funktioniert einfach nicht