flash not working with CI |
[eluser]KingSkippus[/eluser]
Both URLs with and without the www are working fine for me. Are you by any chance using Firefox with NoScript or FlashBlock? If so, you'll have to whitelist both domain names. One thing I noticed is that regardless of domain, you're linking to www.autoip.ro for your Flash embed. You might want to consider linking the actual domain under which the Flash element is being loaded. In other words, in your view, instead of: Code: <embed src="http://www.autoitp.ro/flash/index.swf" width="550" height="400"></embed> Use this: Code: <embed src="http://<%=$_SERVER['HTTP_HOST'] %>/flash/index.swf" width="550" height="400"></embed> That way, users don't have to whitelist both domains if they're using a Flash blocker. One last bit of advice that doesn't really have to do with the question. A lot of folks (like me) use Flash blockers and get turned off of sites on which it is required to have Flash to do basic stuff like navigate. Unless your site is a full-blown web application in which Flash is necessary for the core of what it does, such as YouTube, a gaming site, etc., then I strongly recommend having the ability to navigate and use the site without Flash. You can use Flash to enhance the site and provide easier navigation, but it looks like you're starting off on a site that uses Flash exclusively to navigate, and I would avoid that if possible. |
Messages In This Thread |
flash not working with CI - by El Forum - 07-20-2010, 05:09 AM
flash not working with CI - by El Forum - 07-20-2010, 07:02 AM
flash not working with CI - by El Forum - 07-20-2010, 07:17 AM
flash not working with CI - by El Forum - 07-20-2010, 07:24 AM
flash not working with CI - by El Forum - 07-20-2010, 01:23 PM
flash not working with CI - by El Forum - 07-20-2010, 01:52 PM
|