Fed up trying to get this sorted over the phone

My parents are both pensioners and understand nothing about broadband. They joined BT ADSL broadband in the summer of 2011. I recently moved into the property and noticed the state of their broadband. It is terrible. I took it upon myself to try and sort it out with BT, thus begins a long and very frustrating adventure.
The problem is constant very slow speed, about 1mb, usually less in the evenings and constant disconnections throughout the day. Sometimes when the telephone rings. The master socket is ancient, we moved into the house in the early 1980's and the socket and wiring have never been touched by us. The socket has a hard-wired extension coming out of the side which runs upstairs to a phone in the bedroom. The extension cannot be unplugged. There is a filter on the main socket, which the router is plugged into and also a filter at the end of the extension in the bedroom.
This is the type of master socket we have
I phoned BT a few days before christmas, around the 22nd and explained the problem. They recognised there was a problem and said the would elevate it to 2nd line support. 2nd line support called a few days later and said they would get an engineer to call to arrange a time to come out. I never received a call from an engineer.
I left it until after christmas and called again on the 30th December. It appeared BT had no record of my previous call. I had to explain everything again and go through the same scripted process. I explained I had already been through all this and my case had been elevated to 2nd line support. He told me he had no record of that. Frustrated I just told him to give me a direct number for 2nd line support which he did.
I then phoned 2nd line support and wanted to know why I had not received a call from the engineer. They did not seem to know. I then had to explain the whole problem a 3rd time to 2nd line support. The chap said the problem was our ip profile and he would reset it. To wait 24-48 hours and he "promised" our speeds would increase and the connection would be stable. I waited for 48 hours and no change. I waited a further day and still no change. I checked on the BT speedtest and, according to that, my ip profile had not been changed at all.
I called 2nd line support yet again and explained the problem a 4th time. They told me my line was being capped and they would take the cap off and would call me back in 10 mins. In a few mins our broadband went down. When it came back I noticed our speed had jumped from 1mb to nearly 3mb (according to the BT website our estimated speed is 6mb). Hurray I thought, finally some progress. 2nd line support called back and said they would call back the next day (3rd Jan) to check how things were going.
The next day, our connection dropped again in the morning. I checked our speed again and it had dropped 600kbps to 2mb. I waited for the phone call from 2nd line support which never came.
I am sick of phoning and having to explain the whole problem every time I phone and being promised phone calls would be made that never materialise.
These are the speedtest results:
Before I called BT for the first time
Test from immediately after we were "un capped"
Test after connection dropped the next day
Current router stats
It is my belief that we need an engineer to come out and replace our master socket for a start but I am fed up trying to get through on the phone. I was hoping some member of staff who can actually get things done would be present on this forum.
Thanks for reading

Ok engineer came, two of them in fact, took one look at our master socket and swapped it for one of these
They tested the line and said they were getting speeds of 7.1mb on their equipment. Said it could take up to 3 days but we should see an improvement within 24 hours.
These are the stats after 4 hours of use on the new socket.
So fingers crossed in a few days we'll be up to 7mb or so. I'm assuming this speed should gradually increase of it's own accord? No profile needs resetting or anything?

