Page 5 of 11
Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 6:44 pm
by Ezrael
Done! Issue is still there
The Forum is now accessible for guests:
https://forum.surferparadise.de/viewtopic.php?t=146
Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 7:12 pm
by axew3
while it seem to work fine into any other page,
included here
https://forum.surferparadise.de/viewtopic.php?t=129
this topic do not fail, So, i assume, that into your phpBB there is something that make it fail someway the iframe resize library, while it load into a topic like
https://forum.surferparadise.de/viewtopic.php?t=146
I detect that your problem is:
the bbcode TAG, do not remember if you mentioned it before:
removing bbcode CODE tags the page display ok.
So you have to change the css of the selectors
pre and
code into your phpBB theme CSS: should be something like
overflow-x:scroll; to be applied into mentioned selectors
Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 7:16 pm
by Ezrael
But this is caused by the changes you did in your code? Because it worked before without any issue.
How much work is it to work with the old code but the new resizer?
Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 7:17 pm
by axew3
Wait wait, i've get the same! No by the resizer himself or the css applied into the overall_footer!
Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 7:34 pm
by axew3
Wait wait, i've get the same! No by the resizer himself or the css applied into the overall_footer!
it seem to me by the resizer or we have to find out the right solution... i'll look, anyway
Into the overall-footer.html code, try to change:
Code: Select all
if( typeof t != 'undefined' || t != false )
{
t.setAttribute("style", "position:fixed;top:0;min-width:100%;min-height:100%;padding:0");
document.getElementById("wrap").setAttribute("style", "position:relative;top:0%;min-height:100%;margin:10px");
}
into
Code: Select all
if( typeof t != 'undefined' || t != false )
{
t.setAttribute("style", "position:relative;top:0;left:0;height:100%;");
//document.getElementById("wrap").setAttribute("style", "position:relative;top:0%;min-height:100%;margin:10px");
}
into my example it work fine, but i assume i have to find out the definitive solution, so to have equal distance around the phpBB (top-bottom), it differ of some pixel
Re: Coming 2.8.8 logs
Posted: Thu Jul 04, 2024 7:40 pm
by Ezrael