Page 4 of 4

Re: 2.5.0 WordPress phpBB integration has been released!

Posted: Fri Jan 21, 2022 8:06 pm
by axew3
2.5.1 released to fix:

Code: Select all

* Fix: function verify_phpbb_credentials() to correctly setup main connection config vars, so to correctly execute all subsequent main tasks into widgets etc
* Fix: check valid emails formats for frontend plugins, before being updated into WordPress
then as on queue it remain to fix languages files, the issue about if there are same attach names into post shortcode, forum rendering on page forum before others external libs may loaded, and ?
Thanks for yours reports :)

... it seem to me that it also really improved about speed execution!

Re: 2.5.0 WordPress phpBB integration has been released!

Posted: Fri Jan 21, 2022 8:35 pm
by floxshifu
Thank you for the speed to pull a fix :o :D

It works fine for me! And no speed problem to display the forum side. Really good job 8-)

Maybe, at least, create a language file to use it instead of translate .php files at each update of the plugin (for the frontend content only) ;)

Re: 2.5.0 WordPress phpBB integration has been released!

Posted: Fri Jan 21, 2022 8:51 pm
by axew3
just fixed one more, again into
class.wp.w3all-phpbb.php
that is really secondary Php error notice, when in debug mode, and phpBB database connection config values still have not added, into config admin page. It is just like to add this, after the code mentioned above, changed into 2.5.1:

so just after (on 2.5.1):

Code: Select all

          if(defined("W3PHPBBCONFIG")){
           $phpbb_config = W3PHPBBCONFIG;
          } else { $phpbb_config = self::w3all_get_phpbb_config(); }
it has been added:

Code: Select all

         if(!defined("W3PHPBBCONFIG")){ // may the connection db values have not still been set
           return;
          }
or just replace the file
https://plugins.trac.wordpress.org/expo ... -phpbb.php
into /wp-content/plugins/wp-w3all-phpbb-integration/ folder

but this was just a really secondary issue, happening in the above mentioned circumstance and leading to no problems