Similar Messages

  • HT1752 I am trying to help my Mom over the phone to open her CD tray on a PPC G-4 iMac - "Desk Lamp" style.  F12 is not working.

    I am trying to assist my mother on the other side of the country.  She has the 'Desk Lamp' G-4 and cannot get the CD tray open.  I tried several things over the phone beginning with F-12.  Nothing is in the tray and nothing is working to open it.  Any suggestions?

    This may help:
    http://support.apple.com/kb/HT2286
    (Even though it is for a PowerMac not an iMac)

  • IOS5.0.1 constant error "iPhone can not make or receive calls.  Restore from iTunes":  I get this message and the phone will no longer work (happend once while on airplain mode and now once while in wifi only area, out of cell range).  help!

    All- I get this message ("iPhone can not make or receive calls. Restore from iTunes" (happend once while on airplain mode and now once while in wifi only area, out of cell range)). iPhone 4.  Newest OS.  Never happened with old OS! Cycling phone on/off does not help.  Ignoring message causes phone to cycle off then on.  After first time this happened, I restored.  Six days later...same problem!  Clearly a new fix is necessary.  Suggestions? 

    I have not tried that...I will look up the process so that I can do it correctly (and still transfer all of my files, contacts, etc).  Any suggestions?  What is the advantage of restoring as a new device..is this more akin to a complete wipe of a hard drive?

  • HT204053 My wife and I shared the same AppleID but want to break these apart. We set up a new AppleID for her but can't get this changed on the phone. How do we switch her AppleID default on her iphone 4?

    My wife and I shared the same AppleID but now want to break these apart into separate accounts. I have set up a new appleid for her and also set up on line. However, I can't figure out how to change this on her iphone4. I have looked at all of the General settings but need guidance. When I use the phone to try to purchase songs from itunes, it reverts to the old appleID. 
    Any suggestions?

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    Providing you are simply updating your existing details and not changing to another account, when you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.
    In order to change your Apple ID or password for your iCloud account on your computer, you need to sign out of the account from your computer first, then sign back in using your updated details. (System Preferences > iCloud, click the sign out button)
    In order to change your Apple ID or password for your iTunes account on your iOS device, you need to sign out from your iOS device first, then sign back in using your updated details. (Settings > store, scroll down and tap your ID)

  • Class cast exception when trying to get a control on the "Wave" mixer

    I am trying to get a control over the level of the Wave mixer. I can get the master, but I need a bit finer control than that. I think I have one, and it compiles, but I get a classCast exception at runtime:
    volumeSearch:
    for (int i = 0; i < mixerInfo.length; i++)
        Mixer.Info info = mixerInfo;
    mixer = AudioSystem.getMixer(info);
    System.out.println("info.getName() = " + info.getName());
    if (mixer.isLineSupported(Port.Info.SPEAKER))
    System.out.println(info.getName() + " supports a speaker");
    lineOut = (Port) mixer.getLine(Port.Info.SPEAKER);
    lineOut.open();
    Control[] controls = lineOut.getControls();
    System.out.println("Supported controls on the speaker:");
    for (int j = 0; j < controls.length; j++)
    Control control = controls[j];
    System.out.println("\tcontrol.toString() = " + control.toString());
    System.out.println("\tcontrol.getType() = " + control.getType());
    if (control.getType().toString().contains("Wave") || control.getType().toString().contains("WAVE")||control.getType().toString().contains("wave")){
    volumeControl = (FloatControl)controls[j];
    break volumeSearch;
    I get the class cast exception when I try to get the control at :volumeControl = (FloatControl)controls[j];
    volumeControl is declared earlier in the class as a FloatControl.
    Any tips?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hey guys, thanks for replying to my post!
    Here's the rub: I am able to use the method you are describing, but it gives me control over the wrong mixer.
    On the main mixer, it gives me control over the "Master" volume, which means that in addition to the wave output, it also controls every other output simultaneously, such as the Mic output. I am trying to get control of the "Wave" output. When adjusting the Wave out, it only effects digital audio output, but leaves the analog outputs (like the Mic volume) alone.
    Now, when I call the complete method:
        private void initVolumeControl()
            Port lineOut;
            FloatControl vol;
            Mixer mixer;
            Mixer.Info[] mixerInfo = AudioSystem.getMixerInfo();
            try
                volumeSearch:
                for (int i = 0; i < mixerInfo.length; i++)
                    Mixer.Info info = mixerInfo;
    mixer = AudioSystem.getMixer(info);
    System.out.println("info.getName() = " + info.getName());
    if (mixer.isLineSupported(Port.Info.SPEAKER))
    System.out.println(info.getName() + " supports a speaker");
    lineOut = (Port) mixer.getLine(Port.Info.SPEAKER);
    lineOut.open();
    At this point, if I wanted to control the master volume, I would get the volume control over
    the main mixer here
    by calling
    vol = (FloatControl) lineOut.getControl(FloatControl.Type.VOLUME);
    But the problem is that gives me control over the main, and not the wave volume.
    So, on the "lineOut", let's query it for all of the different controls available
    Control[] controls = lineOut.getControls();
    System.out.println("Supported controls on the speaker:");
    for (int j = 0; j < controls.length; j++)
    Control control = controls[j];
    System.out.println("\tcontrol.toString() = " + control.toString());
    System.out.println("\tcontrol.getType() = " + control.getType());
    if (control.getType().toString().contains("Wave") || control.getType().toString().contains("WAVE") || control.getType().toString().contains("wave"))
    volumeControl = (FloatControl)control;
    break volumeSearch;
    } catch (Exception e)
    System.err.println("There was an error while trying to get a volume control");
    e.printStackTrace();
    And my output from this is:info.getName() = Primary Sound Driver
    info.getName() = Realtek HD Audio output
    info.getName() = Primary Sound Capture Driver
    info.getName() = Realtek HD Audio Input
    info.getName() = Java Sound Audio Engine
    info.getName() = Port Realtek HD Audio output
    Port Realtek HD Audio output supports a speaker
    Speaker volume = 0.5000076
    Supported controls on the speaker:
    control.toString() = Volume with current value: 0.5000076 (range: 0.0 - 1.0)
    control.getType() = Volume
    control.toString() = Balance with current value: 3.0517345E-5 (range: -1.0 - 1.0)
    control.getType() = Balance
    control.toString() = Mute Control with current value: false
    control.getType() = Mute
    control.toString() = Wave Control containing Volume, Balance, and Mute Controls.
    control.getType() = Wave
    but I also get the exception:There was an error while trying to get a volume control
    java.lang.ClassCastException: com.sun.media.sound.PortMixer$CompCtrl
    at audiotools.AudioPlayer.initVolumeControl(AudioPlayer.java:236)
    at audiotools.AudioPlayer.<init>(AudioPlayer.java:102)
    at audiotools.AudioPlayer.getInstance(AudioPlayer.java:59)
    at gui.windowmanager.WindowManager.run(WindowManager.java:208)
    at java.lang.Thread.run(Thread.java:595)
    So, as you can see, when I query the line that supports SPEAKER, it says it has an additional item (Mixer? Line?) called "Wave Control" that also has it's own Volume, Balance and Mute controls.
    I need to get the Volume control associated with the "Wave", not the one associated with the "Master". The Master provides too general of a control on the system mixer.
    Edited by: J_Y_C on Oct 30, 2008 6:09 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • HT4798 i created my apple id account, verified but know i m unable to log on, it says incorrect password, i tried to reset via forgot password option but it does not send reset password page to my e- mail address, how can i get this sorted or delete my pr

    User created apple id account, verified but know she is unable to log on, it says incorrect password, she tried to reset via forgot password option but it does not send reset password page to here e- mail address, how can i get this sorted? or how can i get her whole apple account deleted and created new one using same e - mail address?

    The idea to jumpstart by change was not the smartest one, but gives you an opportunity to use that "temporary" account as permanent. You do not have a choice cause obviously despite you thinking that old account is no more -it does exist on Apple servers. And if you are unwilling to share your [email protected] with friend, just create one extra [email protected] for your friend. One suggestion - do not use gmail.

  • Trying to add firefox to MAC Apps and I get this error. The Finder can't complete the operation because some data in "Firefox.app" can't be read or written. (Error code -36)

    I have a new IMac with OS Lion. When trying to open some websites they open with Safari by default. I am trying to change this by changing the "open with" default to Firefox but I can't move Firefox to the Apps location.

    The hard drive may be dying anyway, or the directory damaged because it is so full.  You should never let the hard drive get over 85% full.
    A -36 error is a read/write error.
    All you did with the power is reset the SMC.  Does nothing to reset everything to factory settings. 
    Do you have your original 10.4 installer discs for the MacBook?
    Is your data backed up?

  • Hello ive been trying to get this matter token care of for the past 24 hrs and still no help im getting very upset now I paid 100 plus $$ to have this program that isn't even working I would like to speak to someone about on the phone I got a 1800 number

    hello ive been trying to get this matter token care of for the past 24 hrs and still no help im getting very upset now I paid 100 plus $$ to have this program that isn't even working I would like to speak to someone about on the phone I got a 1800 number for tech but everytime I call it hangs up and says to chat........ ive been doing that all day yesterday its kinda getting old telling the same thing over n over again so I would like some real live help a number I can call or someone can call me 402 802 1211 everytime I try to do something on this it ask for my serial num I put it in and it says invalid number and when I do my pics it has trail across them

    Hi,
    I'm sorry to hear that you are having problems but this is a user to user forum and only occasionally visited by Adobe staff. Depending on your version of Photoshop elements, you may be able to get help through the chat sessions starting here
    https://helpx.adobe.com/uk/contact.html?promoid=KLXNA
    If you give us details like your operating system, Photoshop elements version and the problem you ae having, someone may well be able to help you.
    Brian

  • How to view mjpeg on Iphone?? Trying to get this url to work...

    Need some help. I've been reading that I can download an app to view mjpeg camera feed. I've tried a few free apps, and can't get it to work. I'm trying to load this page on the iphone:
    http://209.50.173.119:1000/
    Username: guest
    Pass: guest
    I can view this fine in IE, etc. Maybe you can can help me to get this to work on the iphone???
    Message Edited by Jason B on 01-25-2010 12:42 PM

    What is the Model no of the Camera...?
    You can view the video on I-Phone.It can work provided your camera is communicating wirelessly with iphone. You also need applications like adobe flash player to be able to view the images on your iphone. 
    Try this link.

  • HT1926 when i try to install update i get this error message  the feature you are trying to use is on a network resource that is unavailable   any ideas

    every time i try to update itunes i get this error message    The feature you are trying to use is on a network resource that is unavailable    then asks me to find the folder containing the instalation package ITunes.msi

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Trying to burn a playlist in itunes and i get this message at the end 'The attempt to burn a disc failed. An nknown error occurred (4450)'.  This is with a new Dell laptop running windows 8. The playlist was 17 songs from cd's and itunes.  Any ideas?

    Trying to burn a playlist in itunes and i get this message at the end 'The attempt to burn a disc failed. An nknown error occurred (4450)'.  This is with a new Dell laptop running windows 8. The playlist was 17 songs from cd's and itunes.  Any ideas?

    try this...
    This is how I managed to fix the problem...and I hope this helps others in the similar situation.
    I tried with another program..latest version of Nero, and this was also stopping at the 'initialising' stage. I was now lost! I thought the last resort is to give Evesham (My PC manufacturer) a buzz. They were very helpfull. Basically go into 'Control Panel', 'System', and click on the Hardware tab, then 'Device Manager'. Uninstall everything in the DVD/CDRom Drives. Then uninstall everything under the catagory IDE ATA/Atapi disk controllers. This is where my problem was, as I only had one IDE channel here. You should have 4 or 5! Reboot your machine, and everything will automatically re-load. I tried burning using Nero and it worked. Then the big test was iTunes. It worked 1st time!
    I asked why the IDE channels have dissappearred, and he said sometimes uninstalling Programmes occasionally removes them.
    I hope this will help others who are having problems to burn stuff on iTunes.

  • I ordered Illustrator for another user.  I received an invitation that was accepted, logged in and tried to change the account to the name and email of the person it was ordered for.  How can I get this changed and the invitation sent to the right person?

    I ordered Illustrator via creative cloud for another user.  I received an invitation that was accepted  and tried to change the account to the name and email of the person it was ordered for.  How can I get this changed and the invitation sent to the right person? 

    Cloud as a Gift https://forums.adobe.com/thread/1665610

  • I have adobe acrobat pro for windows and it is freezing up when I try to convert a word file to pdf... I have tried to get this done six ways from Sunday but it is just not working... help!  Chris.

    I have adobe acrobat pro for windows and it is freezing up when I try to convert a word file to pdf... I have tried to get this done six ways from Sunday but it is just not working... help!  Chris.

    It would be helpful to know what version of Acrobat, WORD, and operating system.
    Without that info, I would suggest at this point to open your WORD file and then go to the print menu and print to file using the Adobe PDF printer. Open the created file in Distiller and see if you get a PDF. If so, check to see if AcroTray is running in the background.
    You say you tried many ways. It would help to know what you tried and what worked or did not work, and at what point the failure occurs.

  • I just tried updating to iTunes 10.7 on my pc and when I try to launch it I get this error message-The procedure entry point AVCFPlayerSetDirect3DDevice could not be located in the dynamic library AVFoundationCF.dll.  Any Ideas?

    I just tried updating to iTunes 10.7 and when I try to launch it I get this error message-The procedure entry point AVCFPlayerSetDirect3DDevice could not be located in the dynamic library AVFoundationCF.dll.  Them it tells me to re-install iTunes and the same thing happens again.  Any Ideas?

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

  • HT2589 Someone is using itunes with my credit card without permission and I want my card number removed.  Ive been trying to get this fixed for months. Im at the end of my paitience.

    Someone is using iturnes with my credit card without my permission and I want my credit card number removed.  I've been trying to get this matter resolved for months.  I've lost all patients with this matter.  I want my credit card number removed from your business. 
    Virginia Mezger
    <Personal Information Edited by Host>

    Please be aware that you are not communicating with Apple when you post in these forums. The only people who will reply to your posts are we your fellow users.
    Since you don't say what resources and methods you've been attempting to get this matter resolved, it's difficult to offer suggestions. But if your credit card has been used without your permission, your primary recourse should be to your credit card company to report the unauthorized charges and have them issue you a new credit card. If your card has been compromised such as to make unauthorized charges on the iTunes Store, it's highly probably that it can be used elsewhere.
    As to removing the card number from your iTunes Store account,  see:
    http://support.apple.com/kb/HT1918
    You should be able to change or remove the card information there. If not, go here:
    iTunes Support
    and follow the instructions to report the issue to the iTunes Store, if you have not done so already. If you have, please post back with a summary of what they told you and perhaps someone can offer additional suggestions as to how to proceed.
    Regards.
    Regards.

