LTE Support for 3 UK and Kitkat Update

So it seems I'm not able to select LTE as a network preference while I have my 3 Mobile Sim in my phone.  LTE does appear with another carriers sim in but 3 is my main provider so this is a problem.  Does anyone know if this has been fixed with the Kitkat update?
Also, ragarding the update I cant get it yet and I dont understand why.  I have a sim free (non carrier branded) version and I cant get the update despite seeing plenty of people with the same phone being able to get theirs.  What is the point in rolling the update out so slowly?  Its not like the same thing is done with any other devices - for example, when an update comes out for a computer everyone gets it at once.  I don't see why non branded phones cant get the update all at once.
Coudl someone provide some advice on my LTE issue and when I might get the kitkat update?
Solved!
Go to Solution.

You are doing nothing wrong re not being able to get 3UK 4G on the phone
Basically 3UK have been giving their clients the runaround for the better of two months now but have finally started owning up to the fact that.
a) you need a carrier update to make the Z1C compact to work on their 4G settings ( each carrier has specific settings and 3UK ones were not avaible to the 4.3 base build)
b) they promised their clients like us who bought unlocked phones from Sony etc that they would send us the update once available
c) and NO - they are now admitting they are not going to send out these updates to open market phones, but you need to contact the manufacturer to get the latest update.
This is based on summary of conversations that happens on their 4G blog, where lots of people with Z1C, LG2 etc are having this issue.
Good news - 4.4 KK has the correct settings for 3UK 4G,
Bad news, SUS/PCC are still not showing the build for me and more bad news, 4.4.2 seems to be riddled with bugs so better wait for the announced 4.4.3
3 have definitly missold a lot of us the contract - however i may just hang on to it as we can at least look forward to uncapped tethering if you bought before 18 March

