Page 1 of 2

coming 1.9.9 improvements list

Posted: Mon Jul 22, 2019 7:23 am
by axew3
1) users check between phpBB and WordPress will add more options to control easier more aspects
2) iframe integration v4
3) plugin code cleanup/improvements

suggest something more and/or bugs to fix if you discover one

Re: coming 1.9.9 improvements list

Posted: Tue Aug 06, 2019 11:23 pm
by axew3
What if I only want all users to be subscribers, and only myself to me administrator in Wordpress?
An easy option for the transfer process (phpBB users to wordpress), and improvement of transfer processes.
Option to add phpBB users only into a specified group in wordpress, despite they are admin, moderators or something else in phpBB.

Re: coming 1.9.9 improvements list

Posted: Fri Sep 06, 2019 1:46 pm
by axew3
v4 iframe code: as on this online example actually run, you can see the scroll fire AFTER iframe loaded. It need to be completed with some more little adjustment. An easy smooth scroll has been applied to make the iframe navigation more comfortable.

Re: coming 1.9.9 improvements list

Posted: Thu Sep 12, 2019 2:18 pm
by axew3
Looking to fix any issue on the new v4 iframe code: the user selection/insert, used to add recipients on the message, throw javascript error

Code: Select all

SecurityError: Permission denied to access property "document" on cross-origin object forum_fn.js:264
    insertUser https://localhost/wp51/phpBB3/styles/prosilver/template/forum_fn.js?assets_version=4:264
    insert_single_user https://localhost/wp51/phpBB3/styles/prosilver/template/forum_fn.js?assets_version=4:286
    onclick Ember
SecurityError: Permission denied to access property "document" on cross-origin object forum_fn.js:264
to resolve the issue (and any other related simple_header.html inclusion) the unique possible, even if not comfortable way, is to add the following code into the simple_header.html file, may just before the closing </head> tag:

Code: Select all

<script>
document.domain = 'localhost'; // or your domain.com
</script>

Re: coming 1.9.9 improvements list

Posted: Thu Nov 28, 2019 11:55 pm
by axew3
viewtopic.php?f=2&t=1429
and this
viewtopic.php?f=2&t=1430

1.9.9 is coming! Sorry for the delay!

Re: coming 1.9.9 improvements list

Posted: Mon Dec 02, 2019 8:16 pm
by axew3
All is quite ready for the 1.9.9 release, it include fixes for all reported bugs until now:
1) Correctly connect to another database port if it is required in phpBB.
2) Add: display error message into plugin admin page, if (until) phpBB db connection fail, and set integration as NOT LINKED USERS in the while, to avoid configuration problems.
https://wordpress.org/support/topic/1-9-8-patches-log/

Security patch:
viewtopic.php?f=2&t=1432
add also random string length, 20 to 32 to increase security

Add shortcode w3allphpbbupm for user's forum PM: it will display a <div> element

Code: Select all

<div id="w3pm_id" class="w3pm_class"><a href="https://localhost/wp51/phpBB3/ucp.php?i=pm&amp;folder=inbox">You have 1 unread forum PM</a></div>
default shortcode attributes: target, id, class and style
see: https://www.axew3.com/w3/2019/12/shortc ... wordpress/

Add unique query into main verify_phpbb_credentials() to retrieve any phpBB user's Group permissions (become active only when mchat option active, since these kind of data are useful at moment only in this contest)

Code clean up all over ... coming very soon!