Paying more than £30/month and look at the woeful ...

Complained about the speed, BT sent Engineer who managed to get it up to 2.5 for a whole week. Now back to where it has been for 7 years. is there anything i can do as this just isn't value for money!!

Hi Welcome to the community forums
Here is a basic guide to getting help from the community members done by CL Keith Please read through the link posted http://forumhelp.dyndns.info/speed/first_steps.html
once you have posted the information asked for then the community members can help you more
Thank You
This is a customer to customer self help forum the only BT presence here are the forum moderators
If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Similar Messages

  • How do I license the lightroom? bought the package to more than a month, and there was no release

    How do I license the lightroom? bought the package to more than a month, and there was no release

    You can buy a serial-number-licensed LR5 (not LR6 which should be available shortly) from the Products link at the bottom of every Adobe.com page:
    http://www.adobe.com/products/catalog/software._sl_id-contentfilter_sl_catalog_sl_software _sl_mostpopular.html
    You can get the cloud-licensed LR by subscribing to the Photography Plan that also includes PS from here:
    http://creative.adobe.com/plans

  • I cant seem to download and install the latest iphone software update. I have tried since the release and have been unsuccessful on more than 7 occasions and lost all the data on the process. Anyone have that problem an how do I fix this problem?

    I cant seem to download and install the latest iphone software update. I have tried since the release and have been unsuccessful on more than 7 occasions and lost all the data on the process. Anyone have that problem an how do I fix this problem?

    Hi
    Thanks but I have tried doing the above - when I said 7 times I was modest, its more like 15 times.
    And I am referring to the 5.1 software update. I dont have wifi so I guess I will have to try that seeing that my husband also has the same problem - he has also tried downloading several times. It always times out en says that the connection is lost but yet there are always an internet connection and a decent signal once it stopped. Think it said error 32052 or something!
    I am disappointed because the update includes inprovement on the battery life - did you guys notice any difference?

  • Can I update more than one iPad and iPhone from the same MacBook pro?

    Can I update more than one iPad and iPhone to ios 5 from the same MacBook pro? Our family has one MacBook pro and several iphones and ipads.  No one wants to lose their iTunes music or contact list or calendars.

    Yes, but you will want to think it through before you do it.
    The computer will become the "master" device, holding the definitive collection of music, photos, contacts, etc., and each iPad or iPhone will get a copy of what's on the computer. So if  everyone has different collections of music or photos that you all want to keep separate from each other, you'll want to set up different accounts on the MacBook Pro. To do that, go into "System Preferences" and click "Users", then click the "+" to create a new account for each person who needs their own set of files.
    That way you can each log in to your own MacBook account before you sync your iPhone or iPad, and everyone has their own copy of iTunes and their own iPhoto. If you happen to plug in an iPhone while logged into someone else's account, you just click "don't sync" (the 1st time only, it will remember after that). Sharing the same files becomes tricky, so this is only the best method if you want to keep things 100% separate.
    On the other hand, if you all have your music and photos mishmashed together on the MacBook anyway or just don't care about keeping things separate, just go ahead and sync your iPhones and iPads without setting up new accounts. But in this case, you should create playlists and photo albums in iTunes and iPhoto. Then plug in an iPhone, click on it's icon in iTunes, and change the settings for Music, Photos, etc to only sync the playlists that you want on that device. Repeat for each one. They'll all remember their own settings, and continue to sync with their designated playlists or albums.
    What you cannot do is use more than one computer with a single iPhone. That will wipe out the music and photos that were on it already, replacing them with the ones on the second computer.

  • An error ocurred while loading this content! Ive using my ATV for more than 6 months and last week i update the sw and since then i have rented two movies and keep seeing the same message. I have reset the ATV two times without success. Any suggestions?

    I keep getting this message: AN ERROR OCURRED WHILE LOADING THIS CONTENT
    ATV was working fine until i did a version update last week. Since then i have rented two movies and keep getting the same message
    I restarted the ATV - no success
    I reset my wireless - no success
    I reset my ATV - no success
    netflix is working fine since i was able to see a movie there. Youtube was also working fine. I think there should be something wrong with iTunes
    Any ideas?

    I keep getting this message: AN ERROR OCURRED WHILE LOADING THIS CONTENT
    ATV was working fine until i did a version update last week. Since then i have rented two movies and keep getting the same message
    I restarted the ATV - no success
    I reset my wireless - no success
    I reset my ATV - no success
    netflix is working fine since i was able to see a movie there. Youtube was also working fine. I think there should be something wrong with iTunes
    Any ideas?

  • Using more than one PU and PC for the same database

    I have a scenario described here: [http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation|http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation]
    which uses Seam, EJB3, JPA, Hibernate, Richfaces (modalPanel) and JSF.
    The question I have is the following:
    is there any negative consequence (memory consumption, performance hit, etc.) of using more than one persistence unit in the persistence.xml that points to the same EntityManagerFactory? I was thinking of having one PersistenceContext (Seam-managed PC - an extended PC which is conversation-scoped) which uses one PU and reserving the other PC for the modalPanel forms and backing beans (SFSBs).
    The reason I needed to use this solution/approach is so that when using Hibernate MANUAL flush with SMPC, I can achieve isolated synchronization of the PersistenceContext without updating values in the modalPanel forms and vice versa.
    Any tips on best practices or alternative solutions? thx.
    persistence.xml snippet:
       <persistence-unit name="boBETS">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETSEntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>
       <!-- using boBETS2 for ListValueParamAction for now! trying to isolate the em.flush() such that we can achieve atomic conversations for the
       base form as well as the popup form! -->   
       <persistence-unit name="boBETS2">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETS2EntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>What happens if I were to have 10 PUs and 10 PCs in the same app? Whether they're all pointing to same DB or not. What's the consequence of using "too many"?

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • More than one iCloud and match on the same iMac

    We have 3 users accounts and 3 apple ids on the same iMac. Can we each use our own icloud on our own user account , as previously with itunes match have got myself locked out for having the computer associated with more than one apple id.

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • I can hardly believe my old school Palm Pre was much friendlier than the IPhone.  I have had it for more than six months and still cannot sync my Outlook calendars and contacts.  I get a message like, "no calendar application  identified."    help!

    My old school palm pre was much friendlier than the IPHONE 3G.  I was able to sync my outlook calendars and contacts via wi-fi effortlessly.  I tunes did sync once or twice in the six months that I have had it, but more often it acts like it is syncing and ultimately delivers a message like "no calendar application is supported".  Why the back and forth.  Very frustrating after literally hours of trying to sync my phone with my Outlook calendar and contacts.  HELP!!!!

    What version of MS Office do you have installed? Have you tried re-installing office over top of itself? It may not be properly registered with the OS.

  • Hm..I pay $20 bucks a month and is this the normal speed?

    .. 864 Kbits/sec by 160 Kbits/sec
    Can't even watch youtube...i have to wait for it to load which is very very lame...
    What should i do call Verizon Tech? Or is there anything i can do personally

    Don't know what is offered where you live, but in most places you can upgrade to 1M service at no additional charge, you just have to call up and ask, they will run a test to see if enough signal is coming to your modem to be able to get it and if so they can turn you up, again that is only if 1M is offered where you live.

  • HT2376 How do i retrieve a lost key code for Pro if it is older than 18 months ? which is the longest you can look at on the orders history page.

    I Upgraded to quicktime pro years ago on my pc , then when i got a mac i purchased another copy for mac. I ve now gone back to pc and want to retrieve my old key code. The check your order history only goes back 18 months and i think i got mine about 4 years ago . Any advice ? or do i need to buy another copy . Cheers

    Regardless of what any of us think, the fact is that Apple no longer provides lookup of orders older than 18 months. Why they chose this none of us here can say, but that's what they have decided. So it's no longer possible to look up a QuickTime key purchased more than 18 months ago. If the user failed to keep a copy of the email or otherwise record the key, as Apple themselves advise, then a new QT Pro key will be required.
    Regards.

  • HBO 3D hasn't updated for more than 3 months.

    Since the last time acunningham453 ask here, my HBO 3D list hasn't been updated. It's more than 3 months, and still the same old movies. Do you know if HBO/Comcast abandon all 3D? 

    vucuong7276 wrote:
    Since the last time acunningham453 ask here, my HBO 3D list hasn't been updated. It's more than 3 months, and still the same old movies. Do you know if HBO/Comcast abandon all 3D? 
    Apologies. I am checking with our On Demand team now and will provide an update. Thanks for your patience.  

  • Stock more than 48 month

    Dear Master
    Anybody can help me how to get the report for all stock having ageing stock more than 48 month?
    What is the T Code I can use?
    Thank you
    paritz, the newbie in SAP

    Dear All
    When I run MB5m, it does not show anything, please let me know which scope of list I must select in order to get the more than 48 months stock.
    MB5B can give me the information of posting date, however I can't understand, which qty I can assume it is the stock.
    paritz, the newbie in SAP

  • I want officially unlock my phone second bought in senegal since more than three months but after buying it i realize it is locking by orange france and i need help

    hello want help without paying money cause now i'm in senegal and not sure to transfer money     
    i want to officially unlock my iphone 4 second hand bought here in senegal in west africa since more than 3 months but after this i realize that it is simlocked to oarange france so i cannot use it and i need help near apple to begin use legaly my iphone thanx

    You will need to contact Orange France. They are the only ones who can officially unlock a phone locked to their network.

  • I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask apple id confirmation from me. I never confirm anything because I don't know,the link's attached, it's legal or illegal.

    Dear Apple support team,
    I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask my apple id confirmation from me about 6-8 emails. I never confirm anything because I don't know,the link's attached, it's legal or illegal.
    The latest link (just be sent to my email 1 hr. ago) : http://www.smartpixeladv.com/proma/Login/index.html 
    Text is:
    Dear Customer,
    We recently noticed an unusual activity in your iTunes account. Please complete the process to confirm your
    informations.
    Confirm Now>
    This link will expire three days after this email was sent.
    If you don’t make this request, your account will be blocked for security reasons.
    Apple Support​
    In my opinion, i think      "http://"   should be   "https://"  right?  Or Apple should show the link on your website  that we can find, re- check and click by ourselve. Or  Apple should do "How to confirm apple id" on your main page. ( in fact  i'm not sure you already done "How to" on your website yes or not, because I cannot find it)
    The apple id is sensitive security, it's concerned personal security and any credit card payment so please understand me that's why i must to interrupt your team to help me to solve this problem. I'm scared my account will be blocked. Please advice me.
    Wassa. (BKK)

    It is a phishing attempt to get your Apple ID and Password.
    You should forward it to Apple : [email protected]

  • Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been usin

    Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been using adobe forms for 2 years with mass response feedback and have never had this problem.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

Maybe you are looking for

  • My facetime for MAC wont allow a facetime iphone to connect

    When I call my fiance using facetime for Mac, she attempts to connect but it wont allow her to; yet I can facetime between iPhones with no problem.  Why is this and can it be corrected?

  • Session keep alive && calling a class

    I have a JSP that will stay in a user's window and I want to know how to keep the session alive until they close the window, also since I am doing this I need to check a class for a method's state. What I mean by that is the Object calls on a ValueOb

  • Why does audio run faster than video after burning my iMovie project in iDVD?

    I created a project in iMovie HD and shared it to iDVD 6. When I played the finished disc, I noticed that the audio ran much faster than the video. I rechecked my movie and audio clips in iMovie to make sure they were matched correctly, and I saw no

  • ID command

    Not sure if anyone here will be able to help me with this. Trying to write a script which needs to lookup your group memberships at login. I am using the id command in terminal (id -Gn) to show which groups I am a member of on the active directory my

  • Portal Theme look & feel (Function Links)

    Hi Experts, We are designing a custom Portal theme. In the Masthead there are a number of Function Links which we want to relocate (e.g. Help, Log-off, Personalise). The standard location of these items is in the center of the Masthead (vertically se