Why I can't set my gmail

I couldn't configure my gmail email account on my iPhone 4S. In the mail setting I got google mail but not gmail like my other phones. I tried to create an account using the "other" option, but it didn't work.

http://support.google.com/mail/bin/answer.py?hl=en&answer=77702

Similar Messages

  • HT4759 I now have my daughters iPad can you please tell me why I can't set up iCloud.in settings the iCloud is greyed out also how do I change her mail account to mine?

    I now have my daughters iPad can you please tell me why I can't set up iCloud.in settings the iCloud is greyed out also how do I change her mail account to mine?

    To change your iCloud ID or password you have to go to Settings>iCloud, tap Delete Account, then sign back in with your other ID.  If you need to migrate any of your daughter's iCloud data to your account, choose Keep on My iPad when prompted, then choose Merge to upload it to the new account.  If not, choose Delete from My iPad.

  • I can't set up gmail in my iPad 2. Keep on saying ' can't connect with SSL and ask me whether to connect without using SSL, then I press 'yes' and it said again IMAP is not working and tell me to see network connection and incoming mail server.

    I can't set up gmail in my iPad 2. Keep on saying ' can't connect with SSL and ask me whether to connect without using SSL, then I press 'yes' and it said again IMAP is not working and tell me to see network connection and incoming mail server. No idea how to do anymore. Already tried to figure out. But not work. Can anyone pls help me?

    Nope, doesn't pass verification. I get the spinner for a minute or so, then the alert about setting it up without SSL. Are you suggesting I disable Fetch and Push BEFORE I enter the account details? Because I never get past the account details screen, unless I choose "Set up without SSL" after the warning.

  • Can I set up gmail from my "mail" application?

    I have wireless and I use airport etc to get the internet in my building. I am trying to set up gmail with POP and every time I do I cannot receive any emails although I can send emails out from my mail application with gmail-any ideas as to why I cannot receive emails would be appreciated... or can I ask an apple technician about this problem?

    Did you follow the directions given at Gmail on how to set-up?
    Let us know the setting from preferences/accounts so we can see if anything is incorrect. Frequently it is needing to have the server port changed. Mine is at 587, and all is working fine. Feel free to hide the info you prefer not to share, an example "username"@gmail.com.

  • Can't set up Gmail on new iPad 2?

    Hi, I just bought my wife a gently used iPad 2 for Christmas. I'm out of town on a business trip, so I thought I'd spend the week getting it all set up for her so it's ready to rock 'n roll when she unwraps it.
    I can't get her Gmail account to work. I go to Settings>Mail, Contacts, and Calendars>Add Account>Gmail and enter all the information, and eventually I get an alert about not being able to set up the account using SSL, do I want to set it up without SSL? If I click "Yes," then I get a warning that I may not be able to send and receive mail from the account (and, in fact, I can neither send nor receive messages). If I click "No," then it just sends me back to the account details entry panel.
    I know the account info is correct because I logged in with the same credentials on my laptop. The hotel wi-fi connection is wonky, so I went over to Staples and tried it there. I think it works, because I was able to use iCloud to sync her photos (the ones on her iPhone immediately showed up on the iPad), and the App store worked, and a couple of other things. However, the Gmail account just would not function, even after removing it and re-entering the information a few times.
    Also had the same thing happen with the DirecTV for iPad app; it took my account login stuff and then gave me an endless "Retrieving account details..." spinner. I let it think for 10 minutes before just giving up and coming back to the hotel.

    Nope, doesn't pass verification. I get the spinner for a minute or so, then the alert about setting it up without SSL. Are you suggesting I disable Fetch and Push BEFORE I enter the account details? Because I never get past the account details screen, unless I choose "Set up without SSL" after the warning.

  • Can't set up Gmail on BB Curve

    I'm going insane!  I'm trying to get gmail set up.  I downloaded the mobile app for gmail, but everytime I try to log in so I can actually create a gmail address, I keep getting the message "This program requires a working data connection.  Please check your signal strength."  My connection works fine for going anywhere else with the internet.  I googled this problem and it said something about service books.  So I logged on to my BB internet service account and "sent servicebooks".  That didn't work.
    Help! 

    I recommend that you use a PC to create a Gmail account (and email address).  Then go into email setup on your BB Curve and setup your new xxxx.gmail.com address from there. Then you should be able to associate the account using the Gmail app.
    FYI, service books are tied to the email address so if you did not have a Gmail address established there would have been no service book to update.

  • Can't set up gmail on playbook

    I have been trying without success to add gmail to my playbook. I keep getting the following message: "Your login information for IMAP server (imap.gmail.com) has changed or is incorrect. Please check your account settings."
    I do not have 2 step verification for gmail, and I can log in from my desktop without issues. I was also able to set up gmail on my iphone without difficulty.
    Solved!
    Go to Solution.

    I have the same problem. I tried hard reboot. I also looked for security settings to setting, but do not see anything that I could change to have any effect.
    What security settings did you change?

  • Why i can't set an veriable into animation attributes?

    Hello,
    I have an simple question, why i can't put variables into animations ?
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application width="100%" height="100%"
                   xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Declarations>
            <s:Parallel id="MoveRect_1ToRight">
                <s:Move xTo="{MoveXto}" target="{Rect_1}" duration="8000" />
            </s:Parallel>
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                public var MoveXto:Number = -(Rect_1.width - stage.width);
            ]]>
        </fx:Script>
        <s:Group id="Rect_1" width="3000" height="800" verticalCenter="0">
            <s:Rect width="100%" height="100%">
                <s:fill>
                    <s:LinearGradient>
                        <s:GradientEntry color="#e8db03"/>
                        <s:GradientEntry color="#153eec"/>
                    </s:LinearGradient>
                </s:fill>
            </s:Rect>
        </s:Group>
        <s:Group id="Rect_2" width="80" top="0" bottom="0" right="0"
                 rollOver="MoveRect_1ToRight.play();" rollOut="MoveRect_1ToRight.pause();">
            <s:Rect width="100%" height="100%">
                <s:fill><s:SolidColor color="#000000" alpha="0.2"/></s:fill>
            </s:Rect>
        </s:Group>
    </s:Application>
    Greetings
    zombiecook

    You need to calculate the value of MoveXto after the application is
    created, here I use the creationComplete handler as an example (and I
    changed stage to this), but you might also consider using the
    applicationComplete handler if you do want a non null stage value.
    <?xml version="1.0" encoding="utf-8"?>
     <s:Application
    width="100%" height="100%" 
    xmlns:fx="http://ns.adobe.com/mxml/2009"               
    xmlns:s="library://ns.adobe.com/flex/spark"               
    xmlns:mx="library://ns.adobe.com/flex/mx"               
    creationComplete="init()">          <fx:Declarations>       
    <s:Parallel id="MoveRect_1ToRight">             <s:Move
    xTo="{MoveXto}" target="{Rect_1}" duration="8000" />        
    </s:Parallel>     </fx:Declarations>         
    <fx:Script>         <![CDATA[             [Bindable]
    public var MoveXto:Number; 
                private function
    init():void {
                    MoveXto = -1 * (Rect_1.width -
    this.width);
                }         ]]>
    </fx:Script>
        <s:Group id="Rect_1" width="3000"
    height="800" verticalCenter="0">
            <s:Rect width="100%"
    height="100%">
                <s:fill>
    <s:LinearGradient>
                        <s:GradientEntry
    color="#e8db03"/>
                        <s:GradientEntry
    color="#153eec"/>
                    </s:LinearGradient>
    </s:fill>
            </s:Rect>
        </s:Group>
        <s:Group id="Rect_2" width="80" top="0" bottom="0" right="0"
    rollOver="MoveRect_1ToRight.play();"
    rollOut="MoveRect_1ToRight.pause();">
            <s:Rect
    width="100%" height="100%">
    <s:fill><s:SolidColor color="#000000"
    alpha="0.2"/></s:fill>
            </s:Rect>
    </s:Group>
    </s:Application>
    Thank you very much !

  • Can I set two gmail address account in my iPad?

    I had set up one for my Mrs and I can't set up mine in the same iPad. Please help :D

    Settings > mail,contacts and calendars > add account

  • Can't set up gmail on iphone

    I am having trouble setting up gmail on my iphone

    If you changed your password, and you have 2 step authentication turned on, you need to generate a new device specific password for the phone.
    See the help pages at mail.google.com.

  • Can't set up gmail account of Pre2

    I have four accounts.  Three Google Apps account and one Gmail account
    I have set up the three google apps accounts OK. and they seem to work :-)
    However, when I try to add the @gmail.com account it simply just hangs when I click on the "Create" button.  If I close the card, then the account remains only partly created.  i.e. it appears to be there, but I dont get any emails and I cannot view any of the folders if I click on the down-arrow to view them.
    How can I add this account?
    Post relates to: Pre p100ueu (O2)

    Hello RedMist, this forum is of the "peer-to-peer" design - users helping users.  There are a few HPalm CSR's who come here on their own time to help out.  With over 250,000 registered users here, you would think more would stay and help answer questions, but in reality there are pitifully few real helpers here...
    Most users just "hit and run" and don't bother to "pay it forward" by offering to help others.  
    No response to a question usually indicates "we don't know the answer" or "we haven't gotten around to viewing it".
    Unfortunately, I have no idea why it's not working.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • How can I set up Gmail on my iPhone with a different domain name?

    I'm an ASU student so my email ends in @asu.edu. However its a Gmail account and I just got a new iPhone and I would really like to set it up through the mail app but it won't let me. Every time I type my email and password in the phone says: "The user name or password for "imap.gmail.com" is incorrect"...but I know it isn't. Is there a way I can do this?
    Thanks!

    This should work; one of my e-mail accounts is my own domain through Gmail.  Make sure your username is set to your full e-mail address (like [email protected]) rather than just your username.
    Did you set it up on your iPhone as an IMAP account, or as a Gmail account?  It should work perfectly using the Gmail setting.  It can work as IMAP, but you need to jump through a few hoops to get there.

  • Can't set up gmail account in 10.7.5 Apple Mail

    Mail on my daughter's MB deals with her Yahoo account splendidly. But when I tried to add her gmail account, it balked. I accessed gmail via the web and turned on IMAP and save changes, then I added the account. The response was that Mail couldn't access gmail because either the username or password was wrong. So I tried the same whole routine, except this time setting it up as a POP account. Same lack of joy. I shut down and restarted. I repaired permissions. I even found a seemingly smart person on another thread who asked the other person with a similar problem to do a Lookup in Network Utility. So I did, and what I got from that effort (below) looks to me like the computer can find gmail without any difficulty.
    So I'm lost. Any help would be greatly appreciated.
    Lookup has started…
    Trying "imap.gmail.com"
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 40637
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;imap.gmail.com. IN ANY
    ;; ANSWER SECTION:
    imap.gmail.com. 98 IN CNAME gmail-imap.l.google.com.
    Received 66 bytes from 192.168.1.1#53 in 42 ms

    Hector Lareau wrote:
    Mail on my daughter's MB deals with her Yahoo account splendidly. But when I tried to add her gmail account, it balked. I accessed gmail via the web and turned on IMAP and save changes, then I added the account. The response was that Mail couldn't access gmail because either the username or password was wrong. So I tried the same whole routine, except this time setting it up as a POP account. Same lack of joy.
    Is your daughter using 2-step Verification on her gmail account? If yes, then you need to create app-specific password to be able to use mail application. More info and how to on Google documentation page.

  • Can't set up Gmail in Mail 3.5

    Hi,
    I cannot set up either POP nor IMAP. I get the error message: Trying to log on to IMAP (or POP) failed. But my user and password are correct.
    Interestingly, I didn't receive a testmail from googlemail to my old mail address either. What is wrong?
    Any ideas?
    Thanks

    Hello,
    I just got a Mac for a first time and I'm trying to configure Mail 3.5 with my gmail account and even after having followed all the steps seen on this forum, I just can't do it. The messages that come up are:
    "The IMAP server "imap.gmail.com" is not responding. Try checking the network connection, and that the server name is correct. Otherwise, the server might be temporarily unavailable. If you continue, you might not be able to receive messages"
    AND
    "The SMTP server "smtp.gmail.com" is not responding. Try checking the network connection, and that the server name is correct. Otherwise, the server might be temporarily unavailable. If you continue, you might not be able to send messages"
    it might be very basic but I can't manage. Can anyone help??
    Thanks in advance!!

  • I can not set up Gmail account in Thunderbird

    Hi all!
    I just installed Thunderbird but I could not set up my Gmail account within it. Every time I try to configure my Gmail account, it always says "Configuration could not be verified - is the username or password wrong?" but my username and password are both correct. I have tried to set up other Gmail accounts and it says the same. I wonder is there any conflict between Gmail and Thunderbird. Anyone can help me to solve this problem? Thanks in advanced :)
    You can see my problem in this picture:
    [IMG]http://pik.vn/2014ffc9acce-008f-4206-8d53-feb1a3e9963a.png[/IMG]

    Google considers anything outside their own little world insecure. Makes for great marketing. :)
    If this solved your issue please mark it solved. Thanks.

