Not signed in (Sign In)

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

    • CommentAuthormangeletti
    • CommentTimeDec 16th 2007
     
    Hey Geoff,
    I get this error (see link below) for IE6. But it only happens sometimes? If anyone can help that would be great!

    http://www.search-this.com/js-error.gif
    • CommentAuthorphilip
    • CommentTimeDec 16th 2007
     
    this usually means your file path to swfobject.js needs fixing.
    try making the link absolute:
    <script type="text/javascript" src="http://search-this.com/swfobject.js"></script>

    - philip
    • CommentAuthormangeletti
    • CommentTimeDec 16th 2007
     
    • CommentAuthormangeletti
    • CommentTimeDec 16th 2007
     
    someone of another forum said,
    "I found yet another IE bug related to this topic. After a page is cached by IE and reloaded, the SWF is loaded before it's embedded, so any callback functions the SWF tries to setup when it loads (like the JS->Flash ExternalInterface code) will fail with an error "objectID" is undefined. Then when you try to use the callback function you get Object doesn't support this property or method because the functions didn't get assigned to the Flash object properly."

    not sure what all that means, does it help?
    • CommentAuthorphilip
    • CommentTimeDec 16th 2007
     
    your link is bad. http://www.search-this.com/podcast/swfobject.js brings up a 404 (page not found) error.

    99.9% of the time a "'SWFObject' is undefined" error is caused by an incorrect path in the src attribute of the script element.

    - philip
    • CommentAuthormangeletti
    • CommentTimeDec 17th 2007
     
    did you click the link? It's not 404 at all... Takes you right to the script
    • CommentAuthormangeletti
    • CommentTimeDec 17th 2007
     
    Besides, if the link was 404 then it would not work in ANY browser, not just IE6, right?
    • CommentAuthorphilip
    • CommentTimeDec 17th 2007
     
    mangeletti

    of course i clicked the link. how else would i know it was a 404 error? :P

    "404 - Where oh where is my page?
    Page Not Found!

    Dude! Where are we? Something must have happened to the page your were looking for.

    Perhaps you clicked on a bad or outdated link, perhaps you mistyped the URL in your browser, or perhaps bad things just happen sometimes. We're sorry it didn't work out."

    - philip
    • CommentAuthorAran
    • CommentTimeDec 18th 2007
     
    I also get a 404

    Aran
  1.  
    I found out what was up! It was the below line that I had put in my .htaccess file to prevent people from hotlinking to my js files. May want to remember that one...
    <code>
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www\.)?search-this.com/.*$ [NC]
    RewriteRule \.(js|css|swf)$ - [F]
    </code>
    • CommentAuthorphilip
    • CommentTimeJan 1st 2008
     
    that's a new one... i've never seen that happen before. :)