Not signed in (Sign In)

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

    • CommentAuthorariellevy
    • CommentTimeJan 5th 2008
     
    Hello. I posted a static htm page on a hosting server. the blank page works fine locally, on server it load flash player, but it does not load the movie.

    This is the page uploaded to hosting server www.baraderodigital.com. I think there are some requirements that the server does not apply (some port on the firewall for example), but I don't know what.
    • CommentAuthorAran
    • CommentTimeJan 6th 2008
     
    So it seems like you are trying to load videos from Amazon.

    Amazon has a crossdomain.xml file (flash security file) which only allows it to load videos from the below:

    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy
    SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="*.amazon.com" />
    <allow-access-from domain="amazon.com" />
    <allow-access-from domain="www.amazon.com" />
    <allow-access-from domain="pre-prod.amazon.com" />
    <allow-access-from domain="devo.amazon.com" />
    <allow-access-from domain="images.amazon.com" />
    <allow-access-from domain="anon.amazon.speedera.net" />

    <allow-access-from domain="*.amazon.ca" />
    <allow-access-from domain="*.amazon.de" />
    <allow-access-from domain="*.amazon.fr" />
    <allow-access-from domain="*.amazon.jp" />
    <allow-access-from domain="*.amazon.co.jp" />
    <allow-access-from domain="*.amazon.uk" />
    <allow-access-from domain="*.amazon.co.uk" />
    </cross-domain-policy>

    So, unless you are using a proxy to trick your flash player into thinking they are coming from your server, you are out of luck....

    BTW - this is not a SWFOBject related issue - we try to keep this board specific to SWFObject issues.

    Cheers,
    Aran
    • CommentAuthorariellevy
    • CommentTimeJan 6th 2008
     
    thanks a lot!