Perfect for a month, now drop in speed

Hi, I have had BT infinity 2 for just over a month. The speed has been very consistent (around 60-70mpbs download) until yesterday, since then it has drastically dropped to just a mere 1mbps download.
I have HH5, no disconnections, just an unexpected major drop in speed for the past 48 hours.
http://www.speedtest.net/my-result/4096198294
I have a Openreach socket and modem fitted to the wall which lead to both the landline phone and HH5 itself, I have not changed or touched the setup since the engineer fitted everything in mid December.
Thanks

Hi DaveRVD, 
Thanks for your post. Are you still having issues with your speed? If so please send me in your details using the "Contact The Mods" link found in my profile and I will be in touch to help.
Cheers,
OlgaC 
BTCare Community Mod
If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Similar Messages

  • I purchased a monthly pack and havent been able to use it. I have been getting charged for 3 months now and I still get an error message saying "unable to load all your plans". How do I re-install or dowload and get my last 3 payments reimbursed?

    I purchased a monthly pack and havent been able to use it. I have been getting charged for 3 months now and I still get an error message saying "unable to load all your plans". How do I re-install or dowload and get my last 3 payments reimbursed?

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/
    or
    Adobe contact information - http://helpx.adobe.com/contact.html

  • Is anyone else having issues with "skipping" while the songs are playing?! It is very aggravating to us... and we've had it going on for several months now.  Any ideas at all how to fix it?

    Is anyone else having issues with "skipping" while the songs are playing?! It is very aggravating to us... and we've had it going on for several months now.  Any ideas at all how to fix it?

    So, don't use youtube.
    http://www.the-top-tens.com/lists/best-alternatives-youtube.asp
    http://www.youtubealternative.com/

  • In flex charts the label for next month get dropped

    I found for DatatTimeAxis if you set disabledRanges to the last date of the month the label for next month gets dropped using property labelUnits='months". Any ideas? Below is the code:
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the DateTimeAxis class. -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
         <mx:Script>
              <![CDATA[
                   import mx.collections.ArrayCollection;
                   [Bindable]
                   public var stockDataAC:ArrayCollection=new ArrayCollection([{date: "2005, 6, 1",
                             close: 30}, {date: "2005, 7, 31", close: 25}, {date: "2005, 8, 3",
                             close: 40}, {date: "2005, 9, 4", close: 30}, {date: "2005, 10, 5",
                             close: 50}, {date: "2005, 11, 6", close: 43}]);
                   private var d:Date=new Date("7/31/2005");
                   [Bindable]
                   private var offDays:Array=[d];
                   public function myParseFunction(s:String):Date
                        // Get an array of Strings from the comma-separated String passed in.
                        var a:Array=s.split(",");
                        // Create the new Date object. Subtract one from
                        // the month property because months are zero-based in
                        // the Date constructor.
                        var newDate:Date=new Date(a[0], a[1] - 1, a[2]);
                        return newDate;
              ]]>
         </mx:Script>
         <mx:Panel title="DateTimeAxis Example"
                     height="100%"
                     width="100%">
              <mx:LineChart id="mychart"
                               height="100%"
                               width="100%"
                               paddingRight="5"
                               paddingLeft="5"
                               showDataTips="true"
                               dataProvider="{stockDataAC}">
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis dataUnits="days"
                                             parseFunction="myParseFunction"
                                             disabledRanges="{offDays}"
                                             labelUnits="months"/>
                   </mx:horizontalAxis>
                   <mx:verticalAxis>
                        <mx:LinearAxis baseAtZero="false"/>
                   </mx:verticalAxis>
                   <mx:series>
                        <mx:LineSeries yField="close"
                                          xField="date"
                                          displayName="AAPL"/>
                   </mx:series>
              </mx:LineChart>
         </mx:Panel>
    </mx:Application>

    I found your posted code to be messed up. I fixed it and could not see your problem.
    Here is the fixed code.
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the DateTimeAxis class. -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
         <mx:Script>
              <![CDATA[
                   import mx.collections.ArrayCollection;
                   [Bindable]
                   public var stockDataAC:ArrayCollection=new ArrayCollection([
                     {date: "2005, 6, 1", close: 30},
                     {date: "2005, 7, 31", close: 25},
                     {date: "2005, 8, 3", close: 40},
                     {date: "2005, 9, 4", close: 30},
                     {date: "2005, 10, 5", close: 50},
                     {date: "2005, 11, 6", close: 43}]);
                   private var d:Date=new Date(2005,8,31);
                   [Bindable]
                   private var offDays:Array=[d];
                   public function myParseFunction(s:String):Date
                        // Get an array of Strings from the comma-separated String passed in.
                        var a:Array=s.split(",");
                        // Create the new Date object. Subtract one from
                        // the month property because months are zero-based in
                        // the Date constructor.
                        var newDate:Date=new Date(a[0], a[1] - 1, a[2]);
                        return newDate;
              ]]>
         </mx:Script>
         <mx:Panel title="DateTimeAxis Example"
                     height="100%"
                     width="100%">
              <mx:LineChart id="mychart"
                               height="100%"
                               width="100%"
                               paddingRight="5"
                               paddingLeft="5"
                               showDataTips="true"
                               dataProvider="{stockDataAC}">
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis dataUnits="days"
                                             parseFunction="myParseFunction"
                                             disabledRanges="{offDays}"
                                             labelUnits="months"/>
                   </mx:horizontalAxis>
                   <mx:verticalAxis>
                        <mx:LinearAxis baseAtZero="false"/>
                   </mx:verticalAxis>
                   <mx:series>
                        <mx:LineSeries yField="close"
                                          xField="date"
                                          displayName="AAPL"/>
                   </mx:series>
              </mx:LineChart>
         </mx:Panel>
    </mx:Application>
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • My iPod has not been working for a month now and i was hoping that you could help me.The part where you charge and sync the iPod is not connecting.There is defiantly not the lead as we use it for the iPhone and that works please could you help!

    my iPod has not been working for a month now and i was hoping that you could help me.The part where you charge and sync the iPod is not connecting.There is defiantly not the lead as we use it for the iPhone and that works please could you help!
    yours sincerly
    jackfromsurrey

    What I am saying is ..........
    The iPhone HAS to be active making calls on the UK carrier network for the carrier to identify as "theirs" and therefore eligible for the Carrier to unlock
    The way to achieve this is to use a PAYG sim making and receiving calls to establish a customer relationship  with the Carrier and then follow the Carrier's process to unlock
    With a PAYG it usually means adding a specified (by the carrier ) amount  usually £15 /£20 depending on the carrier
    This is how O2 function and according to Gemma  this is how Vodafone work

  • We still can't print an invoice of our Creative cloud. There's a failure in the system FOR 8 MONTHS NOW. Why can't this be solved ??????????

    We still can't print an invoice of our Creative cloud. There's a failure in the system FOR 8 MONTHS NOW. Why can't this be solved ??????????

    Yes I have been in contact. Thanks in advance,
    Met vriendelijke groet, With kind regards,
    Hotel Mitland
    Rob Plijnaar
    Directeur

  • I've used firefox for a month now but recently if I type on facebook the quick find search bar pops out. Even if I press Esc, when i type on facebook again the quick find bar pops out again. pls help..

    I've used firefox for a month now but recently if I type on facebook the quick find search bar pops out. Even if I press Esc, when i type on facebook again the quick find bar pops out again. pls help..
    even when i click the register on the top right of mozilla it wont allow me to.

    I've used firefox for a month now but recently if I type on facebook the quick find search bar pops out. Even if I press Esc, when i type on facebook again the quick find bar pops out again. pls help..
    even when i click the register on the top right of mozilla it wont allow me to.

  • I have purchased Adobe CC and have been paying $9.99 for two months now, but all of the sudden today I tried to open it and it is saying that my 30 day trial has expired

    I have purchased Adobe CC and have been paying $9.99 for two months now, but all of the sudden today I tried to open it and it is saying that my 30 day trial has expired and will not let me access it.

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Disc Burn Error #4450 - This has been going on for six months now!

    I cannot burn discs anymore since two upgrades ago. I have tried EVERYTHING, different discs, cleaning out my computer and my iTunes library, making sure nothing was running in the background ... etc. NO luck. I have no clue what to do now and have not been able to burn discs for six months now. Is there an actual support phone number? This is ridiculous! I remember it was a big problem a while ago, and now they want us to upgrade to iTunes 8. If anyone has any suggestions that they can throw my way it would be greatly appreciated. It's possible I might be missing something, but my discs were burning fine before, of course, I upgraded.
    Thanks for any help! ... (^_~)

    I am having the same problem - has anyone responded to you yet? I am deserate - there is got to be way - unless I need to update my cd drivers??
    Let me know if you here anything.

  • MagSafe Power Adapter (no physical damage, buy it just for 14 months,now broken) I want get a new one for free!!!

    (no physical damage, buy it just for 14 months,now broken, no light ) I want get a new one for free!!!

    Take it back to where you bought it from.

  • I been using my iphone from japan for a month now which my sister gave to me even theres no sim inserted in it, but after downloading ios 6.0.1 i cant activate it even i connect it to itunes, it says i have to insert a sim in it....is there a possible way

    i been using my iphone4 from japan for a month now which my sister gave to me even theres no sim inserted in it, but after downloading ios 6.0.1 i cant activate it even i connect it to itunes, it says i have to insert a sim in it....is there a possible way that i can activate it even theres no sim inserted in it?pls help....

    No. All GSM iPhones require a valid sim be in the phone in order to activate. Until you get a valid sim, all you'll be able to do is look at it & make emergency calls.

  • I have been using iphone 4 for 3 months now. today suddently stopped working.

    i have been using iphone 4 for 3 months now. suddenly stopped working

    Does the phone still charge when you use the wall adapter?
    If yes, charge it for about 10 min, then try to do a reset by holding the sleep and home button until the Apple logo comes back again.
    If this does not work, try to connect to your computer in recovery mode, explained here: iPhone and iPod touch: Unable to restore

  • I was able to run windows xp on maverick for several months now it's asking my to insert boot cd from the startup

    I was able to run windows xp on maverick for several months now it's asking my to insert boot cd from the startup

    My computer is 2007 MacBook Pro I'm using the Maverick operating system. I was able to run windows xp on bootcamp until last week when I held down the option button during the startup to click on windows it's wasn't there, only the mac and recovery system where there. So when I went on my mac partition the bootcamp file system was still on my desktop and all the files where there. Then I tried to select the disk to startup to and found the windows system there clicked on it restarted my computer and it said please insert boot disk and press any key to continue

  • TS2776 I have my iphone 5 for 7 months now and from time to time, my contacts, without notice, get scrambled, i.e., multiple contacts go into one, or I lose contacts....How does this happen and why?   And is there a quick fix to reset the contacts as they

    I have my iphone 5 for 7 months now and from time to time, and without warning, my contacts get scambled, i.e., multiple contacts become one.   I am losing my patience.   Help.

    I couldn't find the edit button on my original post so I am posting an update here.
    I have gone through more apps and have had good luck on all but one more.  And it's not that the app doesn't work, I am talking about the Yahoo Weather app, It works fine, but when you swipe between cities the screen lags a bit and it sometimes doesn't move between pages the way it should.  On iOS 7.1.2 it was smooth as butter but on iOS 8.0, not so much.  I will post a note in the app store to let them know.  I really like the Yahoo app better than the new stock app.
    I have been going through my games and they all work fine. Angry Birds (Original and Stella), Canabalt, Minecraft, Bejeweled 2, Silly Walks, PopWords, Doodle Jump, Deep Green all seem to work just fine. 
    Starbucks app works as it should. 
    I will stop back again next week after I have had the weekend to play with it in detail and post my thoughts again.

  • I have used photoshop for several months now when I login, I have lost all my fonts and actions... it is saying I have zero days left in my trial...

    I have used photoshop for several months now when I login, I have lost all my fonts and actions... it is saying I have zero days left in my trial...

    Hi rachel,
    Please refer to the help document below:
    Creative Cloud applications unexpectedly revert to trial mode | CS6, CCM
    Regards,
    Sheena

