phpBB version 4 is on the way:
https://area51.phpbb.com/downloads/
this post is just to let you know that the integration code will so tested for compatibilities whenever someone like to test it also maybe integrated.
phpBB 4 database changes:
the
avatar_path
config_value
has been removed on phpBB4 so it require to be removed into the
Code: Select all
private static function w3all_get_phpbb_config(){class.wp.w3all-phpbb.php
since it is NOT used at all into the plugin code, it can be easily removed to accomplish with phpBB4 compatibility.
so that this
Code: Select all
$res = array( 'allow_autologin' => $a[0]->config_value,
'avatar_gallery_path' => $a[1]->config_value,
'avatar_path' => $a[2]->config_value,
'avatar_salt' => $a[3]->config_value,
'cookie_domain' => $a[4]->config_value,
'cookie_name' => $a[5]->config_value,
'default_dateformat' => $a[6]->config_value,
'default_lang' => $a[7]->config_value,
'load_online_time' => $a[8]->config_value,
'max_autologin_time' => $a[9]->config_value,
'newest_user_id' => $a[10]->config_value,
'newest_username' => $a[11]->config_value,
'num_posts' => $a[12]->config_value,
'num_topics' => $a[13]->config_value,
'num_users' => $a[14]->config_value,
'rand_seed' => $a[15]->config_value,
'rand_seed_last_update' => $a[16]->config_value,
'record_online_users' => $a[17]->config_value,
'script_path' => $a[18]->config_value,
'session_length' => $a[19]->config_value,
'version' => $a[20]->config_value
);Code: Select all
$res = array( 'allow_autologin' => $a[0]->config_value,
'avatar_gallery_path' => $a[1]->config_value,
#'avatar_path' => $a[2]->config_value,
'avatar_salt' => $a[2]->config_value,
'cookie_domain' => $a[3]->config_value,
'cookie_name' => $a[4]->config_value,
'default_dateformat' => $a[5]->config_value,
'default_lang' => $a[6]->config_value,
'load_online_time' => $a[7]->config_value,
'max_autologin_time' => $a[8]->config_value,
'newest_user_id' => $a[9]->config_value,
'newest_username' => $a[10]->config_value,
'num_posts' => $a[11]->config_value,
'num_topics' => $a[12]->config_value,
'num_users' => $a[13]->config_value,
'rand_seed' => $a[14]->config_value,
'rand_seed_last_update' => $a[15]->config_value,
'record_online_users' => $a[16]->config_value,
'script_path' => $a[17]->config_value,
'session_length' => $a[18]->config_value,
'version' => $a[19]->config_value
);