Mp4 file not working in Safari, OK in Firefox

Hi
I have just updated my site to include a short movie file. This works fine in Firefox, but Safari recognizes it as text. After publishing my website prior to uploading, all seemed to work fine. However, once uploaded it turns to text.
Do you have any suggestions?
My 'problem' page is>
http://www.bartholwindaction.org.uk/wind_turbines/MM70%20turbine.html
The movie is at the bottom of the page.
Don't know how this looks on a PC.
Thanks
Phil B

Because Firefox opens a dialog window asking you what to do with this file extension and allows you to choose to open it with QuickTime browser plug-in.
Call your host server and ask them to explain the issue. It has to do with .htaccess files on their server.

Similar Messages

  • Audio links to MP4 files not working

    hi,
    i'm publishing a website I designed using Dreamweaver. I
    uploaded everything to the server using Fetch, but none of my audio
    file links work. I've checked 100 times, and the files are there,
    in the folder specified when I created the links. I've tried
    recreating them - checking the location, etc and nothing works.
    is this a problem with mp4 files or is it something else?
    please let me know if anyone has any ideas as to what might
    be wrong.
    thanks!

    If you are on *nix hosting, doublecheck for upper & lower
    case mismatches.
    "freedomofchoice" <[email protected]> wrote
    in message
    news:fqcb0a$lie$[email protected]..
    > hi,
    >
    > i'm publishing a website I designed using Dreamweaver. I
    uploaded
    > everything
    > to the server using Fetch, but none of my audio file
    links work. I've
    > checked
    > 100 times, and the files are there, in the folder
    specified when I created
    > the
    > links. I've tried recreating them - checking the
    location, etc and nothing
    > works.
    >
    > is this a problem with mp4 files or is it something
    else?
    >
    > please let me know if anyone has any ideas as to what
    might be wrong.
    >
    > thanks!
    >

  • .mp4 file not opening in safari

    Hi all. Got a problem. I have posted an mp4 file on my website and for some reason when i go to the link, it opens up with millions of numbers,text and crazy stuff. However on other browsers, it plays fine. Any thoughts? Thanks in advance, Matty

    I have posted an mp4 file on my website and for some reason when i go to the link, it opens up with millions of numbers,text and crazy stuff. However on other browsers, it plays fine. Any thoughts?If you have QT Pro, you could try using the "Save As..." option to place you file into an MOV file container before uploading to your web site. If you are using direct URL access of the file, consider embedding your refeences/play instructions.

  • Imbedded link to downloadable .PDF file not working in Safari

    Two questions:
    I imbedded a text link that is supposed to download a .PDF file from my iDisk. However, when I click the text link from my Safari browser I get this error message:
    "“A network error occurred while accessing this document on the Internet. Would you like to close the document or reload it?”
    When I retry by pasting my iWeb published page into Mozilla, the linked file downloads quickly with no problem. However, when I paste it into Internet Explorer's browser, it takes about 4 minutes to download!
    Second question: I can't seem to link an image that I inserted on a "My Photos" template page. There is no way to select the image--when I do, it just shows the "blue box" around the image but it doesn't actually select the image itself so I can link it.
    I was able to link images in my .Mac pages so I don't know why I can't on iWeb.
    If anyone wants to try it, here is the link to that page. ONLY CLICK ON THE BERMUDA AMEX TRAVEL PLANNER TEXT as that is the only link I've imbedded thus far. This page is obviously still under construction.
    http://web.mac.com/jennikeast/iWeb/Christian%20Ministries%20/E0EFD86B-77D0-459A- 9E9E-C1FEC0D306C2.html
    iBook   Mac OS X (10.4.6)  

    Second question: I can't seem to link an image that I inserted on a "My Photos" template page. There is no way to select the image--when I do, it just shows the "blue box" around the image but it doesn't actually select the image itself so I can link it.
    This is correct, you cannot make the image holders hyperlinks. The solution is to put a Shape over the top of the image that you want to be a link, then Opn Inspector, Graphic Link and make the Opacity 1%, no more no less. Then make this shape a link. Beware that this image will still display in a slideshow and if you insert more images and it moves, the shape will not move with it.
    You may also want to click on the shape and then go Arrange > Bring to Front.
    Will
    1GHz G4, 15" PowerBook, Airport Network, 1G iPod Mini   Mac OS X (10.4.6)   www.willg4pb.com for iWeb tips

  • Links to files not working in Safari 5.1

    I have an HTML document on my hard drive that links to various TextEdit files on my computer. It's a great shortcut tool. I click a link, and it instantly opens up the file in TextEdit.
    However, I just upgraded to Safari 5.1, and now when I click these links, nothing happens. No error, no file opens, nothing.
    Any ideas?

    See http://www.caminova.net/en/support/snow_leopard_err.aspx
    There are a couple of DjVu applications out there that might be useful for viewing the documents outside of the browser. I have something called DjView on my iMac, and there's another named MacDjView listed at MacUpdate. (I haven't messed with DjVu in over a year, and I'm foggy here.)

  • Uploading files to website not working with Safari in Windows 7

    Safari version: 5.1.7
    OS: Windows 7
    Hi,
    I am a website owner, and I have a feature on my site where users can upload large (up to 50MB) music files to my server. The feature works in Firefox on OSX & Windows platforms and it also works in Safari on OSX. The uploading feature is not working with Safari for Windows. Do you have any idea why and how to fix this? It can't be an issue with my server as it works in other browsers fine and works fine in Safari for OS X.
    If you have any information on how to solve this or things for me to try to rectify this for use with Windows operating system it would be much appreciated.
    Thanks.

    GREAT NEWS!!!!
    I have solved this issue myself with some help from my a user on Microsoft Forums. The issue stems from the mime type of each Browser Chrome, IE, & Safari for Windows defaults as audio/wav. When the mime type is changed to audio/x-wav everything works. Firefox defaults to audio/x-wav and when changed to audio/wav it DOES NOT work.
    Once I input some code in my .php upload page to change the mimetype if audio/wav is detected everything works GREAT!!!
    So Here is what you need to do: Find your upload page and input this code:
    echo "<p>MIME Type: ".$_FILES["file"]["type"]."</p>";   
    right before your "If/then" statement of file type. For me it was near line 30 in my upload.php page, but I'm sure this is different for everyone.
    This will detect and DISPLAY the default mime type of your browser on the error page when your upload doesn't work. Once you know what mime type works for your file type then you can change your "if/then" statement for mime type upload to change your mime type to the correct one.
    I don't want to give the code here, because I'm sure it's specific to your file types and your site construction, but this should lead you on the right track.
    ***This is the solution if you ARE NOT ABLE to upload any certain file in a certain Browser. It has to do with mime type construction***
    I hope this helps others like it helped me!!!!!

  • Flash not working in Safari 5

    Flash has been buggy for me in Safari 5, ever since I updated the Flash player last week to "10.1 r53". Either Flash files don't play at all, or just the audio plays without video.
    Per the instructions on these boards, I have:
    1. reset Safari
    2. uninstalled flash player
    3. installed the flash player
    4. repaired permissions
    5. restarted
    The issue is still there. Firefox plays Flash files, YouTube, etc. just fine. Safari does not.
    I'm running SL 10.6.4, latest Software Updates.
    Any suggestions?
    Thanks!

    I created a new account. Flash works in the new account. That's cool, but I really don't want to re-locate all my prefs, etc., just for a buggy plugin.
    So, I next...
    1. grabbed the Safari plist from the new account
    2. logged out of the new account
    3. logged into the old account (where Flash does not work)
    4. moved the old account's com.apple.safari plist file out of the Preferences folder
    5. moved the clean Safari plist file (from the new account) into the Preferences folder
    6. reset and restarted Safari
    7. Flash worked...for about two minutes. I tested on YouTube, Vimeo and Google Analytics. Back to Flash not working in Safari.
    I then tried repeating the earlier steps.
    1. reset Safari
    2. uninstall flash player
    3. install flash player
    4. repaired permissions
    5. restarted
    Still doesn't work.
    Just one other thing to note: whenever I pull up a web page with Flash, I get a "file not found" error in Safari's activity monitor (link is below)...could this be an error with Adobe's website rather than a Safari-permission thing?
    http://fpdownload2.macromedia.com/get/flashplayer/update/current/install/version .xml10.1.53.64~os=Mac&osVer=10.6.4&playerType=pl&cpuWordLength=32&cpuArchitectur e=i386&lang=en

  • My youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome

    my youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome. At times it also say QuickTime Player can't open "video.3gp". and
    The file may be damaged or may not be a movie file that is compatible with QuickTime Player. when i try to open a video on youtube on safari

    I too am having the same issue as the OP.
    Your USER AGENT information is Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    Every webserver that receives a request from your browser is able to determine the HTTP USER AGENT information unless it has been removed by some software (e.g. firewall) before the request was trasmitted.

  • Flash Player 10.3.183.10 will not work in Safari on Mac OS X 10.5.8

    Mac OS X 10.5.8
    Safari 5.0.6
    Flash Player 10.3.183.10
    Flash Player10.3.183.10 will not work in Safari on Mac OS x 10.5.8
    The instillation says that it is successful, however when using Safari I'm informed I do not have flash player installed. When I check the hard drive, flash player in no where to be found. I have tried all of the troubleshooting from the Adobe website, and I am still stumped. I was able to get the Flash Player to run in firefox 5.0, but not Safari.
    Please Help!!!! I have searched the discussion boards for days now in my spare time and have not been able to find an answer.
    I am not the most savvy person with computers, what am I missing here??

    In my Library/Internet Plug-ins folder I have a file named Flash Player.plugin (it's 22.8 MB however, not 23.9mb) and another named flashplayer.xpt (it's 4 KB however, not856 bytes).
    I am unable to open the Plug-Ins menu (the browser pops up but wont load)...is there another way to check for Shockwave Flash?? When I do a search for "Shockwave" on my hard drive I do find a plug-in named "DirectorShockwave.plugin" (76 KB)
    Also...The "Open using Rosetta" checkbox was already unchecked

  • Adobe Flash Player does not work with Safari. What can I do?

    Hi,
    I have a MacBook Pro, Retina, 15 inch, late 2013,  2 GHz Intel Core i7, using OS X 10.9.4. I have installed Adobe Flash Player. In my System Preference, in the advanced settings, it is set to install updates also tells me that I have the NPAPI Plug-in (version 14.0.0.145) installed but not the PPAPI Plug-in. Is this the reason why it does not work with Safari (keeps telling me to download the app, which I did but still does not work)? Is there any way I could fix the problem? Please, help.
    Thanks.

    If you can't install or update Flash, follow these instructions.
    If you have installed the latest version of Flash, please take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 8. Back up all data before making any changes.
    Step 1
    You might have to log out or restart the computer before a Flash update takes effect.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Step 3
    If you're only having trouble with YouTube videos, log in to YouTube and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 4
    a. If you get a warning of a "blocked" or "outdated" plug-in, then select the Security tab in the Safari preferences window. In the list of plugins on the left, there should be one—and only one—entry for "Adobe Flash Player," showing the same version number that you installed. Select that entry. On the right there will be a list of websites for which you have specifically allowed Flash, if any. It's normal for the list to be empty. Below that is a menu labeled
              When visiting other websites
    From that menu, select either Allow or Ask.
    b. If you still get the alerts, then go back to the Flash Player preference pane and select the Advanced tab. Click Check Now. Quit and relaunch the browser.
    c. If the alerts still persist, triple-click anywhere in the line below on this page to select it:
    /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
    Right-click or control-click the highlighted text and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it, there should be a file named "XProtect.meta.plist". If that file is missing and you know why it's missing, restore it from a backup or copy it from another Mac running the same version of OS X. Otherwise, reinstall OS X.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 5
    In the Safari preferences window, select the Advanced tab and uncheck the box marked
              Stop plug-ins to save power
    Step 6
    Open this folder as in Step 4:
    /Library/Internet Plug-Ins
    Delete the following item, or anything with a similar name, if present:
              Flash Player (failing).plugin 
    You may be prompted for your login password.
    Step 7
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 8
    If you get a "missing plug-in" error, select
              Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked  
              Allow (or Enable) plug-ins
    Then click the button marked
              Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 9
    Select
              Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.

  • MSN not working with Safari 8.0.2

    MSN (home page) is not working with Safari 8.0.2
    A blank page comes up.
    This started 12-13-14
    Anyone have a solution?

    Go step by step and test.
    1. Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204
    2. Delete Caches.db
        Close all windows and quit all applications.
        Hold "option" key down and click "Go" menu in the Finder menu bar.
        Select "Library" from the dropdown.
        Library > Caches > com.apple.Safari > Caches.db
        Right click the Caches.db file and select "Move To Trash.
        Close windows and relaunch Safari.
    3. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    4. Delete Cookies
        Safari > Preferences > Privacy > Cookies and other website data:
        Click "Details" button.
        Remove MSN cookie
    5. Safari > Preferences > Extensions
        Turn off Extensions  and launch Safari again to test.
        Turn on those one by one and test.

  • Are .mp4 files not supported when trying to merge 2 videos into 1 video?

    Are .mp4 files not supported when trying to merge 2 videos into 1 video? The steps in the manual seem simple enough.  But the paste function won't work on the 1st video after selecting all and then copy on the 2nd video.

    There are 9 different versions of iPhoto and they run on eight different versions of the Operating System. The tricks and tips for dealing with issues vary from version to version and OS to OS. So before anyone can help, they need information to work with. Things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. What were you doing when the problem arose?
    - Did it ever work properly?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    Anything else you can think of that might allow someone else to understand your issue.

  • Three finger or two finger gesture to move back and forward between pages of file only work on safari, unlike with old os. this new lion won't let me do it. Any help?

    three finger or two finger gesture to move back and forward between pages of file only work on safari, unlike with old os. this new lion won't let me do it. Any help?

    I have decided to dedicate this thread to the wonderful errors of Lion OSX. Each time I find a huge problem with Lion I will make note of it here.
    Today I discovered a new treasure of doggie poop in Lion. No Save As......
    I repeat. No Save As. In text editor I couldn't save the file with a new extension. I finally accomplished this oh so majorly difficult task (because we all know how difficult it should be to save a file with a new extension) by pressing duplicate and then saving a copy of the file with a new extension. Yet then I had to delete the first copy and send it to trash. And of course then I have to secure empty trash because if I have to do this the rest of my mac's life I will be taking up a quarter of percentage of space with duplicate files. So this is the real reason they got rid of Save As: so that it would garble up some extra GB on the ole hard disk.
    So about 20 minutes of my time were wasted while doing my homework and studying for an exam because I had to look up "how to save a file with a new extension in  mac Lion" and then wasted time sitting here and ranting on this forum until someone over at Apple wakes up from their OSX-coma.
    are you freaking kidding me Apple? I mean REALLY?!!!! who the heck designed this?!!! I want to know. I want his or her name and I want to sit down with them and have a long chat. and then I'd probably splash cold water on their face to wake them up.
    I am starting to believe that Apple is Satan.

  • YouTube will not work on safari for me on the ipad. Is there anyway to fix this? I can go anywhere else on the internet fine and it works on google chrome, but on safari it shows a blank screen with the bar on top after it loads.

    YouTube will not work on safari for me on the ipad. Is there anyway to fix this? I can go anywhere else on the internet fine and it works on google chrome, but on safari it shows a blank screen with the bar on top after it loads, if it's even loading at all.
    I do not know if it's relevant or not, but I got a message on my ipad while on safari saying that my iPhone has a virus. I looked it up and it seems it might have just been an ad from the website I was on, but it happened around the same time YouTube stopped working.

    You will find that using the YouTube app will provide a better viewing experience for YouTube videos.

  • NYT videos not working in Safari 5

    NYT videos not working in Safari 5

    Work fine for me - they are just normal Flash videos.
    Make sure your Flash Player is up to date.
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

