https://www.icyphoenix.com/viewtopic.php?f=2&t=10186&p=62221#p62221 ----------------------------------- mort Sun 31 May, 2020 04:12 An Error Has Occurred During Installation The PHP Configuration On Your Server Doesn't Support The Database Type That Yo ----------------------------------- An error has occurred during installation The PHP configuration on your server doesn't support the database type that you chose Ok, Fella's How to overcome this during installing the latest version? xampp Widows 10 - 64 bit Config. [code linenumbers=false] [/code] pdo_class_lib.php [code linenumbers=false] false, // important! use actual prepared statements (default: emulate prepared statements) PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, // throw exceptions on errors (default: stay silent) PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC // fetch associative arrays (default: mixed arrays) ); $database = new PDO('mysql:host='.$dbhost.';dbname='.$dbname.';charset=utf8', ''.$dbuser.'', ''.$dbpass.'', $db_options); // important! specify the character encoding in the DSN string, don't use SET NAMES ?>[/code] Typical Request. [code linenumbers=false]prepare("UPDATE " . CONFIG_TABLE . " SET ads_1=?, ads_2=?, ads_3=?, ads_4=?, ads_5=?, header_adv=?, footer_adv=?, games_top_adv=?, games_bot_adv=?"); $stmt->execute(array($ads_1, $ads_2, $ads_3, $ads_4, $ads_5, $header_adv, $footer_adv, $games_top_adv, $games_bot_adv)); echo ''.ADM_THL.''.$lang['general_message'].''.ADM_THC.'
'.$lang['ads_updated'].''.GO_BACK.'
'.ADM_THB.''; return; } $ads_1 = htmlEsc(stripslashes($ads_1)); $ads_2 = htmlEsc(stripslashes($ads_2)); $ads_3 = htmlEsc(stripslashes($ads_3)); $ads_4 = htmlEsc(stripslashes($ads_4)); $ads_5 = htmlEsc(stripslashes($ads_5)); $header_adv = htmlEsc(stripslashes($header_adv)); $footer_adv = htmlEsc(stripslashes($footer_adv)); $games_top_adv = htmlEsc(stripslashes($games_top_adv)); $games_bot_adv = htmlEsc(stripslashes($games_bot_adv)); global $db, $ads_01, $ads_02, $ads_03, $ads_04, $ads_05, $ads_06, $ads_07, $ads_08, $ads_09, $ads_10, $header_adv0, $header_adv1, $footer_adv0, $footer_adv1, $games_top_adv0, $games_top_adv1, $games_bot_adv0, $games_bot_adv1; if($ads_1 == "0") {$ads_02 = 'selected="selected"';}; if($ads_1 == "1") {$ads_01 = 'selected="selected"';}; if($ads_2 == "0") {$ads_04 = 'selected="selected"';}; if($ads_2 == "1") {$ads_03 = 'selected="selected"';}; if($ads_3 == "0") {$ads_06 = 'selected="selected"';}; if($ads_3 == "1") {$ads_05 = 'selected="selected"';}; if($ads_4 == "0") {$ads_08 = 'selected="selected"';}; if($ads_4 == "1") {$ads_07 = 'selected="selected"';}; if($ads_5 == "0") {$ads_10 = 'selected="selected"';}; if($ads_5 == "1") {$ads_9 = 'selected="selected"';}; if($header_adv == "0") {$header_adv0 = 'selected="selected"';}; if($header_adv == "1") {$header_adv1 = 'selected="selected"';}; if($footer_adv == "0") {$footer_adv0 = 'selected="selected"';}; if($footer_adv == "1") {$footer_adv1 = 'selected="selected"';}; if($games_top_adv == "0") {$games_top_adv0 = 'selected="selected"';}; if($games_top_adv == "1") {$games_top_adv1 = 'selected="selected"';}; if($games_bot_adv == "0") {$games_bot_adv0 = 'selected="selected"';}; if($games_bot_adv == "1") {$games_bot_adv1 = 'selected="selected"';}; echo ''.ADM_THL.''.$lang['manage_ads'].''.ADM_THC.'
'.$lang['ads_a'].'   »   '.$lang['activated'].'     '.$lang['latest_games'].'
'.$lang['ads_b'].'   »   '.$lang['activated'].'     '.$lang['mostplayed'].'
'.$lang['ads_c'].'   »   '.$lang['activated'].'     '.$lang['side_block_1'].'
'.$lang['ads_d'].'   »   '.$lang['activated'].'     '.$lang['side_block_2'].'
'.$lang['ads_e'].'   »   '.$lang['activated'].'     '.$lang['side_block_3'].'
'.$lang['head_space'].'   »   '.$lang['activated'].'  
'.$lang['foot_space'].'    »   '.$lang['activated'].'  
'.$lang['above_games'].'    »   '.$lang['activated'].'  
'.$lang['below_games'].'    »   '.$lang['activated'].'  

'.ADM_THB.'
'; ?>[/code]