www.schiggysboard.com
phpbb3
I've got problems with cookies and auto login for a few months. Today I got the problem that the toolbar does not appear and the admin cp does appear without layout (look at screenshot below).
I installed the folowing script:
- Code:
function addEvent(event, target, f) {
if(typeof target.addEventListener === "function" && typeof f === "function") {
target.addEventListener(event, f);
} else if(typeof target.attachEvent === "function" && typeof f === "function") {
target.attachEvent("on" + event, f);
} else {
throw new Error("Could not add event to selected target.");
}
}
After that I got the following error meesages by pressing STRG + Shift + K (in Firefox):
ReferenceError: Toolbar is not defined www.schiggysboard.com:86:0
ReferenceError: my_getcookie is not defined www.schiggysboard.com:305:0
ReferenceError: insertChatBoxPopup is not defined www.schiggysboard.com:397:0
ReferenceError: fa_endpage is not defined www.schiggysboard.com:406:0
ReferenceError: cookieChoices is not defined www.schiggysboard.com:401:16
Does anyone has an idea what the problem is and what I can do against that?
Thanks in advance.