Flash Player, An Image Gallery, Not loading in php, but loads directly

dquigley

New Member
Messages
249
Reaction score
0
Points
0

Attachments

  • Portfolio.part1.rar
    976.6 KB · Views: 10
  • Portfolio.part2.rar
    976.6 KB · Views: 3
  • Portfolio.part3.rar
    976.6 KB · Views: 9
  • Portfolio.part4.rar
    976.6 KB · Views: 2
  • Portfolio.part5.rar
    315.5 KB · Views: 2
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
It is amazing anything displays at all.

Pasting together entire web pages is not the way to do things.

In your specific case, I would guess the problem might lie in the address to gallery.swf. It seems to be http://dquigley.x10hosting.com/gallery/gallery.swf .

In http://dquigley.x10hosting.com/gallery/gallery.html you can address it as gallery.swf, but when you paste that page into http://dquigley.x10hosting.com/gallery.php , gallery.swf resolves to http://dquigley.x10hosting.com/gallery.swf , which does not exist.

Quick fix: Edit /gallery/gallery.html so that you have the full path http://dquigley.x10hosting.com/gallery/gallery.swf instead of just gallery.swf
 
Last edited:

dquigley

New Member
Messages
249
Reaction score
0
Points
0
You are the man, and you deserve a cookie, but I cant help u there, so have some credits and rep as a thank you instead :biggrin:
Edit:
Huh, now I'm having trouble finding out what loads the xml file, as the xml file contains the image stuff darn:dunno:
Edit:
gallery.html

Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>test</title>
<style type="text/css" media="screen">
body {
    margin: 0;
    padding: 0;
    text-align: center;
}
</style>
</head>
<body bgcolor="#d0d0cc" align="center">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
Choose a category
1 of 5
-->
<!-- saved from url=(0013)about:internet -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="810" height="720" id="test" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="gallery/gallery.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#d0d0cc" /><embed src="gallery/gallery.swf" quality="high" bgcolor="#d0d0cc" width="810" height="720" name="gallery" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
 
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Whereever you got the Image Gallery should have the documentation.
 

dquigley

New Member
Messages
249
Reaction score
0
Points
0
Unfortunately, the author does not have any documentation as I can find, its supposedly open source but that is all that was said, hard to believe I know, but it would be great if u could help me figure out where the xml file is called

Here is where I found it, Number 7

http://www.devwebpro.com/37-free-flash-photo-gallery/364/
Edit:
Well I didnt figure out which file was loading it but I moved the xml file up one directory and that fixed it.. If anyone does figure out what files loads it I would still like to know, thank you much ^__^
 
Last edited:

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
If a reference to the XML file (is it a playlist?) doesn't appear in the source, it's probably hard-coded (at least, there's a hard-coded default) in the flash movie.
 

dquigley

New Member
Messages
249
Reaction score
0
Points
0
I think your right, its probably in the flash file, thats what ur saying right? I have the tools to edit that but I dont need too, the information is what was important to me, knowing this I can edit it in the future if I need to, thanks a bunch, Ill rep and cred u too :biggrin:
 
Top