BlackBerry z10 can't get access to mobile network, please help!

Hi, i got my unlocked z10 a few days ago and still i can't get access to mobile network. Only wifi have worked for me till now.. i used the same sim card as my old phone (where i i got access fine). I've tried rebooting and switched every setting on and off etc. Could any one please help me with this..

Since you are using the same sim I suggest you contact your service provider to check your provisioning.
Let me know if this help.

Similar Messages

  • I down loaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you

    I downloaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you.

    Hi- apparently I also had a similar moment of madness and thought that 'freeride games' would be fun. Well, so much for that! It added a ton of things to my tool bar, I would like to uninstall it, any suggestions for this one?
    thanks :)

  • After resetting my Airport Extreme, I can't get it to work! Please help!

    Hey everyone!
    I have an airport extreme base station (wireless n-gigabit ethernet) and awhile ago it stopped working on me. I simply reset my aebs and whenever I open airport utility and try and configure my aebs, it tells me I have an error and can't connect to the aebs. I have comcast internet service and my aebs is connected to my router. It's been working successfully for about a couple months and now it's stopped working. : (
    I've tried this both in manual setup and the regular setup. I've gone through the trouble of doing a hard reset (pressing the reset button until it flashes amber), I've unplugged the power while holding the reset button, connecting my laptop with the aebs via ethernet, making sure everything is updated (and it is), resetting the router, and even reinstalled my airport utility disk.
    Please help! Any suggestions would be greatly appreciated!

    I also tried setting up my aebs on my neighbor's internet and it worked like a charm! Setting up aebs was as easy as when it first worked. Now if only I can get it to work on my internet...

  • Can no longer access Graphite Base Station, Please help

    For no apparent reason, my DP 800,10.4.11 can no longer access my Graphite Base Station. For years I have had no problems.
    But this morning I lost access to my base station. I entered the PW as usual, but it did not allow access. I verified the PW in Keychain (and the base station name), but again I struck out. The machine is otherwise fine (or so it seems).
    I have done the following, all unsuccessfully:
    • Shut down with cold restart
    • Zapped PRAM
    • Safe Booted
    • Created a new account/User
    • Ran DiskWarrior
    • Rebooted Base Station
    • Reverted to a week old backup, still no joy.
    I can successfully connect to the base station with my iMac, so I am certain the base station works.
    I know nothing about this stuff, but it now seems the problem is with the Airport card inside the DP 800. Is this likely?
    What if anything else can I do to either isolate the problem, or better yet, fix the problem?

    Some things to try:
    Create a new Location in System Preferences > Network. (Start from scratch; don't do it by modifying an existing Location.)
    Turn off WEP encryption on the base station.
    Physically move the base station and/or computer to overcome possible wireless interference in the original position. (Note: the base station does not need to be connected to the Internet while you test wireless connectivity.) You can also try enabling Interference Robustness (on both the computer and base station) and changing the wireless channel.
    See whether the DP 800 can connect to a different wireless network.
    I'm somewhat surprised you say you entered the password "as usual." Under the typical settings, your computer would remember your network and its password and join it automatically. (I know you haven't declined to store the password in the Keychain.) Moreover, your reference to the "base station name" strikes me as odd, as you do not need to know the base station name in order to connect to the network. Did you mean the wireless network name? Or might the password you have been entering be the base station password, instead of the wireless network password?

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Can't get on internet.. PLEASE HELP!!

     I thought I was computer savvy and told a friend at work that has an issue with her internet that I could fix it. I am having more trouble than I thought. She told me it was a Windows 7 and it is a Dell Windows XP Professional service pack 3. I am not
    very familiar with them. 
    She told me that she had uninstalled some programs she felt were slowing her computer down and now her wireless is not working the light is not on, the switch is on but when I go into network adapters all there is, is a 1394 Net Adapter and a Broadcom NetXtreme
    and it acts like it needs a cable plugged in to get online when she has never had to use a cable before. I can not find anywhere where there is wireless settings or anything.
    Someone please help, this lady is super nice and I would hate to let her down. I have the computer here with me now and if anyone could help I would appreciate is so much

    I think you are confusing the connection to your AirPort as being the same thing as a connection to the internet. The fact that you are connecting to the AirPort is great, but you can get a legitimate DHCP address and full signal strength even if the AirPort is completely disconnected from your cable/DSL modem.
    1) Crack open AirPort Admin Utility and click the "Internet" tab. What address does the AirPort have? Hopefully not one that starts with 169. Tell us what you have for IP addrss, subnet, router and DNS (even if the DNS are any greyed out).
    2) In the Utility folder crack open Network Utility and ping this: 64.142.120.111 the address for just-ping.com. They won't mind! Do you get dropped packets or does the ping return? If the packets are dropped, then your AirPort has no connection to the net. If the packets successfully return, then your IP connection is good, but you have no DNS service.
    3) Open Safari, enter 64.142.120.111 into the address field. Does it resolve to just-ping.com? Again, if it does, then your connection is good, but you have no DNS service. If it times out, then the internet connection is NFG.
    Let us know!

  • Can't get passed this install problem - Please help Adobe.

    I've downloaded the TRIAL version of PRODUCTION PREMIUM CS6. Once running / installed and tested it I will purchase it.
    But cannot get past this ERROR problem.
    Here is my install ERROR log ADOBE..  Please help.
    URGENT.
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF027, DW063 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0 -----------
    ERROR: DF027: Unable to copy file from "/private/tmp/.tempdir6Qpuljrb/Assets1/Application/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" to "/Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" (Seq 1205)
    ERROR: DW063: Command ARKCopyFileCommand failed.(Seq 1205)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US: Install failed
    ERROR: DW050:  - Adobe Photoshop CS6 Core: Failed due to Language Pack installation failure

    You can try resolving your issue using following document :
    http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html
    and
    http://helpx.adobe.com/creative-suite/kb/error-unable-copy-file-tmp.html
    Regards,
    Sharath Holla.

  • I can not get my iTunes to work, please help

    ok when i click to open itunes, i get the window asking me whether or not I agree to the Itunes software license agreement. I click agree and then i get an error message stating that "The itunes application could not be opened. An unknown error occured [-48].
    Can somebody please help me or if anyone even knows a number i could call for support regarding itunes, i would greatly appriciate that.
    Thank you

    Do you have a valid payment method entered in your account? If yes then contact iTunes.
    Contact iTunes

  • I have a new MacBook Air and I set my password the other night and forget what I selected. Now I can't start using the computer because I can't get through password gates! Please help!!

    I have a new MacBook Air. I set my password the other night when I was half asleep and can't remember it. Im still working on my old MacBook Air and can't get through the password gate on my new one. How can I reset it on that computer? I can't even get to the internet.
    Thanks!

    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Select Terminal from the Utilities menu. At the Terminal prompt enter:
    resetpassword
    Press RETURN. You will get a GUI in which you can reset your password.

  • Can not get my iphone to work please help

    i done every thing to get my iphone to work with straight talk please help me i need a phone i have bad health famiy members

    https://discussions.apple.com/message/23872549#23872549

  • Can't get back my Apple ID, please help.

    Hello,
    Yesterday, like everyone else, I wanted to sync my account to iCloud, the thing is my Apple ID wasn't verified, and whatever I did, I couldn't send a "Verify mail" via the https://appleid.apple.com/ site. So after searching here and there, I read that what you needed to enter a new apple ID, verify it, and then change it back to the prior Apple ID, The first part worked (of course...) but now for some reason I cannot go back to my original Apple ID, when I try to save it, the screen just load, refreshes like nothing changed...
    Could someone please help me?
    Thank you.
    Jharryone

    Click here, explain to them that you can't call, and see what they say.
    (120676)

  • HT201272 how do i access the cloud i have downloaded some tracks on some albums but they dont play so i deleted them  i went to download them again but they are album only tracks so itunes store wont let me how can i get my tracks back? please help

    how do i get tracks back that i deleted that are album only tracks, i downloaded it and it would not play now i cant re download it please help

    About a minute and a half into some tracks it skips to the next. Not on all the tracks but on most of them.
    Try again, just redownloading the tracks which are skipping. (The servers for the Store seem to have been a bit extra-cranky with this over the past day or so in particular ... some folks have had to try redownloading again a couple of times.)

  • Can't get EJB injection to work, Please Help!

    I'm new to EJB 3.0, so I tried the "sample" EJB 3.0 stateless session bean sample from Oracle for JDev. (I'm using JDev 10.1.3.1.0 bld. 3984), very simple stuff:
    package project1;
    import javax.ejb.Remote;
    @Remote
    public interface Hello {
    void sayHello(String inStr);
    and
    package project1;
    import javax.ejb.Stateless;
    @Stateless(name="Hello")
    public class HelloBean implements Hello {
    public HelloBean() {
    public void sayHello(String inStr) {
    System.out.println("Hello " + inStr );
    I can deploy the Bean w/ no problems to the embedded OC4J (in JDev) by just clicking "Run" on it, and I can successfully run the "Client" based on the "Older" implicit JNDI look up as follows:
    package project1;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    public class HelloClient {
    public static void main(String [] args) {
    try {
    final Context context = getInitialContext();
    Hello hello = (Hello)context.lookup("Hello");
    Call any of the Remote methods below to access the EJB
    hello.sayHello("John Doe");
    } catch (Exception ex) {
    ex.printStackTrace();
    private static Context getInitialContext() throws NamingException {
    // Get InitialContext for Embedded OC4J
    // The embedded server must be running for lookups to succeed.
    return new InitialContext();
    The above client code works fine, too.
    But when I try to run the following client (It compiles fine):
    package project1;
    import javax.ejb.EJB;
    public class HelloClient {
    @EJB private static Hello hello;
    public static void main(String [] args) {
    try {
    hello.sayHello("John Doe");
    } catch (Exception ex) {
    ex.printStackTrace();
    It DOES NOT work, the @EJB private static Hello hello seem to never get executed, as "hello" is always null and I get a null pointer exception on (hello.sayHello("John Doe"));.
    I even tried to be more explicit and tried:
    @EJB(name="Hello"") private static Hello hello
    with no luck either.
    What am I doing wrong?
    I read all the threads here and no one seems to have problems w/ the provided sample, I even did a fresh re-install of my JDev with no help.
    Thanks,
    Reza

    Hi,
    duplicate post of
    OC4J don't FULLY support injection of EJB implementing multiple interfaces?
    Frank

  • Airport connected but can't get internet....PLEASE HELP!!!

    I am a college student who went to college and used an apple airport base station for my mbp and everything worked fine, and before i went to school i used my parents linksys wireless router and it all worked fine. i came home from college today and used the internet (over the linksys router) for about 5 minutes, then came back a few hours later. after i came back my computer said i was connected via airport to the linksys router but i cant load any page at all with any internet browser, also aim and msn messenger wont work. when i get on the internet i get this message "safari can’t open the page “http://www.yahoo.com/”. The error was: “lost network connection” (NSURLErrorDomain:-1005) Please choose Report Bug to Apple from the Safari menu, note the error number, and describe what you did before you saw this message." i can connect if i plug my mbp in and i have tried the network diagnostics for airport several times, and it comes back saying that i am connected and it is all working fine, but its not. any help would be great. thanks.

    I have the same problem...New MacBook Pro connects fine to Airport at home. Shows connected to WPA network at work but no Internet connectivity - or it takes a VERY long time to pull anything up. Have run the Network Diagnostics successfully and Mac thinks it is connected, but still not able to reach web sites.
    Have followed instructions here: Article ID: 106799 Mac OS: Long Delay Before Web Pages Start to Load, Then Load Suddenly at Normal Speed without success. Can hardwire my MacBook Pro and use the network in this way.
    I am a network admin and I set-up the wireless so I am familiar with the details, but am truly baffled why my Mac will not connect to the Internet.

  • Can't get PayPal to work. Please help.

    First I go to iTunes Store => My Account Info => Edit Payment Options => Click Paypal Bubble => Then Continue, and prompts me to a paypal site where I have "have successfully created a Billing Agreement."
    Than when I click "Continue to iTunes Store" it does absolutely nothing. Is there anyway I can pay purchases with paypal?
    Or is there even a way I can get a digital gift certificate thats not done through iTunes as that would produce the same issue? Thank you.

    Yet another user having same problem. Can't set up PayPal payment in the web version of the store. In Windows desktop iTunes version of my account view, there is the PayPal choice, but when I pick it I am directed to my BROWSER, where I "successfully" link to PayPal, and then I am directed back to the BROWSER version of the Apple store, where...I cannot pay with PayPal. And back in the desktop version of iTunes, my account information is the same as before...NOT set up for PayPal. Hopeless?

Maybe you are looking for

  • In generic extration how to create view

    HI In se11 i try to create view using two table vbap and vbak . vbak            mandt                          vbap                     mandt vbak             vbeln                           vbap                     vbeln        for join condion and

  • Extract the new , changed , deleted  vendor  master data -urgent pls

    Hi all, I have require ment like i need to extract all new, changed and deleted data from SAP TO MAXIMO i need to send to a windows environment which both systems share, i am using LFA1 ,CDHDR , CDPOS Tables , i will get the reuired information , can

  • Ipad 2 broadband speed

    When I pick up my ipad 2 the broadband speed drops by half is it broken? I have good knowledge of routers and wifi in general and I don't have any problems with any of my other devices such as xbox laptop and even my first edition ipad works just fin

  • Cache Refresh Problem

    Hi, We updated XI 3.0 to SP4, and started seeing several problems related to Cache Refresh and JCo. In the <b>SAPGUI in transaction SXI_CACHE</b>, we are unable to refresh the cache, and getting the following error: Connection to system RUNTIME using

  • Multiple state objects

    Hello indesigners. I have a made a multiple state object,its working well in swf,but its not responding to adobe interactive pdf, i was just wandering since its a pdf interactive shouldnt it work?or are multiple state objects onyl for swf files. than