2.8.0 release logs and 2.7.9 bugs reports

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: 2.8.0 release logs and 2.7.9 bugs reports

Re: 2.8.0 release logs and 2.7.9 bugs reports

by ale » Wed Mar 06, 2024 11:23 am

I noted an error that i have been not able to reproduce after anymore thrown calling the logout function in conjunction with the polugin All In One WP Security, not coming out anymore after the All In One WP Security plugin has been updated or at least it do not occur to me anymore:
anyway i think for compatibility with any kind of configuration with all external plugins,
into function

Code: Select all

private static function w3all_wp_logout($redirect = ''){
file /wp-content/plugins/wp-w3all-phpbb-integration/class.wp.w3all-phpbb.php
would be better to replace this line of code:

Code: Select all

wp_logout();
with this instead:

Code: Select all

       clean_user_cache(get_current_user_id());
       wp_destroy_current_session();
       wp_clear_auth_cookie();
       wp_set_current_user(0);

2.8.0 release logs and 2.7.9 bugs reports

by axew3 » Mon Mar 04, 2024 12:46 pm

On 2.8.0:

All about profile fields in phpBB has been coded to be shorter and to fit any phpBB possible configuration. It will not be anymore a problem, if there are custom or modified phpBB profile fields, queries about the profile fields update (that for what concern the default WP user's profile fields is only about the user's site URL) will works fine into any phpBB, also custom, configuration.
The code as is can be easily modified by any Php developer, to fit updates of any profile field between phpBB and any WP plugin (but as said at moment and for what concerns WP default, it only consider the profile site URL field).

All queries about user's updates have been reviewed and fixed.

Remove unwanted pieces of code and fix some little discrepancy.

Please report any possible bug, 2.8.0 is on the way to be released very soon!

Top