PDA

View Full Version : Add to site - wont show - error


penn.jon397237
01-05-2010, 04:40 AM
I have completed the set up of PowerGallery but when viewing the link on the Add to Site section it cannot find the page? any ideas?


Direct Link to Your Gallery
Use this URL when linking to your PowerGallery from any web page:

http://79.170.44.122/home/sites/creativefirstaid.co.uk/public_html/PowerGallery100/galleries/ribbon_fullsize/index.php?gallery=1&theme=dark

And the "Preview" shows only the words:

First Prev Next Last
loading...

NO IMAGES.

Any ideas?

Jason Byrnes
01-05-2010, 04:14 PM
have you uploaded the PowerGallery Files to your remote host?

the power gallery install process should be performed on the romote host, not on your local testing server.




If it is installed on the remote host, what is the address?

penn.jon397237
01-07-2010, 06:16 AM
THANK YOU - I have now moved the gallery to the remote server not the local server and it displays in preview, BUT when I try to insert it into a PHP page it shows the gallery but the main image fails to load, just get "... loading"

The page is located: http://www.theotherdesignagency.co.uk/clients/firefly/index.php
The gallery is located http://www.theotherdesignagency.co.uk/PowerGallery100

Thanks

Justin Nemeth
01-07-2010, 10:02 AM
It looks like you are using jQuery on your page which is conflicting with the MooTools used by PowerGallery.

Edit the gallery.js file for your selected gallery design and change the code this.wrapper = $(el); to this.wrapper = document.id(el);

Basically, the $ function is defined by both libraries, so changing the PowerGallery code should fix the issue.

-justin

penn.jon397237
01-08-2010, 02:21 AM
Thank you for the reply - The gallery.js code change has made the main image appear now but now it has moved the image down about 250px from the top and covers the thumbnails

http://theotherdesignagency.co.uk/clients/firefly/index.php

Justin Nemeth
01-08-2010, 08:52 AM
In your mastercss_withfade.css file, you have a global img rule that is affecting the img tags using in PowerGallery.

img {
margin: 0px;
bottom: 0px;
padding: 0px;
}
Removing the bottom:0 fixes the PowerGallery image positioning. FYI, I used firebug to inspect the image and it shows all CSS that is applied and what file is comes from.

-justin

penn.jon397237
01-13-2010, 01:54 AM
Hi, Thats brilliant sorry just installed firebug and that helps me.

I now seem to have lost the tool tip on the thumbnails?.... last question I promise.

penn.jon397237
01-13-2010, 02:16 AM
Also how do I retrieve a lost password the the powergallery on the login screen?

Justin Nemeth
01-13-2010, 09:10 AM
Looks like the same $() issue. Just do a search in gallery.js and replace and $( with document.id( and that should fix it. Check the wa_settings table for the login info.

-justin