Not signed in (Sign In)

Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorvult
    • CommentTimeJun 25th 2007
     
    I am testing swfobject fullpage: http://www.silver-commerce.com/test/flashversion.html. I always get message You need to upgrade your Flash Player. I have Flash player 9.0.45. I tried this on my other servers and it is working. Update flash is client side problem, but page is working on the same computer on other servers except this on bluehost.com. Bluehost support have no clues, although I am not coding beginner. Is this server related problem, JS mime types support, text/javascript, application/javascript problem or else? I have spent quite a lot time to solve this but no luck. Strange. Any help?
    • CommentAuthorAran
    • CommentTimeJun 25th 2007
     
    Sounds like you have a corrupt flash installation, as I see "you have 9.0.45 installed" for IE6 / FF2 / Safari 3.02

    Use the flash uninstaller: http://www.adobe.com/go/tn_14157

    and then reinstall the player and all should be well.
    • CommentAuthorvult
    • CommentTimeJun 26th 2007 edited
     
    The same fullpage.html not working on different servers. I didn't change anything. So this can not be client problem. I know that I have 9.0.45. I have already uninstall/reinstall it. Tried on other client computers too. I am using FF. See/try it for yourself:

    http://www.silver-commerce.com/swfobject/fullpage.html NOT WORKING, swfobject.html works, fullpage.html doesn't
    http://www.poslovnez.si/swfobject/fullpage.html WORKING

    Test page here http://blog.deconcept.com/swfobject/fullpage.html is working.

    What's wrong? I am in the "dark tunnel" because of this.
    • CommentAuthorphilip
    • CommentTimeJun 26th 2007 edited
     
    i think it's because you don't have a line break after the CDATA bit:

    this:

    <script type="text/javascript"> // <![CDATA[ var so = new SWFObject("so_tester.swf", "sotester", "100%", "100%", "8", "#FF6600"); so.addVariable("flashVarText", "this is passed in via FlashVars for example only"); so.addParam("scale", "noscale"); so.write("flashcontent"); // ]]> </script>


    should be this:

    <script type="text/javascript">
    // <![CDATA[
    var so = new SWFObject("so_tester.swf", "sotester", "300", "300", "9", "#FF6600");
    so.addVariable("flashVarText", "this is passed in via FlashVars for example only"); // this line is optional, but this example uses the variable and displays this text inside the flash movie
    so.write("flashcontent");
    // ]]>
    </script>


    i haven't tested it, but i think the missing line break makes javacript think your "var so" line is a comment.

    - philip
    • CommentAuthorvult
    • CommentTimeJun 26th 2007
     
    Philip you give me a tip where to search for clue but I don't know the cause yet. Thank you. Page source structure was not the same on both servers although it is a same file. Some how the structure was changed during copy on ftp. Don't know how this is possible. I am using filezilla. When I manual open the file on ftp and paste in the same code from fullpage.html the page is working. Really strange.