Slooow down load

I live 3 miles from my local exchange which in the sceam of things is not a great distance but im being told by BT that its the last 10 feet of cable from the main socket to the PC thats giving me my slow down load.
What hope have I got to move into the 21st century reguarding BB speed if its the last 10 feet of wire thats giving me the slow speed. Cant BT make there cable from the pole to the house 10 feet longer so the wire will reach the other side of the room?
You seem to be able to bounce signals from satalite to satalite hundreds of miles away but cant get me a down load from 3 miles and 10 feet.
Come on BT you are supposed to be a state of the art company and you cant help, I pay for the best you have to offer and it's "MY" 10 feet of wire that you cant get what I think im paying for that most take for granted, god knows what speed I will get when i buy two more laptops that will connect via your wireless hub, or may be it will not work at all.
Is it time I moved to a new service provider that will reduce my out going costs for BB and phone for the same speed???

This is actually a common complaint on this forum even though it is not obvious. I presume you had an OpenReach technician turn up, checked the line from your master socket, told you there was nothing wrong with your telephone line and then said it was your internal wiring. 
If you go on the BT Broadband fault site, one of the problems they raise is internal wiring of the house being the problem.
Well, in actual fact I went through the same thing and actually had to prove that there was nothing wrong with my internal wiring. I even went and connected the ADSL router to the master socket to prove the point.
This blaming of the internal cable is a common tactic of OpenReach.
Now to be fair on my part, I do not know anything about your internal 10 feet of wire you mention. If you could tell me a bit more about the cable, like what type cable it is, and how it is attached to the master socket and then at the remote end, I can give you some suggestions or even tell you if the OpenReach technician is telling you a load of nonsense.

