Page 1 of 2

Next iframe V6 fixes reminder list

Posted: Tue Sep 22, 2020 1:46 pm
by axew3
List of things to do for the V6 (or to update actual V5) iframe code:

Modal window: problem
When clicking into any of the links on post that goes to open the modal popup (like close post etc), the modal popup, open on top of phpBB.
If you are on bottom of the page and the height of the page is more of a certain value, you do not see the popup, that appear on the top, and you have to scroll the page up to see the modal popup. I know my explain is the worst in the world, perhaps an image sent to me may make it more clear the concept of this known problem:

http://prntscr.com/ulsid7
It is already resolved on V5 code (that i forgot)

Improve scroll behavior and preloader
...
Review/rewrite mchat js integration code


please add in reply any problem you would like to see resolved or that you note is still causing some problem on iframe mode

Re: Next iframe V6 fixes reminder list

Posted: Thu Sep 24, 2020 4:22 am
by DjPorkchop73
The only thing I am really having issues with in the current version is when I login on my website and here on yours as well, I do get brute force kicked to my WP install login page and I have to login via wordpress as the security is setup to do. This happens if I check the Remember Me box before I login. If I do not try to Remember Me, I never get Brute Forced back to Account Locked Status. Just a observation I have made.

Re: Next iframe V6 fixes reminder list

Posted: Thu Sep 24, 2020 10:07 am
by axew3
Thank for your report, i will be over for 2.4.0 setup very soon and i will check all about this aspect

Re: Next iframe V6 fixes reminder list

Posted: Sat Oct 10, 2020 3:17 pm
by axew3
There is bug i've find.
It this: when click done into an attachment on posts to download it, then you reload page, the iframe fail on resize ...
well it do not fail on resize, it will attempt to download the file again, that lead to an unwanted result.

to fix, this:

Code: Select all

// # short links?
if ( href.charAt(0) == '#' ){
will be switched to this:

Code: Select all

// # short links? download links?
if ( href.charAt(0) == '#' || href.indexOf('\./download\/file\.php') > -1 ){
 return;
}
the v5 iframe code overall_footer.html has been already updated based on this

Re: Next iframe V6 fixes reminder list

Posted: Thu Nov 19, 2020 11:11 am
by axew3

Re: Next iframe V6 fixes reminder list

Posted: Sat Nov 21, 2020 12:35 am
by axew3