Xen Notices [Deleted]

i got this error on install

Callback GritterNotifications_Listener::containerPublicParams is invalid (Invalid Method).
then i clicked home and i clicked upgrade addon as it was saying the board is closed till addon is upgraded then it installed so im not sure if its properly installed now
 
Did you use an add on installer type add on installer to install it?

That error crops up sometimes for a number of reasons.

Make sure the correct files were uploaded.

Make sure there's no caching that could be caching the old files.

As I said add on installer add ons can sometimes cause this if the add on begins installing before the files finished copying.

Just try and reinstall it again.

There's nothing in my code that would close your board so I can't explain that one.
 
Did you use an add on installer type add on installer to install it?

That error crops up sometimes for a number of reasons.

Make sure the correct files were uploaded.

Make sure there's no caching that could be caching the old files.

As I said add on installer add ons can sometimes cause this if the add on begins installing before the files finished copying.

Just try and reinstall it again.

There's nothing in my code that would close your board so I can't explain that one.
yes i was using addons installer but it looks like when it fail like it happen xenforo close the board by itself and i clicked continue install addon and it worked so i think its like you said sometime it start before it finish uploading. Thanks for fast answer love this addons it rocks :P
 
No, because at the moment I am unable to reproduce the issue.

Can you detail specifically the set up there that causes this issue?
 
I was on a networked computer (at the high school I teach at) using windows 7 and the IE that comes with it.

The notification is set to display in the top left and the notice is also on in the top left. The youtube video has the following settings:
Code:
<center><iframe width="640" height="360" src="//www.youtube.com/embed/BdhinDX31EA?rel=0&vq=hd1080&iv_load_policy=3" frameborder="0" allowfullscreen></iframe></center>
 
Capture.webp

The issue isn't exclusive to my add-on, unfortunately.

The video sits on top of your fixed header too. I suspect it is a browser issue. I'll see if I can find any signs of a fix.

One thing that is worth a try...

In the YouTube URL, change:

&iv_load_policy=3

to

&iv_load_policy=3&html5=1

If this is what I suspect - some sort of Flash Player issue - that should resolve the issue.
 
There is another option actually...

Instead of adding &html5=1 as I suggested above, it might be ok to just add:

&wmode=transparent
 
View attachment 71251

The issue isn't exclusive to my add-on, unfortunately.

The video sits on top of your fixed header too. I suspect it is a browser issue. I'll see if I can find any signs of a fix.

One thing that is worth a try...

In the YouTube URL, change:

&iv_load_policy=3

to

&iv_load_policy=3&html5=1

If this is what I suspect - some sort of Flash Player issue - that should resolve the issue.
Thanks Chris, I've added the &html5=1 to the code but I don't think it's worked. I'm on my mac and can't be 100% but I'm not sure what causes this problem. It's going to drive me crazy. Fortunately IE7 or below displays an out of date browser message.
 
Chris, prior to 1.7.4 I wrapped GritterNotifications template with a condition:

Code:
<xen:if is="!in_array({$contentTemplate}, array('login', 'register_form', 'register_confirm', 'register_facebook', 'register_form', 'register_process')">
...
...
...
</xen:if>

to disable notifications on registration pages. Somehow this doesn't work with 1.7.4 anymore, because $contentTemplate variable is NULL now. Is it possible to access $contentTemplate somehow or use another, equivalent variable in 1.7.4?
 
I feel stupid, I haven't been around in a while and doing an overhaul of my forum add-ons and updating them, @Chris D can you please tell me where I can get the new file for this? I tried all your websites first, etc. etc. and checked my email box. I couldn't find it anywhere, so just need the new version please. :)
 
That button closes the notification temporarily.

The length of time it is closed for is defined in the notification setting:

upload_2014-4-11_14-34-12.webp

It is not a dismissal because it isn't dismissed permanently. It will come back because it is cookie based. If the value is zero then it will come back when they next close and open their browser. Or you can set that so the cookie is only valid for X days.

It is essential that there is some way to close it temporarily because otherwise it might be in the way of important controls.

You can disable temporary closing with this option:

upload_2014-4-11_14-37-14.webp

That's in the main options.

With that option disabled, the notification will reappear after every page load.
 
Back
Top Bottom