BT URL works in Google Chrome but NOT in Safari

This is the URL      https://www.bt.com/consumerFaultTracking/secure/fa​ults/tracking.do?pageId=31
All works on that page as one might expect, but when opened in Safari the links/buttons do NOT work!  
Please investigate and correct matters.
Thanks.
David B.

What is the output format?
Sreekanth

Similar Messages

  • Firefox keeps asking to install Flash. When I attempt this, I get an error message stating it failed. Flash works in Google Chrome, but not FF.

    I don't know what happened but Firefox keeps asking me to install Flash. When I attempt to install the program, I get an error message that it has failed. There is no other information given and I'm just left hanging. I've tried this over twenty times with the same results. I've even uninstalled and re-installed Firefox, but this continues. I'm unable to watch any YouTube videos. I then installed Google Chrome and all is working fine. I can't stand the Google company though and really with I could continue using Firefox. Why is GC working for me any FF not? How can I fix this?

    Google Chrome comes with its own Flash plugin, so doesn't require to install Flash separately.
    You can find the latest Flash player versions for Firefox on this page.
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html
    You may have to run the Flash installer as Administrator (right-click: Run as Administrator) and make sure that Firefox and possibly other browsers are closed.

  • 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.

  • Soical buttons not working in firefox & Chrome but OK in Safari

    My webiste has been up and running for a month now but I've now noticed (among an array of other Muse bugs... aaaggghhh) that the 'Facebook Recommend and the 'Pin it' social widget buttons don't work in Firefox and Chrome but they do in Safari?
    http://www.thinksmartresumes.com.au/parthorus-resumes-design.html (freebie tab)
    Also on this page, the 'LinkedIn share' button works fine in Safari and Chrome but not in Firefox? See screen shots...
    The Muse Team (ie Danni Beaumont) clearly state in all the tutorial videos that they guarantee multi-platform user friendly code.... I spend half my day finding bugs between different browsers? Not happy.

    I am having similar issues - the URL that the plugin insists it wants to have complete (with http:// at the front) is being concatenated with another "http://" when it is rendered on the page.
    This is the URL I have in the properties for the button:
    But this is the URL that shows up in the Share dialog:
    If I take the http:// OFF the property for the button (so, I start with "www...."), the widget doesn't render.  I get an error that the thumbnail can't draw. 
    Yes, annoying. 

  • JQuery Cycle 2 Image Slideshow (Works (cycles) in Explorer, but not in Safari or Chrome??

    I am novice designer. I copied code for Cycle2 into my head (declaration or initializer?) and body (image source) of HTML document. The slider cycles through pictures in Explorer, but not in Safari or Crome. Any help, suggestions, alternatives would be appreciated. Thank you.
    I have tried
    Spry Content Slideshow- trouble being responsive when resized.
    FlexSlider2.2- trouble with image height/viewport sizing to big (kinda had workaround), but had trouble with getting HTML text and image together on one slide.
    WOWSlider- could not get rid of the gutter/margins surrounding the slider.
    Cycle2-won't work in all browsers (for me)
    Here is my code (on otherwise empty HTML and CSS pages) for Cycle 2
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>HTML5 document with Cycle2</title>
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Plugin Script-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    .cycle-slideshow, .cycle-slideshow * {
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin:0 auto;
    width:45%; /**adjust width as required**/
    .cycle-slideshow img {width: 100%;}
    </style>
    <title>Untitled Document</title>
    <link href="css/boilerplate.css" rel="stylesheet" type="text/css">
    <link href="css/stylesheet.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="css/respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="LayoutDiv1">Use Insert Panel for additional Fluid Grid Layout Div tags. Note: All Layout Div tags must be inserted directly inside the "gridContainer" div tag. Nested Layout Div tags are not currently supported. </div>
      <div id="top">This is the content for Layout Div Tag "top"</div>
      <div id="header">This is the content for Layout Div Tag "header"</div>
      <div id="navigation">This is the content for Layout Div Tag "navigation"</div>
      <div id="slider"><h1><a href="http://www.malsup.com/jquery/cycle2/">jQuery Cycle 2</a> Responsive Slideshow</h1>
    <!--begin slideshow-->
    <div class="cycle-slideshow"
        data-cycle-pause-on-hover="true"
        data-cycle-speed="700"
    >
    <!--your images go here-->
    <img src="http://malsup.github.com/images/beach1.jpg" data-cycle-title="beach1">
    <img src="http://malsup.github.com/images/beach2.jpg" data-cycle-title="beach2">
    <img src="http://malsup.github.com/images/beach3.jpg" data-cycle-title="beach3">
    <img src="http://malsup.github.com/images/beach4.jpg" data-cycle-title="beach4">
    <img src="http://malsup.github.com/images/beach9.jpg" data-cycle-title="beach9">
    <!--end slideshow-->
    </div></div>
      <div id="content1">This is the content for Layout Div Tag "content1"</div>
    </div>
    </body>
    </html>

    Resize/re-scale & optimize all images for the web in your graphics editor before you insert them into your web pages.  Saves bandwidth and reduces page load.
    Cycle2 is a responsive slideshow.  If you want all images to remain 400px and not responsive to layout,  you'll need to modify the CSS code a little.
    Details on using Previous & Next links are in the documentation.
    http://jquery.malsup.com/cycle2/demo/prevnext.php
    Nancy O.

  • Flash Player is pre-installed in Google Chrome, but not enabled. Flash Player is not there among the plug-ins.

    Flash Player is pre-installed in Google Chrome (Windows7), but not enabled and it is also not there among the list of plug-ins.

    As we don't have any control over the installation process on Chrome, you'd need to seek help in the Chrome forums.
    That said, this seems very odd.
    Type the following in the address bar:
    chrome://plugins/
    Click Details and expand the list.
    Scroll down, and you should be able to find Adobe Flash Player in the list.
    If it's not there, I'd remove Chrome and just download it again from Google.
    Also, do you have any security or privacy software (maybe from a not-so-mainstream vendor?) that might helpfully remove Flash Player for you?

  • Text has moved in Google Chrome, but fine in Safari and Firefox?

    Hi,
    A client pointed out to me the other day that when they went onto my site using Google Chrome the Intro text
    had moved down but when viewed using Safari or Firefox it was fine.
    Does anybody happen to know why it has done this?
    www.segmentdesign.co.uk
    Many thanks
    Darren

    Hi Abhishek,
    Thanks for your help, that is odd that it's fine on your machine!!
    I've just upgraded my machine to OS X Yosemite and have the latest Chrome, but still shows the same problem.
    Would there be something in settings, I don't have another machine to test it on.
    Any ideas?
    Many thanks
    Darren

  • Object based navigation in portal works in firefox/chrome but not in explorer

    Hello,
    Im running a portal 7.3 with ECC6 EHP7 as backend.
    im attemting to trigger an object based navigation from the mss application.
    the object based navigation is triggered in firefox but in in explorer
    ive attempted to HTTPTrace , it seems that com.sap.portal.navigation.objbase.objbasednavigation is not triggered in internet explorer, only the POST method beforehand.
    im guessing it is due to some network policy but they currently out of clues on how to help me.
    the popup blocked is disabled, and the SAP portal and ecc system are on the same domain and both are using fully qualified domain names.
    is there anything else i could do? Ive tried going through the wiki and error handling notes about OBN but to no avail.
    Many thanks,
    Eli

    I have had several people test and they all claim the Web Site works perfectly. Guess my question is what is unique about my computer? What setting or parameter do I have set that is making my computer act differently when I use Firefox 7.01 as opposed to 5.0 or 3.26? I have set up a test site that people can look at.
    Www.wallack-family-tree-test.com
    user name (all lower case) viewtree
    Password (all lower case haleydog
    The only valid link is Wallack/Pisik/Breiman
    In either one of the Contents Sections click on Surnames
    Next click on Rose
    When the next page is displayed Rose should be on the top of the page and http://wallack-family-tree-test.com/iWeb/Welcome_files/DR_IDX/IDX001.HTM#ROSE should be in the URL field.
    If you see this then things are working properly. On my computer, I see the correct data in the URL field but the Page that is loaded HAS NOT automatically scrolled down to ROSE. Rather, it is at the TOP of the page and I either have to scroll down to Rose or I can bring the mouse cursor up to the URL field and hit enter. My question - Why is my system NOT scrolling down?

  • Cloudfront signed url works with "setup page", but not local copy

    I generated a signed url so I could do rtmp streaming through cloudfront from a S3 bucket.
    When I put this url as the "src" of the player found here: http://osmf.org/dev/2.0gm/setup.html, I can see my video, however, it doesn't work on my local copy of Strobe Media Player.
    I went and grabbed the latest available versions from source forge (2.0 of OSMF and 1.6 of SMP), compiled them, and tried to play the file, but it wouldn't work on my compiled copy.
    My player works fine with normal videos, only when using signed urls from cloudfromt do I get ths error
    It uses a signed url like this:
    rtmp://s161ki0ys7euuz.cloudfront.net/cfx/st/vid_cdntest001?Signature=RSS0PV4RCq6lsF7gKE202 sHJw0lxCE9zwJbISVuovaBnARQFCVZ2e6SSejHXN4uIT5uotDBT8iYZVvfUC3rq0A571CWVETsnlJ4jhEir1JE5w-p jC-cx~CjxkcVQSj8EC07zozoNCypiBggLy0w2Id8TUxTuX9KrIDlN~BImwBjN1cnuZMpms9dpfuw-MLFefHtTDwfZZ Yh00LSUAEqA0BwqhA6NECHbrkaXQjUM7r5TRSP3ZH5uFIWhUWLMH3WWYLyz5bQab3FQxZhI4BhdFPJm6Z0m6HVVnuz eMqibMWDGybtoepjkTUYJqeTaYQUpIHrp1-0-dDVhhCx7BxCOlA__&Key-Pair-Id=APKAJSRQXYNPUENHF6HQ&Exp ires=1387398525
    And it requires a flashvar "urlIncludesFMSApplicationInstance" to be set to true. The flashvar is set in my local copy of the player.
    I set "verbose" to true, and I get "Playback failed. Failed to play(stream ID: 1)"
    The AWS people were able to play the file on their debug player, so it isn't a problem with the video. It's just something about my copy of the player or the environment I'm on.

    I'm initlaizing the player using swfObject like this:
    $(document).ready(function(){
            callPlayer("rtmp://s161ki0ys7euuz.cloudfront.net/cfx/st/vid_cdntest001?Signature=EYvGzU2I4CRLE4h8pD8fec3A6fwfIqadzuAtVBQcsDeh0zU9rexKJqq-5GVNG~PdNlV~nbdSlUl4FAJ6rCuOTAh7BrXkieg26z4y3uMgzLm3I3p8GSjTyUBe5rIbZhnxUulSFfHoOWFDV-keORil3~zG91OVDKxvsbIrZv6-IsYTJQzYA7w6R2jy6SiJEJwfqNvD5xdiv2w87GuR472kELQ79yvI6twgeDnZOkN~w9khQSVLcqqmAkkTHQxxkBR8hs954VaUEAKZO~ejwZ3ju8xTUAeuuQu3y06r6SHNGwhLdQh00qV1PUHSMdPdHp3SzZdCxwAepV6xUx2~TR2idw__&Key-Pair-Id=APKAJSRQXYNPUENHF6HQ&Expires=1387466710");
        function callPlayer(x){
        $("#PlayerHolder").html("<span id='PlayerDiv'></span>");
            var flashvars = {};
            flashvars.verbose=true;
            flashvars.src=x;
            var parameters = {};
            parameters.urlIncludesFMSApplicationInstance=true;
            var attributes = {};
            attributes.name="player";
            attributes.id="player";
            swfobject.embedSWF("StrobeMediaPlayback.swf?ID="+Math.random()*100,"PlayerDiv","470","320","11.2","scripts/expressInstall.swf", flashvars, parameters, attributes);

  • OS X, Load .dylib form applet, works in Chrome but not in Safari

    In safari I get this error:
    java.lang.UnsatisfiedLinkError: /Library/Application Support/XXXXX/libXXXX.dylib: dlopen(/Library/Application Support/XXXXX/libXXXX.dylib, 1): no suitable image found.  Did find:
      /Library/Application Support/XXXXX/libXXXX.dylib: open() failed with errno=1
    I have verified that both browsers are using the same version of Java. I've tried using a 32 and a 64 bit version of the .dylib. In Chrome the 64 bit versions works fine. In Safari, both 32 and 64 fail to load.
    There are no errors saying it is security related.
    Anyone have any ideas on how to make it load in Safari?
    Thanks!

    In safari I get this error:
    java.lang.UnsatisfiedLinkError: /Library/Application Support/XXXXX/libXXXX.dylib: dlopen(/Library/Application Support/XXXXX/libXXXX.dylib, 1): no suitable image found.  Did find:
      /Library/Application Support/XXXXX/libXXXX.dylib: open() failed with errno=1
    I have verified that both browsers are using the same version of Java. I've tried using a 32 and a 64 bit version of the .dylib. In Chrome the 64 bit versions works fine. In Safari, both 32 and 64 fail to load.
    There are no errors saying it is security related.
    Anyone have any ideas on how to make it load in Safari?
    Thanks!

  • Why is the URL constantly updated in ie but not in safari?

    Safari: https://www.mysite.com/app/editor?handle_type_id=7#m=editor&wfs=2
    Internet Explorer 8: https://www.mysite.com/app/editor?handle_type_id=7#1262397566?1262397566?1262397566?126239 7566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?12623975 66?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566 ?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1 262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?126 2397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?12623 97566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397 566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?126239756 6?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566? 1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?12 62397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262 397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?126239 7566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?12623975 66?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566 ?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1 262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?126 2397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?12623 97566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397 566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?126239756 6?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566? 1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?12 62397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262 397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?1262397566?126239 7566?m=ed
    When I go to the site in IE, it starts out fine, but ?1262397566 is added repeatedly (I can actually see them added 1 at a time), until it runs out of room obviously.
    Does anyone know what this number is and why it is showing up repeatedly? Something tells me it's an IE thing but it should only be showing up once.
    Any help would be greatly appreciated!

    A little more information:
    I have a method in my main .mxml file:
    private var browserManager:IBrowserManager = BrowserManager.getInstance();
    private function saveHistoryStateHandler( event:CustomEvent ):void {
    browserManager.setFragment( URLUtil.objectToString( event.data, '&', false ) );
    In my other modules (separate .swfs), I dispatch a new CustomEvent and this is triggered whenever it hears the event. This seems to work fine in firefox, safari, etc.
    If I comment out the browserManager.setFragment line, it doesn't get stuck in an infinite loop (obviously history management is disabled in this case, however).
    Thanks!

  • A php script works in IE but not in safari .. please help

    The following php works in internet explorer but not in safari or chrome .
    In IE all files are saved in specified folder .
    But in safari , xml portion works .. that is myxml.xml is saved in 'uploads/'.$temp directory ... but uploaded files are not saved in the given folder ..instead they are saved in 'uploads' folder .... not in 'uploads/'.$temp folder or 'uploads/'.$temp.'/image/' folder ...
    The script is called from flash ...
    I am new to php ... please help ...
    <?php
    session_start();
    $temp=$_SESSION['myfolder'];
    $raw_xml=file_get_contents("php://input");
    if(isset($_FILES['Filedata']['name'])){
    $whichfile=$_FILES['Filedata']['name'];
    $whichextension=substr($whichfile,-3);
    if($whichextension=='flv'||$whichextension=='pdf'||$whichextension=='txt'||$whic hextension=='mp3'){
    move_uploaded_file($_FILES['Filedata']['tmp_name'],'uploads/'.$temp.'/'.basename ($whichfile));
    elseif($whichextension=='jpg'||$whichextension=='png'||$whichextension=='gif'){
    move_uploaded_file($_FILES['Filedata']['tmp_name'],'uploads/'.$temp.'/image/'.ba sename($whichfile));
    elseif($raw_xml!=false){
    $fp=fopen('uploads/'.$temp.'/myxml.xml','w');
    fwrite($fp,$raw_xml);
    fclose($fp);
    else{
    echo "&fname=$temp";
    ?>

    Use this style rule for that image to get that custom cursor:
    <pre><nowiki>cursor: url("dart.cur"), auto;</nowiki></pre>
    See also:
    *https://developer.mozilla.org/en/Using_URL_values_for_the_cursor_property

  • Newest version of flash player not playing in newest version of google chrome but works fine in IE

    newest version of flash player not playing in newest version of google chrome but works fine in IE

    jennifer.jones214 wrote:
    In your  opinion, should I uninstall Firefox if I am installing Waterfox?
    Waterfox can coexist peacefully with Waterfox.  I have both installed, but never use Firefox any more.
    Not only can Waterfox run in 64-bit address space, it also is better optimized during compile time than Firefox.  (For obvious reasons; Firefox is compatible with many old systems, Waterfox only needs to be compatible with new 64-bit systems.)
    P.S. regarding Chris' advice above; Firefox and Waterfox use the same profile, so if that is actually the problem, then it will occur in both browsers.

  • CRVS2010 - Printing does not work in Google Chrome

    Ie and Firefox can work
    but In Chrome, clicking the print icon opens a window to print to pdf with an export button.
    my project use vs2010 asp.net
    CR ver is 13.0.200.0
    Did I miss a hot fix somewhere or?
    Plz Help....

    Google Chrome is not supported. See the [Supported Platforms|http://www.sdn.sap.com/irj/sdn/index?rid=/library/uuid/e06b8953-a62b-2d10-38b9-ca71f747e2b1] documentation.
    Now, I recall seeing a thread on this forum where someone reported that they got it working on Google Chrome. You may want to search the forum and see if they can give you any tips.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Spry Framework for Ajax does not work on google chrome

    I downloaded this beautiful gallery to use it on my site    http://adobe.github.com/Spry/demos/gallery/index.html
    Everything ok on InternetExplorer and Firefox but it does not work on Google Chrome.
    Can you help me to solve this problem? 

    sorry but this forum is for questions about JavaScript inside Acrobat and not general language frameworks. We don't have a discussion topic for Spry.

Maybe you are looking for

  • Open vi reference in executables

    My application requires to run two sub vis in parallel , Even though the VI is running the executable is showing reference. I am using open VI reference to open the sub vi from the main vi please reply..urgent

  • No Sound?!?!  Everything appears to be working though???

    Hi... I just had an issue with Logic Pro 9.1.3 and suddenly I have no sound output via Core Audio? I appear to be sending and receiving midi data but for some reason I can't hear it... Does anyone have any idea of why I would get this? Thanks in Adva

  • Recurring Postings

    Hi Experts, I have a Recurring Posting set up for Rent which is set to be posted on the first of every month, starting 01 Jan 2009. If I now run the Confirmation List, the system suggests that 4 months journals are posted. If choose to post just one

  • Gmail email print is small and I don't know how to adjust it.

    When I open my email the message print is so small I cannot read it. Some say it is an adjustment on the zoom feature in google which I don't know about or where to find the adjustment. Others have said that it is the settings in gmail again which I

  • New Airport Express

    Ok, I am just about to get an Apple Airport Express from my friend (I'm actually buying it) because it turned out he didn't need one. Before I buy it, I want to know. It will pick up my existing network and boost the signal, but what I don't know is