By Torsten Egeler on Tuesday, 08 August 2017
Posted in General
Replies 3
Likes 0
Views 187
Votes 0
Hey Torsten,

This problem is caused by your system plugin "IFTA Onesignal". It is blindly using the document API in Joomla without checking the type of the document. This same issue will exist in your Joomla articles rss feed too.

To fix this, I had to edit the file /plugins/system/ifta_onesignal/ifta_onesignal.php and at line 36 - 40 replaced the following codes,

[gist]
// Im Adminbereich nicht verwenden
// auch nur wenn SSL aktiv ist
if ($app->isAdmin() || !$u->isSSL()) {
return true;
}
[/gist]

With,

[gist]
// Im Adminbereich nicht verwenden
// auch nur wenn SSL aktiv ist
if ($app->isAdmin() || !$u->isSSL() || $doc->getType() != 'html') {
return true;
}
[/gist]

You should contact the developer of the plugin to fix their plugin
·
Tuesday, 08 August 2017 21:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Ahhh... many thanks

Torsten
·
Wednesday, 09 August 2017 00:12
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Torsten
·
Wednesday, 09 August 2017 01:03
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post