Maybe you are looking for

  • Best HD replacement for mid 2009 MBP 15"

    Dear friends.  my wife owns a mid-2009 MacBook Pro 15 inch. We want to replace her 500 GB hard drive with a 1 TB drive. I spent time on the OWC website  and had three long and extremely interesting  live chat exchanges with the sales staff. But I end

  • Adding a counter that keeps track of the total number of times a loop has run, even if LabVIEW has been restarted.

    Hi all, I am writing a VI for measuring data and inserting it into a database. The measurements are controlled by a loop that runs once every minute. I want to give each measurement a unique id number and store this too in the database. To do this, I

  • Why does my phone hide my camera roll option in my photo app

    When looking at my photo albums on my photo app, my camera roll album is up at the top under the header for the screen. Because of this you can't select it. The only way to view them is to select camera app and then at the bottom left of my camera sc

  • JFileChooser "File Name" field

    Hi, I am trying to use a JFileChooser as a component within a JDialog, and everything works fine, except that I do not understand how I can get the value of a filename typed into the "File Name:" field on the form. I've read the "JFileChooser" Java d

  • JAEHYLEE  (R11i OIE)   OIE Import ready 상태 status는

    Purpose Expense Report가 Expense Import 수행중에 중단되었을때 Import를 하기 위해 정상 상태가 무엇인지 확인해 보고자 한다 What do the values mean in the columns SOURCE and WORKFLOW_APPROVED_FLAG in the table AP_EXPENSE_REPORT_HEADERS_ALL? Solution Soure는 'SelfService' 에 workflow_appr