Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

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: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

Re: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

by axew3 » Wed Mar 16, 2022 5:02 pm

ok, going to fix all on coming very very soon 2.6.0, thank for report!

ps there are also functions that scare me now looking on code, fixing step by step along the time, in the while it is important that works

Re: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

by bluefrontier » Wed Mar 16, 2022 2:45 pm

Some PHP files have closing tags with white space after them which is causing some errors.

It is recommended to omit the closing PHP tag.
If a file contains only PHP code, it is preferable to omit the PHP closing tag at the end of the file. This prevents accidental whitespace or new lines being added after the PHP closing tag, which may cause unwanted effects because PHP will start output buffering when there is no intention from the programmer to send any output at that point in the script.
https://www.php.net/manual/en/language. ... hptags.php

Re: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

by axew3 » Sat Mar 05, 2022 11:13 pm

:) enjoy the stable 2.5.9

Code: Select all

= 2.5.9 =
*Release Date - 5 Mar, 2022*

* Fix: fix option "Disable existence check of the email in phpBB before it is updated in WordPress"
* Fix: fix wp_w3all.php and admin/config.php to correctly manage the last added phpbb_iframe_short_pages shortcode option
* Fix: [w3allphpbbiframe] shortcode under several aspects and add 2 new params: check it here https://www.axew3.com/w3/2022/02/the-awesome-iframe-template-integration-using-shortcode/ 
* Fix: the js overall_footer.html code and page-forum code have been updated to fix some secondary but important bug https://www.axew3.com/w3/2020/01/phpbb-wordpress-template-integration-iframe-v5/
* Fix: minor code fixes and hints. See some logs here: https://www.axew3.com/w3/forums/viewtopic.php?f=2&t=1708
the 2.6.0> show is coming!
viewtopic.php?f=2&t=1715

Re: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

by axew3 » Sat Mar 05, 2022 2:34 pm

2.5.9 will be released presumably today!
Two new params have been added into the awesome iframe shortcode and (i think) all possible bugs fixed (also hints have all been updated to be easier and precise)
https://www.axew3.com/w3/2022/02/the-aw ... shortcode/

Re: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

by axew3 » Sat Mar 05, 2022 10:30 am

for NOT LINKED USERS MODE
this line into page forum:

Code: Select all

  if(defined("WPW3ALL_NOT_ULINKED")) { $phpBBuid2 = 0; } // switch to be like it is uid2, so to avoid the reload of the page 
is wrong, lead to a loop in certain conditions
it need to be

Code: Select all

  if(defined("WPW3ALL_NOT_ULINKED")) { $phpBBuid2 = 2; } // switch to be like it is uid2, so to avoid the reload of the page
so it will be fixed both into page-forum and, for shortcode, into /views/wp_w3all_phpbb_iframe_short.php

Re: Coming WordPress phpBB 2.5.9 and 2.5.8 report bugs

by axew3 » Sat Mar 05, 2022 9:45 am

Fixing under any aspect the last iframe shortcode, adding this easy concept to manage and detect if we are or not into WP home page (note how it has been resolved the issue to detect in Wordpress, if we are or not into the home page):
viewtopic.php?f=10&p=5608#p5608
i realize this instead:
and if we do not want an user be able to add the shortcode?
Let say we have roles in WP that allows to several groups to add new posts and pages into wordpress, what about if an user go to add our [w3allphpbbiframe] shortcode?
We could want to allow this only to certain groups.
*How to fix this easily?

2.5.9 will fix 4 aspects:
1) improve the correct detection, if the page we are on, is or not the homepage (and avoid always the url push into home: if it is needed the forum with pushed urls into homepage, then use page-forum instead, setting it as homepage page)
2) add param url_push that will allow for each shortcode to decide if, when links clicked into iframe, these will be pushed or not into browser (not sure if this explain is clear to all, presented like this, sorry, hope yes)
3) * add param option security_token security code for the shortcode: if the shortcode will contain the param with correct value, the shortcode will be parsed, if not, the shortcode will be not parsed. So that admins/owners site, will be sure that only certain groups will have the capability to add this shortcode, or only who know the required token.
4) ever detect if we are in template customize display or admin pages, and avoid shortcode execution in these cases
Stay cool lovely people, 2.5.9 is coming

Top