Next iframe V6 fixes reminder list

User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Next iframe V6 fixes reminder list

Post 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
User avatar
DjPorkchop73
User www
User www
Posts: 80
Joined: Thu Aug 20, 2020 6:45 pm
Location: Egyptian Valley of Illinois

Re: Next iframe V6 fixes reminder list

Post 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.
If I could I would. If I don't, it's because I am lazy!

"Don't gain the world and lose your soul, wisdom is better than silver and gold" -Bob Marley
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Next iframe V6 fixes reminder list

Post 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
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Next iframe V6 fixes reminder list

Post 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
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Next iframe V6 fixes reminder list

Post by axew3 »

User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Next iframe V6 fixes reminder list

Post by axew3 »

Post Reply