Welcome Guest Search | Active Topics | Sign In | Register

Problem with eo:menu Options
AndreaZ
Posted: Tuesday, November 11, 2008 9:01:55 AM
Rank: Advanced Member
Groups: Member

Joined: 10/20/2008
Posts: 75
Hello,
When I insert a menu in the page and I choose the template,
then I run the page,
return to me an error:

An alert with te text:
"Impossible opening the web site http:/localhost:2875/"


!!!


AndreaZ
Posted: Tuesday, November 11, 2008 9:02:36 AM
Rank: Advanced Member
Groups: Member

Joined: 10/20/2008
Posts: 75
the menu is in a master page.
thanks
AndreaZ
Posted: Tuesday, November 11, 2008 9:05:50 AM
Rank: Advanced Member
Groups: Member

Joined: 10/20/2008
Posts: 75
The page is load correctly and I view the page with the menu inside, but after is show the message above.
AndreaZ
Posted: Tuesday, November 11, 2008 9:40:20 AM
Rank: Advanced Member
Groups: Member

Joined: 10/20/2008
Posts: 75
can you help me?
thanks!
eo_support
Posted: Tuesday, November 11, 2008 11:09:34 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

We are not aware of any problem like that. Can you try it on another machine or with another browser?

If the problem continues, please put the page online and we will be happy to take a look.

Thanks
AndreaZ
Posted: Tuesday, November 11, 2008 3:31:08 PM
Rank: Advanced Member
Groups: Member

Joined: 10/20/2008
Posts: 75
the problem is that in the page i have the lightbox javascript. if i delete the lightbox it runs correctly.
eo_support
Posted: Wednesday, November 12, 2008 7:28:36 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

We have reproduced the problem with LightBox. We will look into it and see what we can do. There is no guarantee though as the problem might be in LightBox and we have merely triggered it.

Thanks!
eo_support
Posted: Wednesday, November 12, 2008 12:52:12 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

We have looked into the LightBox issue and have found a workaround. You will need to modify LightBox.js as follow:

1. Open LightBox.js with a text editor, scroll to the bottom of the file, you should see:

Code: JavaScript
document.observe('dom:loaded', function () 
{ 
    new Lightbox(); 
});


2. Change that to:

Code: JavaScript
document.observe('dom:loaded', function () 
{ 
    setTimeout(function()
        {
            new Lightbox(); 
        }, 0);
});


That delays lightbox initialization code and it should resolve the issue. The above code is based on LightBox 2.

Thanks!
AndreaZ
Posted: Wednesday, November 12, 2008 4:39:46 PM
Rank: Advanced Member
Groups: Member

Joined: 10/20/2008
Posts: 75
thank you very much!!!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.