Similar Messages

  • On my ipad mini, when I delete an email from the inbox (and it goes into Trash), it immediately deletes that email from the server (ATT/Yahoo).  I've called support for both ATT and Apple and can't find a way to have the emails remain on the server.

    On my iPad Mini, when I delete an email from the inbox (and it goes into Trash), it immediately deletes that email from the server (ATT/Yahoo).  I've called support for both ATT and Apple and can't find a way to have the emails remain on the server. 
    My husband and I share an email address and if he misses a day checking email on his notebook, he doesn't receive the items that I have sent to Trash on my iPad Mini.
    Appreciate suggestions.
    [The curious thing is, if I "move" the deleted emails from Trash on my iPad Mini into the Inbox, I can go to my notebook, open my online email and they are back in my ATT/Yahoo Inbox.]

    Is your Yahoo account set up as POP3 or IMAP?

  • Support for RAW Video and Image Sequences

    Being a stills photographer who moved into video some years back, I'm very interested in the direction Lightroom is going with regards to video support. I haven't tried it yet but I wondered if LR4 supports Red R3D files? And would it perhaps support other future RAW video formats from the likes of Canon and Sony? It would seem like the perfect application, perhaps intergrating with Premiere in a similar way to RedCine with FCP. Be great to be able to log footage, orginize it into bins and do basic colour correction in LR, edit the project in Premiere and re-touch in After Effects.
    Another task LR would seem ideally suited to is combining image sequences into timelapse video. Shooting timelapse as an image sequence on a DSLR is pretty much standard practice these days; and I've used LR to colour correct, crop and scale my sequences (before fitting them together in Quicktime) for years now. It would be fantastic to be able to preview the clip and export the video (as DPX, ProRes or DNxHD) from within Lightroom.
    These are obviously fairly long term wishes. In the short term though, the video features are pretty much useless to me without support for exporting ProRes and DNxHD files. With this LR becomes a powerful asset manager that could be used to collect together footage from multiple sources/codecs and transcode it all for editing. As mentioned in a previous thred, XML support would make it even more useful in this context. There is definitly a gap in the market for an application than can handle this kind of task well.
    With other manufactures floundering or neglecting their professional user base, Adobe would seem poised to take the video post crown. I wonder if Lightroom could be part of the takeover?

    As I understand it Andy, its intention is to remain a photographers program, not a videographers program.  The basic video features are available for lightweight management of videos coming from digital cameras, but it's not going too much further than that at this point in time.  Of course that may change in the future, but we'll all have to wait and see on that one.

  • Can anybody explain what is support for ADF Project and to solve the Issues

    Hi,
    I am new to ADF and i am currently associated to ADF Support Project.
    Can anybody explain what is support for ADF Project and to solve the Issues when the ADF Project is in Live.
    we are getting the Tickets for the Issues.
    Thanks in advance.

    I agree with Timo.
    It depends on the size of the project, user base, technologies, etc. We use lot of technologies in fusion middleware stack. We get tickets in many areas.
    In your case, it could be anything like user training issues (user may not know how to use the some system features), browser issues like blank screen, bugs in code like JBO errors (failed to validate, another user has changed row, failed to lock the record, NullPointerException, IllegalArgumentException etc), business logic issues, page may not render properly, performance issues, partial commit issues, application server issues, authentication issues. If you use web services you might get web services related problems.

  • Sir you have replied for my question, and i updated my software and all those things, yet it is showing unable to connect network, but i can use internet by sim, is it the problem related with hardware? can you tell me a solution for it?

    sir you have replied for my question, and i updated my software and all those things, yet it is showing unable to connect network, but i can use internet by sim, is it the problem related with hardware? can you tell me a solution for it?

    you seem to be referring to an ongoing issue
    click here to respsond -> sir help me to enable my network connection, my iphone 4s is not connecting with any wireless connection, what i should do for enabling network connection?
    CCC

  • Feature request: Support for {table abbr} and {table} in Table scripts

    Hi Data Modeler Team,
    support for {table abbr} and {table} in table scripts ("Table properties"->"Scripts"->All four tabs) would be greatly appreciated as it makes it easier to use boilerplate SQL in these areas.
    Is it possible to add this feature to one of the upcoming releases?
    Thank you,
    Blama

    Hi,
    I've logged an enhancement request on this.
    Thanks,
    David

  • JDBC Thin Driver Support for Data Encryption and Integrity

    Hello JDev Team,
    I am trying to implement JDBC Thin Driver Support for Data Encryption and Integrity.
    It works fine with java.sql.Connection and java.util.Properties like in the following code:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Properties props = new Properties();
    int level = AnoServices.REQUIRED;
    props.put("oracle.net.encryption_client", Service.getLevelString(level));
    props.put("oracle.net.encryption_types_client", "( RC4_40 )");
    props.put("oracle.net.crypto_checksum_client",Service.getLevelString(level));
    props.put("oracle.net.crypto_checksum_types_client", "( MD5 )");
    Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:main", props);
    etc...
    But I am developing an application with InfoSwing components and it has a different way to connect to Oracle database using oracle.dacf.dataset.connections.Connection, like this:
    sessionInfo1.setAppModuleInfo(new ModuleInfo("bc", "BcModule"));
    sessionInfo1.setConnectionInfo(new LocalConnection("JDBCThin"));
    sessionInfo1.publishSession();
    My question is:
    Is there any way to implement DataEncryption and Integrity into this type of connection?
    Thanks a lot in advance.
    Victor Bykov
    null

    Victor,
    No, you can't do this from DAC, but I've been discussing it with the developer, and we both think this capability would be useful to have, so I've logged it as an enhancement request.
    I do have a question for you. Once you've made the JDBC connection, do you need access to the Connection object afterwards? We're thinking of how the change could be implemented, and one way would be to allow you to pass in a Properties object when creating your own NamedConnection.
    Thanks
    Blaise

  • Outlook Web Access is currently unavailable. If the problem continues, contact technical support for your organization and tell them the following: No Client Access servers of the appropriate version can be accessed from the Internet

    Good Morning,
         We are getting this error 
    Outlook Web Access is currently unavailable. If the problem continues, contact technical support for your organization and tell them the following: No Client Access servers
    of the appropriate version can be accessed from the Internet
    We installed a new Exchange 2007 CAS on Windows 2008R2. Got rid of old CAS on Exchange 2007. Now seeing this error. Does anyone have an idea??

    Hi,
    If the issue persists, I recommend you install Exchange 2007 SP3 RU7 and check the result. Also, ensure that Exchange 2010 SP2 RU1 or later version is installed. Old Exchange version may lead to the CAS-to-CAS proxy incompatibility.
    What's more, here are some helpful blogs for your reference.
    Exchange 2010 SP2 RU1 and CAS-to-CAS Proxy Incompatibility
    http://blogs.technet.com/b/exchange/archive/2012/02/17/exchange-2010-sp2-ru1-and-cas-to-cas-proxy-incompatibility.aspx
    OWA Coexistence With Legacy Versions
    http://blogs.technet.com/b/sjimmie/archive/2010/07/09/owa-coexistence-with-legacy-versions.aspx
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Support for Seam, Facelets and RichFaces

    Does OC4J provides support for Seam, Facelets and RichFaces?
    Thanks,
    Arun

    OC4J is just a Java EE container so it should be able to run any Java EE libraries.
    But maybe you should be asking this on the OC4J forum http://forums.oracle.com/forums/categoryHome.jspa?categoryID=84

  • Downloaded Mountain Lion and lost support for Word, Excel, and PowerPoint.

    Downloaded Mountain Lion and lost support for Word, Excel, and PowerPoint. Anyone know how to get it back?

    Odds are you running Office 2004, which is coded in PowerPC code. PowerPC is no longer supported.
    You either must upgrade the newer version  of Office that will work or downgrade OS X.
    Allan

  • Support for Conexant chipsets and the HSF driver

    Is it possible to add in kernel's PKGBUILD patch http://www.linuxant.com/alsa-driver/als … 19-3.patch for improving support for Conexant chipsets and the HSF driver?

    You better file a bug report for it: http://bugs.archlinux.org/
    Last edited by Nepherte (2009-04-24 10:06:17)

  • LabVIEW network library with support for SSL, Ping and IPv6

    I have posted on LAVA
    an OpenG package that will install a LabVIEW network library with
    support for SSL, Ping and IPv6.
     Please go there if you are
    interested to look it up.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

    Bob Y. wrote:
    OK,  but what is it and why should I use it?  What need does it fulfill?  I have been unable to find much documentation for this at the wiki page and maybe a couple of paragraphs here would help.
    Thanks,
    Bob Young
    Hi Bob,
    Yes, this info got burried.  Basically, it's a tool for building LabVIEW-based software products.  It is highly flexible/extensible and tries to fill the holes left by LabVIEW's built-in Application Builder.  Here are some good links to more info:
    OpenG Builder Homepage
    OpenG Builder 1.0 Documentation
    Thanks,
    -Jim

  • Snow leopard server for net boot and software updates only what needs to be running to use it?

    Snow leopard server for net boot and software updates only what needs to be running to have it work right?

    Netboot and Software Update, at its simplest.  Mac OS X Server also expects to have functional IP networking and DNS services (somewhere) on the LAN (and if you're behind a NAT gateway, then the DNS server(s) are on your LAN and not out at your ISP), or things get weird.  SUS (usually) works out of the box, outside of cases where there's an outbound firewall.  Netboot can be more effort to setup, in terms of what you're loading into the clients.

  • Support for SLES, Debian and CentOS

    I'm planning to install Zenworks Endpoint Security Management and I would like to know if it would release a support for linux platform especially Debian and CentOS. We have a heterogenous network environment and there are servers that are running Debian and CentOS. Is it possible for ZESM to release a support for these operating systems? Also, would there be a release where ZESM could be installed in SLES?

    Take a look at the new ZCM11 - currently in Beta1 - for SLES & Red Hat support and broader support DBs - Oracle and Sybase included.
    http://www.novell.com/communities/no...agement-beta-1
    Most of ZESM functionality is built into this new architecture. You'll also get integrated Linux Management on this build.
    >>>
    From: vindveif<[email protected]>
    To:novell.support.zenworks.endpoint-security-management
    Date: 5/31/2010 5:56 AM
    Subject: support for SLES, Debian and CentOS
    I'm planning to install Zenworks Endpoint Security Management and I
    would like to know if it would release a support for linux platform
    especially Debian and CentOS. We have a heterogenous network environment
    and there are servers that are running Debian and CentOS. Is it possible
    for ZESM to release a support for these operating systems? Also, would
    there be a release where ZESM could be installed in SLES?
    vindveif
    vindveif's Profile: http://forums.novell.com/member.php?userid=33233
    View this thread: http://forums.novell.com/showthread.php?t=411885

  • Support for Arabic text and Direction:rtl

    I am using HTML/CSS/Javascript to develop my application.
    I have been trying to get direction:rtl (right to left) to
    work to display Arabic text in the right form with no luck.
    Does Adobe AIR lack the support for this feature ? If so,
    what are the alternatives to Adobe AIR ??
    I hope one of the Adobe employees reply to this....

    > Any update on the Arabic support in Air ??
    http://labs.adobe.com/technologies/textlayout/
    "Bidirectional text, vertical text and over 30 writing
    systems including Arabic, Hebrew, Chinese, Japanese, Korean, Thai,
    Lao, the major writing systems of India, and others.
    Selection, editing and flowing text across multiple columns
    and linked containers, and around inline images"

Maybe you are looking for

  • How to print with "no color management" in CS6

    I have downloaded the "no color management option" to print off a patch for an ICC profile - http://helpx.adobe.com/photoshop/kb/no-color-management-option-missing.html However, I keep getting an error message when trying to print from it - saying "e

  • AJAX two drop down lists

    I found a lot tutorials out there showing you how to make one drop down list populates another one but most of them either render the second ddl html in javascript (dealing with DOM crap!) or use third-party controls such as ATLAS. Then I decided to

  • Looking for a random image extension

    Does anybody know of a good FREE extension that will put a random image inside a cell of a table? I'm actually looking to do two different things. The first: I want a random image from about 10 images to change every time the user reloads the page. T

  • Reg:DC to be imported to DTR

    Hi Friends, My DC has been developed on my Local System,sometimes i had updated to DTR and sometimes i did not. Now i need to put this DC on to the DTR from my Local Development . Is it possible for me to do the same. Please let me know,if atall its

  • Flash Gallery

    I have been working on a site for a band in Dreamweaver. I am very green when it comes to Flash, but found a Flash template which seemed easy enough to use, in fact, when I "Test Movie" in Flash CS3, it functions fine. When I import the swf file into