Similar Messages

  • How can i get a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    I wish to request that a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    You can try requesting it via this page (these are user-to-user forums) : http://www.apple.com/feedback/itunes.html
    But unless the the US rights-holder passes it to Apple and allows them to sell it in the US then Apple won't be able to sell it there

  • Adobe bridge and CS3 I have down loaded trial version...

    two problems--when i down load my pics- jpeg&raw- from EOS5D camera into adobe CS3 bridge i only get jpeg images not raw--my zoom browser does it!
    also when i double ck on thumbnails in BR i get raw processing--when i then go to photo shop by cking -save objects-when images opens up in phot shop i can not make any color adjustments--I have wasted 4 hrs with adobe techs--They had me remove adobe CS3 4 x and reload--problem still exists--is there adjustments in BR that affects this situation..?
    br carmen-i have vista operating system

    Vista has a problem with Canon cameras, not Bridge's fault. Copy the images directly to the hard drive. Check MSFT for any updates...
    The "Save Object" is for making Smart Objects and from the sounds of it, you are unfamliar with the concept? You need to double-click the Workflow options in Camera Raw and uncheck the Smart Objects options...then images will open as images not Smart Objects.

  • Unable to down load file error 1321?

    Unable to down load file error 1321?
    Error_Message

    Hi grahamg,
    Please see my response in your other post: I am unable to download  Acrobat message reads Insuffient prileges to modify the file C:\ Program Files [ x 86] Adobe\ Acrobat 11.0\Acrobatwow_exe.
    Best,
    Sara

  • Problem while down loading data into Excel

    Hi friend's,
    I am getting a error while down loading header
    internal table to excel.
    since in my header internal table there is no p
    type field..but i am getting this error..
    Only flat, character-type data objects are supported at the argument
    position "dest" for the statement
      "WRITE src TO dest".
    In this case, the operand "dest" has the non-character-type or deep type
    "P". The current program is flagged as a Unicode program. In the Unicode
    context, type X fields are seen as non-character-type, as are
    structures that contain non-character-type components.
    i have coded like this
    REPORT  ZACG_CCA_EXCEL                          .
    Tables : zacg_cca.
    data: P_file like RLGRAP-FILENAME.
    Data: Begin of it_header occurs 0,
          ccode(10) ,
          mat_cd(12) ,
          ingr_desc(30),
          con(10),
          quan(10),
          percqty(10),
          DATE(10),
          rsamnos(10),
          flag(5),
          end of it_header.
    Data : begin of it_final occurs 0,
           ccode type zacg_cca-ccode,
           mat_cd type zacg_cca-mat_cd,
           ingr_desc type zacg_cca-ingr_desc,
           conc type zacg_cca-conc,
           quantity type zacg_cca-quantity,
           percqty type zacg_cca-percqty,
           APP_DATE type zacg_cca-app_date,
           rsamnos type zacg_cca-rsamnos,
           flag ,
           end of it_final.
           SELECTION-SCREEN : BEGIN OF BLOCK blk WITH FRAME TITLE text-000.
           select-options : s_Date for zacg_cca-app_date.
           SELECTION-SCREEN  : END OF BLOCK blk.
           it_header-ccode = 'Samp_code'.
           it_header-mat_cd = 'Mat_code'.
           it_header-ingr_desc = 'Ingr_Desc'.
           it_header-con = 'Conc'.
           it_header-quan = 'Quantity'.
           it_header-percqty = 'Perc'.
           it_header-date = 'Date'.
           it_header-rsamnos = 'Rsamnos'.
           it_header-flag = 'Flag'.
           Append it_header.
           select ccode mat_cd ingr_desc conc quantity percqty
            app_date rsamnos from zacg_cca  into corresponding
            fields of table
           it_final where  zacg_cca~app_date in s_date.
           loop at it_final.
           it_final-flag = 'T'.
           modify it_final.
           it_final-quantity = it_final-quantity * 2 .
           Modify it_final.
           endloop.
           CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
             EXPORTING
               FILE_NAME                       = 'C:\amol\p_file'
              CREATE_PIVOT                    = 0
             DATA_SHEET_NAME                 = ' '
             PIVOT_SHEET_NAME                = ' '
             PASSWORD                        = ' '
             PASSWORD_OPTION                 = 0
              TABLES
             PIVOT_FIELD_TAB                 =
              DATA_TAB                        =   it_final
             FIELDNAMES                      =  it_header
            EXCEPTIONS
              FILE_NOT_EXIST                  = 1
              FILENAME_EXPECTED               = 2
              COMMUNICATION_ERROR             = 3
              OLE_OBJECT_METHOD_ERROR         = 4
              OLE_OBJECT_PROPERTY_ERROR       = 5
              INVALID_PIVOT_FIELDS            = 6
              DOWNLOAD_PROBLEM                = 7
              OTHERS                          = 8
           IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.
    can any one....

    hii
    for title this FM have some restriction as it can not take value if its more then 10 length so you need to give length as 10 only for every string then append it with FIELDNAMES = it_header
    regards
    twinkal

  • I am unable to see text after clicking on a pdf download.I just get a mid grey screen .I can send the pdf to my blackberry and see it -so the file is ok .I recently was at an official site that gave me an Adobe down load /update .Help please .

    Why am I suddenly unable to see pdf (on iMac) when I click on them ?There is is just a mid grey blank screen .I have sent pdf to my Blackb and I can read it there ,so the file is OK .I recently tried to down load a recent version of Adobe reader from a government site -could this be the cause?If so ,how do I uninstall it ?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste (command-V) into the text box that opens, then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    I've seen an unconfirmed report that the "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you might need to remove it as well, if applicable.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Mail starting to down load into the wrong folder, Why?

    Why did mail start putting mail in the wrong folder ? How can rules change ? can I down load only the Mail app ?

    Have you compacted your In-box lately?
    Do you get an error message?

  • I've down loaded adobe flash player but when I try to veiw video on firefox I'm still told that I need adobe flash player. How do I get firefox to see the flash player download?

    I was trying to view a video I uploaded to facebook using firefox. The system told me to down load adobe flash player. I did but still get the message that I need to down load flash player. How do I get firefox to see the down loaded adobe flash player?

    by installing from within Firefox, Internet Explorer has its own version (Active-X).
    Make sure you are starting in the correct place for Flash
    * http://www.adobe.com/software/flash/about/
    If you want to read PDF files in you browser, you might also want
    * http://get.adobe.com/reader/
    After the download,
    #bring up the download manager ("Ctrl+J") and start your installs. As soon as the install comes up,
    #close Firefox with '''File > Exit''' or "Firefox" button > Exit. Give Firefox some time to close.
    #If install does not proceed, '''terminate "firefox.exe"''' and '''"plugin-container.exe"''' from the "Processes" tab in the Windows Task Manager.
    #* Windows 7 shortcut to the WTM is "Ctrl+Shift+Esc"
    #* or on any Windows system from "Ctrl+Shift+Esc" then choose Windows Task Manager.
    #*Make sure that "firefox.exe" is no longer running -- if it is still running then terminate it by selecting the use "End Process" button or from context menu, and do the same for "plugin-container.exe" if it is found there.
    #proceed with the install.
    '''Warning''': this is the Adobe site and they have chosen to to provide crapware along with their own product. Only install the product you were planning to install. Do not install additional products: including -- "Free! McAfee Security Scan Plus" or "Google Chrome". Installing Google Chrome on your own and installing it because it is offered on the Adobe site are two different things.
    Find updates for your installed plugins at http://www.mozilla.com/plugincheck/ mozilla.com/plugincheck
    -- best to use Adobe's site to really see if their plug-ins are up to date.
    Please fix your caps lock or read what you type, do you think anybody could read my answer if I typed in all caps.
    If the above fails to correct the problem, I would try uninstalling Adobe Flash from your system entirely first, from the control panel then "Programs and Features".

  • HT1414 i down loaded pictures from my iphone 4 tp my computer  then attempted to ios and sync my iphone   i seem to have totally lost everything on my phone  the itunes / usb picture is on the phone and now it is not even recognized on my computer!Help pl

    i down loaded my photos from my iphone onto my compuyrt  then attempted to upgrade to ios on my iphone then sync my phone and computer.  now everything is wiped off my phone  the itunes and usb visual is on my phonr and it is not recognized on my computer   if any one knows how to resore this please let me know  thank you

    Thank you this helped. I am not very knowledgable about all this but I was able to get the phone restored.  I got everything back but my iPod. I thought I was just updating but what happened was my phone was wiped out and the lates iPhone software was installed.

  • How do you prevent the organizer from mixing the order of pictures when down loading off the memory card?

    @How do you prevent the organizer from mixing the order of pictures when down loading off the memory card?

    This sounds like you are using Photoshop Elements, and the Photoshop Elements forum would be best at answering that.
    Photoshop Elements
    Gene

  • How can I down load a new app with out the cloud sign how do I get the sign off

    II'm trying to down load a new app but every time I try all I get is the cloud sign how do I get rid of it

    Touching the cloud icon should re-download the App.
    If not what happens?

  • I am trying to load a 2006 package in cd form onto my apple mac when I try and down load it it comes up in like foreign script, and says does not operate dos, can anyone help I am a lot of a novice. grateful - Carol

    Yes Im a lot of a novice so be patient with me lol I am trying to put a 2006 Edition of a weight programme on my laptop, but when I down load it it just comes up in weird script and says cannot operate in Dos mode can anyone help.
    Thanks

    Welcome to Apple Support Communities.
    Sounds like you have a program designed to run on Microsoft Windows, or even older (1980's) MS-DOS, rather than Mac OS X. If you have Windows on your Mac installed via Boot Camp, try booting into Windows first, and then loading the CD.  If you don't have Windows, it's probably cheaper to buy a new program designed for Mac than to purchase a copy of Windows (US$120 or more), not even knowing for certain if your old program will run.

  • My ipod has had a previous owner How do I change my ipods email address so that when I try to down load anything it asks for the previous owners password but when I go to my account it says its my email my account but not when I try to download????

    My ipod has had a previous owner How do I change my ipods email address so that when I try to down load anything it asks for the previous owners password but when I go to my account it says its my email my account but not when I try to download can anyone please help me ????Plus it still has some of the previous owners pictures and videos on it that I want to delete and can't????? Also is there a way to kill the apps that u have used throughout the day the battery doesn't last long at all ??????

    - How did you dlete stuff from the iPod? If you have a 1G or 2G iPod and deleted the stuff by going to Settings>Genera.>Reset>Erase aall contents and settings without being connected to a power source, the battery dies before he erase was comleted since it can take hour.
    - In any event try the following:
    - Connect to a chaging sour for three hours.
    - Reset the iPod and then connect to the computer and try to restore va iTunes.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Next try placing the iPod in recovery moe and then try to restore. For recovery mode:
    iPhone and iPod touch: Unable to update or restore
    - Last try DFU made and restore.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    - Have you tried a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try syncing  the iPod to your computer. Then delete from iTunes and sync. that should delete it from the iPod. Then redownload it.

  • I down loaded v7.01 on my iPad2, but now I can't get out of the "set up iPad" screen, why? I've used this device on my PC for over a year.

    Down laded v7.01 (after 7 hours), my pc shows that the the new down load was installed on my iPad2, and was also restored from iTunes backup. But, now I get a screen on my iPad "connect to iTunes, ipad not set up?? Why? Ny suggestions for a fix?

    The restore sems not to have completed. Try it again.
    Recovery Mode
    Follow the instructions carefull and repeat if necessary. Sometimes it takes several tries.

Maybe you are looking for

  • How do I synch calendars from mobile me to the iCloud on the iMac, iPhone and iPad?!

    I have the imac, ipad 2 and iphone 4 - all are updated to ios 5, lion and have just moved from mobile me to the icloud.  I am having no end of problems synching my calenders.  Ical on my iMac is perfect however when I sync with my ipad, birthdays and

  • User exit(very very urgent)

    hello below is my coding........ the transaction is IW22 and the the code would be triggered when the notification complete button is checked. when the first case gets executed. i will get a pop-up.when i press continue the required operation is been

  • Incoming payment VAT for exchange difference

    I need to post the Incoming Payment (F-28 or F-36), with VAT tax about the exchange difference. When simulate the post, appears the automatic position with the exchange difference but do not appears the VAT for this difference. Anybody know where cus

  • Generic Extractor Issue

    Hello Experts, I have one small doubt on the Generic Extractor. My Generic Extractor is based on the Delta with the changed on Field(AEDAT) and I wanted to know is it possible to extract the data if changed on is not updated to the document but other

  • Appraisals Workflow

    Hi, My HR Consultant has configured Appraisals. The Employee goes to Infotype 25 and enters the appraisal rating and saves, than the Appraisal goes to the Manager there he can change the ratings and complete the process. Now my client wants an intima