potku wrote: Mon Mar 12, 2018 12:14 pm
Hmm, OK, thanks.
Well, maybe Martin will have an idea as to why that is.
I just noticed that it seems to depend on the URL used to fetch a page of your forum. It does not matter if I use Chrome or Firefox (both on Linux) – both behave the same:
- when using
https://www.potku.net/forum/viewtopic.php?p=917509#p917509
(notice the www.
in the domain), the extension does not work
- when using
https://potku.net/forum/viewtopic.php?p=917509#p917509
(no www.
in the domain), the extension does work
So I would guess there's some issue with the board configuration regarding the domain name.
The boards I administrate have some redirection configured, so that all requests to
www.myboard.com
will be redirected to
myboard.com
; this domain (without
www.
) is also the domain which I use in the board configuration (
ACP > Server settings).
The redirection is done by the webserver via the
.htaccess
file, which has something like this:
Code: Select all
### redirect all requests that do _not_ use the default domain "myboard.com"
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} "!^myboard.com$"
RewriteRule (.*) https://myboard.com/$1 [L,R=301]
</IfModule>
Maybe you can check with your server admin if you can use some redirection like this as well.
koraldon wrote: Sat Mar 31, 2018 7:16 pm
Does 1.1.1 also works with phpbb 3.1?
No, as I applied some changes which are incompatible with the phpBB 3.1.
The phpBB creators will remove some functionality with upcoming phpBB versions, which are now marked as "deprecated", meaning all extension authors will have to change their code to the new functionality. I decided to do this change with this version 1.1.1 of my extension; and as all previous versions were never officially released as stable versions, I won't support them any more. Sorry about that.