Page 1 of 1

Pagecomponent problem on IIS

Posted: 22 Apr 2008, 17:25
by skyred
I am trying to create a page component and I have uploaded the related files, then I tested on http://wm.grinnell.edu/alumni/testing/p ... mple3.html
it did not work, which is an IIS server. Then I duplicated pagecomponent_example3.html to an apache server, it works. http://wm2old.grinnell.edu/alumni/galle ... mple3.html
I can't figure out why? Could you help?

<DOCTYPE>
<html>
<head>
<title>Slideshow Pagecomponent Example</title>
</head>

<body>
<script></script>
<div id="slideshow">
Slideshow module here
</div>
<script>
var so = new SWFObject("http://wm2old.grinnell.edu/alumni/gallery/slideshow.swf", "mymenu", "414", "239", "7", "#FFFFFF");
so.addVariable('path','includes/');
//so.addVariable('configfile','ss_pagecomponent.ini');
so.addVariable('textcol','000000');
so.addVariable('framewidth','1');
so.addVariable('framecol','000000');
so.addVariable('frameshadow', 'true');
so.addVariable('showmaincontrols', 'true');
so.addVariable('maincontrols', 'previous,next,toggleplay,popup');
so.addVariable('maincontrolsalign','OIBR');
so.addVariable('maincontrolsmargin','5');
so.addVariable('imageclick','popup');
so.addVariable('displayimageindex','true');
so.addVariable('displayname','true');
so.addVariable('controlsbackgroundcolor','FFFFFF');
so.addVariable('controlsforegroundcolor','000000');
so.addVariable('controlsdimensionx','35');
so.addVariable('controlsdimensiony','25');
so.addVariable('displayposition', 'imagetop');
so.addVariable('defaultcolor', '000000');
so.addVariable('formatbackgroundcolor', 'FFFFFF');
so.addVariable('formatmargin', '10');
so.addVariable('formatbackgroundalpha', '30');
so.write("slideshow");
</script>

</body>
</html>

Posted: 25 Apr 2008, 12:35
by skyred
Can someone HELP?