Maybe you are looking for

  • Getting Blue Screen error BCCode: 1a

    Sometimes mi PC with windows VISTA have espontaneus Blue Screen Error.Then after startup I would get this message,can someone tell me what I shshould do? Problem signature: Problem Event Name: BlueScreen OS Version: 6.0.6002.2.2.0.768.3 Locale ID: 11

  • Non-acknowledgement of plugged in Ethernet Cable

    Greetings! This evening, when plugging in my laptop to the LAN network at my work, I encountered a problem that I am afraid may be signaling the need for expensive repair. Although I plugged in a working Ethernet cable (I verified on this computer!),

  • Compile and generate using adadmin step cant display log file

    Below is the output of the compile and generate step (1-4). UTL_FILE.READ_ERROR DIRECTORY: LOG_INSTANCE_1703FILE: script_10438.sh.logProcess Returned: 0 Results in: /mwiz/oracle/mwizdb/10.2.0/eof/log/INSTANCE_1703/script_10438.sh (49 bytes) I manuall

  • Flip Video Recorder and iWeb

    I just bought this cool video recorder which is supposed to work great for blogs etc. Anyhow. When I upload video to my webpage it comes out all pixelated! any advice would be appreciated. thanks Laura

  • Album Folders Still in FIle Structure

    After upgrading computers and importing my library there are still album folders in the file structure menu. I can go to Pictures/iPhoto Library/albums... and see album folders that no longer exist in iPhoto. Can I delete them safely? Thanks