Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
markam24
Experienced
Topic Author
Posts: 280
Joined: 10 Oct 2006, 23:05

new installation - gallery stalls while initial flash loads

10 Oct 2006, 23:17

downloaded the update

(the old version is visible @ EDITED)

Unzipped the file, exported, and uploaded lasted version to:
http://www.EDITED.com/newvue/

deleted all content folders but one

set permissions on the remaining folder to 777

the flash begins to download but stalls after "get imagelist" (then nothing happens)

Any ideas?

Many Thanks!
Mark
Last edited by markam24 on 17 Jun 2008, 12:27, edited 1 time in total.
 
User avatar
markam24
Experienced
Topic Author
Posts: 280
Joined: 10 Oct 2006, 23:05

more info

11 Oct 2006, 00:38

seems it's partially loading - i changed the config file to include the site menu and it works...although - i get the impression it is innitially trying to open a slideshow as apposed to the main gallery module.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

11 Oct 2006, 00:50

i get the impression it is innitially trying to open a slideshow as apposed to the main gallery module.
Thats exactly what its trying to do. Not sure how it came out that way, but can you download the latest files here:

<a href="https://www.photo.gallery/downloads/imag ... agevue.swf" class="mlink">imagevue.swf</a><a href="https://www.photo.gallery/downloads/imag ... deshow.swf" class="mlink">slideshow.swf</a>
 
D-ziner
Posts: 8
Joined: 13 Oct 2006, 03:13

13 Oct 2006, 03:22

I have the same problem...
When using the loadMovie("gallery/imagevue.swf", targetMovieClip); action the gallery seems to stop and just showing 2 black rectangles.

Also with a simple button action, loading on a level (10)

on (release) {
loadMovieNum("http://www.domain.com/website/gallery/imagevue.swf", 10);
}

placing the url in a browser or using the GetURL function works fine.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

13 Oct 2006, 04:17

loadMovie("gallery/imagevue.swf", targetMovieClip);
That is a slightly different issue actually. Since you are loading Imagevue from a remote folder, you need to specify the globalpath parameter to get it to work right:
Code
loadMovie("gallery/imagevue.swf?globalpath=gallery/", targetMovieClip);
Above code should do it ...