Maybe you are looking for

  • FAQ: How can I make money in the App Store the easy way?

    Suppose I have an app, like a game. It's not very good, I didn't really invest anything, there are a lot better ones out there but I want to make money with it. Are there ways I can do this? Q: Can I pay an "agency" in India, Russia, China or here in

  • My ipod touch keeps removing my songs and videos. What do i do.

    Im getting sick and tired of this. Yesterday morning my ipod deleted all my songs NOT bought by itunes. It also deleted my video, 8mile, which i did buy off of itunes. So last night i plugged it into my computer, and it was fine that night. All the s

  • Duplicate IP on a default gateway interface = Bad

    I just had an entire VLAN drop out due to a host being brought onto the network that had been erroneously configured with a static IP that happened to be in conflict with the HSRP default gateway IP of the core switch; fortunately, we were able to re

  • How to tell if your screen is dying

    I have been noticing on my iMac that any sort of bright colors show these dark swirls coming out the sides of my screen. Its really hard to explain. Say when I boot up my machine and its showing the Apple Logo with the white background I see on the s

  • Elements 12 Question ....Moving files to new drive from old drive.

    I am using Elements 12...my external hard drive is almost full with photo files...a 1 TB WD....and I need to get my photo files to a new drive.....a G-Technologies 4 TB external.....What is the best way to do this?....  Restore from  a backup drive t