Please can someone help,i bought an iphone from the states,i put a sim in ,i could make phone call,but i couldnt surf ,it seems that something is wrong and when i click on wireless nozhing happen,

please someone help i bought an iphone4 from the states, i put the sim card in, icould make a phone call,thats ok but i couldnt open the opera,and when i click on wireless on buttom nothings happen.

Are you talking about an unlocked version?  If an iPhone is locked to AT&T in the U.S., anyting is fair game outside of AT&T's network. (You can always use WiFi, though.)

Similar Messages

  • On a west Texas highway I believe my old 3G iphone could get data with 3 bars. My new 4S could make phone calls but not get data. An att guy told me it's because there aren't enough 4G towers yet. Other explanations?

    On a west Texas highway I believe my old 3G iphone could get data with 3 bars. My new 4S could make phone calls but not get data. An att guy told me it's because there aren't enough 4G towers yet. Other explanations?

    Simple solution. Get a real internet service and not a cell phone internet connection service it was never meant to be used as the primary internet service
    And how do you lose a home and job and be sued as you claim. What over 10 Gb of data? Give me a break
    In my city small claims is $5000.00
    And over that amount you can go to a superior court to have your issue settled.
    http://www.bbb.org
    Good Luck, Elector

  • Please can someone help me? Have iphone 4 and just returned home from abroad where the phone worked fine. Now it wont receive wifi. It picks up signal and shows on phone but cant connect to internet. Computers and ipod all working ok

    Hi, please can someone help me?
    Have just returned home from abroad where my iphone 4 worked perfectly.
    Now at home it wont receive wifi. It picks up the signal which shows in phones display but cant connect to the internet. Computers and ipod all working fine so I assume it must be a problem with the phone.
    Have checked that wifi is turned on and tried resetting phone to no avail

    Hello melissa82686,
    From your description, it sounds like you may have been using the SMS feature of Continuity in iOS 8. If this is the case and it has somehow become misconfigured after a recent change, you may find the information and steps outlined in the following articles helpful:
    SMS
    With Continuity, all the SMS and MMS text messages you send and receive on your iPhone also appear on your Mac, iPad, and iPod touch. Even if the person you’re communicating with doesn’t have an iPhone. And regardless of what phone they have, you can reply from whichever device is closest to you, including your iPad or Mac. You can also initiate a  conversation by clicking a phone number in Safari, Contacts, or Calendar.
    To use Continuity for SMS and MMS with your iPhone and your Mac, iPad or iPod touch
    Your iPhone, iPad, and iPod touch need to use iOS 8.1, and your Mac needs to use OS X Yosemite.
    Sign in to iMessage on your iPhone, your other iOS devices, and your Mac using the same Apple ID.
    On your iPhone:
    Go to Settings > Messages > Send & Receive > You Can Be Reached By, and add a check to both your phone number and email address.
    Go to Messages > Text Message Forwarding, and enable the device(s) you would like to forward messages to.
    Your Mac, iPad, or iPod touch will display a code. Enter this code on your iPhone to verify the SMS feature.
    Connect your iPhone, iPad, iPod touch, and Mac using Continuity - Apple Support
    Get help using Continuity with iOS 8 and OS X Yosemite - Apple Support
    Sincerely,
    - Brenden

  • My itunes wont work and wont let my uninstall and then reinstall the newer version as its asking me too! i keep getting an error message!...please can someone help?

    please can someone help me to unistall itunes from my laptop control panel, this means it also wont let me install the latest version!

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • Please can someone help - I am trying to download flashplayer compatible with Windows8

    Please can someone help with FLashplayer trying to find the download compatible with WIndows 8

    Hello,
    There are two versions of Flash Player for Windows, ActiveX (for Internet Explorer) and Plug-in (for other browsers).  On Windows 8.x, Microsoft updates Flash Player ActiveX via Windows Update service.  For Plug-in, you can go to get.adobe.com/flashplayer (with the appropriate browser) and proceed with installation.  Note that Google Chrome also includes a seperate Flash Player, which Google updates via Chrome update.
    Maria

  • I cannot open Keynote? apparently there is error -600 occuring. Please can someone help?

    I cannot open Keynote as I usually would. Apparently there is a error -600 ocurring. Please can someone help? Thank you..

    Contact the BT Care Team. They are the moderators who oversee this forum and will be able to look into this for you. They may take a few days to respond but you will get an immediate online acknowledgement with a reference number to note in case you need to follow up.
    You can click the white star next to this message if you think it was helpful.

  • SQL : Please can someone help ?

    Guys,
    Please can someone help me ? I've written the following query and struggling to get the correct
    outer join. In the first query, i look for all daily transactions of users registered under
    hill.com but it's not giving me a record for an game at 4:24 because there are 0 players from hill.com
    I need that to be displayed as 0 instead of skipping the entire row..
    In the second query, when i comment out the registration_site, that gives me the missing game. How do
    i use the outerjoin in this case ?
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    AND      registration_Site  in ('hill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164       6      14.25
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410       8      14.40
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94       3      22.50
    Thursday  08-FEB-07 04:36:00        .10       5.00      24.46 Y      38,    335       7      12.70
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    --AND      registration_Site  in ('williamhill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164      22      41.00
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410      27      41.00
    Thursday  08-FEB-07 04:24:00        .25       5.00      17.16 Y      35,     94      13      23.50
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94      14      47.00

    which table contains game_type column???
    It will be better to prefix all the columns with table aliases.

  • HT1438 i keep getting SIM locked message on my iphone 4s and I need to unlock it please please can someone help me? The voice activation is on and when I type in what I think is the code It wont even put in the numbers

    I am trying to unlock my SIM from my iphone 4s, as I am getting a mesage SIM locked. How do I unlock this?Also I am typing in what I think my code is and it is not working. The voice activation wil not allow me to type in the numbers for some reason. I have turned it off and on about 7 times now. please please please can someone help me?

    If you bought the iphone in the US and it is locked to a specific carrier, then you can't use a different sim (from another carrier).  Is this your situation?
    Otherwise I'm not sure what you mean by "trying to unlock my SIM".  In which country did you buy the iphone?  Who's your carrier?

  • Unable to update to ios 5 on windows 7. please can someone help me i have tried everything? i deleted itunes and downloaded the new version when i plug my iphone 4 in it does a back and then I try and update the software it extracts error 3194

    unable to update to ios 5 on windows 7. please can someone help me i have tried everything? i deleted itunes and downloaded the new version when i plug my iphone 4 in it does a back and then I then everything runs normal and it extracts and then i get an error code at the end 3197. had the iphone for two months and its new.
    Please can somene help me, i am currently on version 4.3.3 (8J2)
    Modem Firmware 04.10.01

    followed someones instructions and it has worked ios 5 is now working on my iphone 4

  • Please can someone help me out. I initial configure my bluetooth stereo ear piece with my iphone 4 and it was working but I mistakenly forget the bluetooth device and I cannot reconfigure it again with my iphone 4.

    please can someone help me out. I initial configure my bluetooth stereo ear piece with my iphone 4 and it was working but I mistakenly forget the bluetooth device and I cannot reconfigure it again with my iphone 4?

    place the device in pairing mode and re-pair.
    If you don't know how to do this, go to the manufacturer's website and download the user guide for your device.

  • TS4268 My iphone will not send imessage for normal messages. please can someone help?

    My iphone will not send imessage for normal messages. please can someone help?

    Hi maccaman82,
    If you are having issues sending messages from your iPhone, you may find the following article helpful:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Regards,
    - Brenden

  • HT4759 Hi iv added iCloud to my iPhone 5 and doing so I've managed to wipe all contacts photos and now can't use IMessage, I went to backup and chose the wrong backup date, please can someone help me restore my phone back to how it was before I added iClo

    Hi iv added iCloud to my iphone5 and by doing so I've now lost all contacts, photos and also my iMessage please can someone help me to restore my phone back to how it was before doing this? I went to backup and chose wrong backup date and I'm now stuck. This is driving me mad PLEASE someone help??

    As far as I know you can't delete the primary email address for an iCloud account.  It's assigned when the account is created.  But your neighbor wouldn't have been able to get into your iCloud account without your Apple ID and password.  Are you sure the account wasn't still on your phone when you gave it to him?
    You could migrate a copy of your data to a new iCloud account but I would still be concerned that someone else was using my old account, which presumably still has your data in it.
    I'm fairly certain that you're going to have to have iCloud support help you sort this one out as they may have the ability to make changes to an existing account that users can't.  Make an appointment with the genius bar at a nearby Apple store and have them take a look at it.  If necessary, they should be able to contact iCloud support for you.

  • My apple ID is showing someone elses email address and not mine so when i want to buy or update apps it brings this other email address up. please can someone help how do i put it back to my email address?

    my apple ID is showing someone elses email address and not mine so when i want to buy or update apps it brings this other email address up. please can someone help how do i put it back to my email address?

    First go here - https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/ and login under the manage tab.  Check your information and be sure it is all correct.
    An AppleID is nothing more than an email address, so if you see another email address in the store, then someone has logged in with a different AppleID than yours.  Did you let someone else use your iPhone?

  • IPod blank screen-please can someone help ????

    hi
    i've had my 5th G iPod video for just over 2 years now. No serious problems until today- i now have the so called screen of death. In my case what happens is it a white screen with a grey line down it. The iPod was dropped, but it has been a few times in the past with no problems. i have tried several ways to restore everything, even going so far as to restore the iPod to its factory settings. Having tried to reset it a few times when connected to my computer it is now not detected by iTunes.
    Please can someone help me
    thank you

    update it is now detected by iTunes, but main problem still not solved

  • Please can someone help me to access remote desktop connection

    Please can someone help me to access remote desktop connection on my macbook pro 13inch. I do have office 2011 installed.

    Hi Tartan Pearl,
    Welcome to the Apple Support Communities!
    It sounds like you may need help with a forgotten passcode on your iPad. If this is the case, please refer to the attached article for information on how to troubleshoot this situation. 
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Have a great day,
    Joe 

Maybe you are looking for

  • Removing data and passwords

    I have MacBookPro from 2008.  I am running Lion 10.7.5 on the system.  There is a startup disk application in my utilities.  I also have a VMWare partition with Window (dont scream).  I want to barter this system with someone so I need to remove all

  • How to delete old unused blog tags from Wiki Server 3 in Lion Server

    My Tags index in my Wiki Server 3 wiki (Lion Server) still shows old tags that are no longer in use. But, how in the world does one remove them? Any help?   Thanks.

  • ACR 4.6 and PSE6 Organizer still crashes

    I posted this a long time ago for ACR 4.5 and I'm gonna do it again for CR 4.6. Please read below I'm still having the same problem with ACR 4.6 (BETA). I'm experiencing the following problem when I download ACR 4.5 to be used with PSE6. The problem

  • Firefox 2.x Flash 9 html issue.

    I have Flash version 9 installed. When I try to run the generated Flex .html file for my project using Firefox, I get a message prompting me to install Flash 10, otherwise it doesn run. Now I did try running the .swf file with Firefox and it runs fin

  • ASO Build Rule - "Level Usage for Aggregation"

    When Building ASO (9.3.1) Dimensions via Rules, we wish to set the "Level Usage for Aggregation" of a member in the data file. You can set a Rule Field Property to Aggregate Level Usage, though it not clear what value should be inserted in the Data F