Maybe you are looking for

  • This Apple ID has not been used in the iTunes store

    This Apple ID has not been used in the iTunes store My apple id registration is not yet complete, when I try to complete the registration it asks for payment option, I don't find any skip option in the process. Even if I enter my payment details it p

  • Transferring Library from Old iPOD mini to new computer...

    My computer was fried about a month ago. My company's IT department replaced it, but I lost my library of iTUNES entirely from the hard disk. The whole library is of course on my old iPOD mini. I want to transfer the library from the old iPOD mini to

  • DTP Filters

    <Moderator message: please use meaningful subjects> Hi All What is the use of Filters in DTP(Data transfer process) and how to create a filter in DTP Thank you Edited by: Siegfried Szameitat on Nov 18, 2008 11:17 AM

  • Upgrading CF 5.0 to MX 7 on Linux

    Hi all, I was just wondering if anyone has any experience upgrading CF 5.0 to MX 7 on a Linux server. I am thinking about upgrading a Linux server running CF 5.0 and Red Hat 7.2 to run MX 7. There are a couple hundred websites on this server and was

  • Debugging Bex query

    Hi All, I have a scenario where an Bex query is called in an webdynpro application using a standard method. I would like to debug the generated program of this query (got it from RSRT) to understand the variables passed. But I am having difficulty in