Last topic widget + registration redirect to iframe

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

Re: Last topic widget + registration redirect to iframe

Post by axew3 »

can you try to substitute:

/wp-content/plugins/wp-w3all-phpbb-integration/views/phpbb_last_topics.php

with this one in attach? May a global var missed/not assigned, cause that the url built in wrong way ... but it is strange
phpbb_last_topics.zip
(2.26 KiB) Downloaded 226 times
Dysphoria
User ww
User ww
Posts: 43
Joined: Tue Feb 11, 2020 8:45 am

Re: Last topic widget + registration redirect to iframe

Post by Dysphoria »

I'll try it tomorrow and I'll let you know.
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Last topic widget + registration redirect to iframe

Post by axew3 »

Dysphoria wrote: Thu Feb 20, 2020 10:12 pm I'll try it tomorrow and I'll let you know.
yeah! take your time! :D
Dysphoria
User ww
User ww
Posts: 43
Joined: Tue Feb 11, 2020 8:45 am

Re: Last topic widget + registration redirect to iframe

Post by Dysphoria »

It did nothing. :)

Could it be it has something to do with .htaccess? 'Cause suddenly a code I added earlier this week was gone.

Code: Select all

# BEGIN WordPress
# De richtlijnen (regels) tussen `BEGIN WordPress` and `END WordPress` worden
# dynamisch aangemaakt en zouden enkel aangepast mogen worden via WordPress filters.
# Elke wijziging aan deze richtlijnen tussen deze markeringen worden overschreven.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

##------Forceer HTTPS verbinding geheel domein------##
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
##
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Last topic widget + registration redirect to iframe

Post by axew3 »

Have you try to remove this from the htaccess, but it seem correct:

Code: Select all

##------Forceer HTTPS verbinding geheel domein------##
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
##
what happen?
Dysphoria
User ww
User ww
Posts: 43
Joined: Tue Feb 11, 2020 8:45 am

Re: Last topic widget + registration redirect to iframe

Post by Dysphoria »

Well, that was the code that was suddenly removed. No idea why because I hadn't opened it after I put that code there the first time.

When I remove that, the http:// adress becomes available again, which results in not being able to login.
Post Reply