Hi,
I had the same problem. During initialization the javascript tries to
load FeedTree.js but with the wrong path:
Event.Handler is undefined
[Afbreken op deze fout]
Event.Handler.prototype.remove = function() {
/tt-rss/ (regel 26)
GET https://SERVER/tt-rss/lib/fox/FeedTree.js
404 Not Found
210ms
dojo.js (regel 15)
EXCEPTION: Exception: Error, xhrFailed Function: init() Location:
dojo.js:15
console.error("EXCEPTION: "+msg);return msg;}
In my Apache logs I see:
File does not exist: /usr/share/tt-rss/www/lib/fox, referer:
https://SERVER/tt-rss/
This error can be fixed by removed the escape characters from line 278
n the file tt-rss.js. Thus changing this
276 function init() {
277 try {
278 //dojo.registerModulePath("fox", "../../js/");
279
280 dojo.require("fox.FeedTree");
to
276 function init() {
277 try {
278 dojo.registerModulePath("fox", "../../js/");
279
280 dojo.require("fox.FeedTree");
Greetings Arjan
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]