I can't access sites that require username and password since 4.3 update

Since updating to IOS 4.3, I can't access bookmarked sites that require username and password. I can still get on sites that don't require it. Help please...

Have you tried the standard fix of resetting your iPad?
Press and hold the On/Off Sleep/Wake button and the Home
button at the same time for at least ten seconds, until the Apple logo appears.

Similar Messages

  • I deleted cookies from my computer and now I can't access sites that require usernames/passwords

    I recently deleted cookies from my computer and now I can't access any of the sites i used to use with usernames/passwords. even after requesting ne wpasswords etc. the pages just keep resetting

    If you are using Safari, empty the Safari cache.
    With Safari open, press Command + Option + E on your keyboard.
    Quit and relaunch Safari to test.
    ***   When you post for help, please state which OS X is installed.
    If you aren't sure, click About this Mac from your Apple menu 
    Troubleshooting advice can depend on that information.

  • How do i open a protected pdf that requires username and password in side the pdf itself?

    Hi,
    I bought this pdf from SABS South Africa, the file contains the electrical unit standards and I cant walk around with my laptop all the time. The PDF has a username and password field on page 6, which connects directly to SABS website to be able to unlock from page 6 to 397. Why cant i type into the username and password fields on my mobile??
    Regards,
    Christo

    Hi,
    Is the PDF document "protectedPDF" by Vitrium?
    Currently, Acrobat DC mobile products (for iOS and Android) do not support PDF documents with DRM (Digital Rights Management) by third-parties.
    I am not aware of any other free mobile apps that support "protectedPDF" documents.
    I'd recommend using the desktop version of Reader on a Windows or Mac computer to view the PDF documents. Sorry for the inconvenience.

  • How to access sites that require flash

    How do I access sites that require Adobe flash player on the IPAD2?

    You can't without installing another browser that supports Flash from the App store.  Search the app store.
    Just keep in mind, that like Flash players for mobile devices, these apps are less than optimal.  This is why Flash is not supported on iOS devices by Apple.

  • I wanna ask about my imessages, because everytime that I am using my apple ID it is always saying that my username and password was incorrect.But I am really sure that I have input the correct username as well as my password.How can I resolve this problem

    I wanna ask about my iMessages, because everytime that I am using my apple ID it is always saying that my username and password was incorrect.But I am really sure that I have input the correct username as well as my password.How can I resolve this problem?

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • Require username and password

    How can I require username and password to access a page on my Muse site

    Hi orduncan,
    you will need to create a secure zone in Business Catalyst. You can do this under Site Manager > Secure Zones. You can find more information on how to do it in detail here: http://kb.worldsecuresystems.com/164/bc_1647.html
    Nicole - BCGurus.com   |  http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Can I use the same icloud username and password for multiple phones?

    I have 6 iphones and wanted to use Apple Configurator to install the same apps on all 6 phones.  Some of the apps though, also require further installation by email.  Can I use the same iCloud username and password for all 6 phones to download the apps and also to configure email or do I need to create 6 different Apple IDs?

    If different people will be using these phones, you might be better off using the same Apple ID for the iTunes content...apps, music, etc. on each of these devices, but create different ID's for iCloud on each device. You can use one ID for the iTunes/App store, & a different ID for iCloud. That way, messages, notes, contacts, calendars, etc will be kept separate on each device.

  • Access to InitialContext by username and password

    hi,
    I have implemented a web application, which gets resources via JNDI.
    I am accessing JNDI by username and password:
    Properties p = new Properties();
    p.put(Context.INITIAL_CONTEXT_FACTORY, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
    p.put(Context.PROVIDER_URL, "localhost:50004");
    p.put(Context.SECURITY_PRINCIPAL, "username1");
    p.put(Context.SECURITY_CREDENTIALS, "password1");
    javax.naming.Context ctx = new InitialContext(p);
    Accessing the InitialContext works without any problems.
    My webapplication provides the functionality, that the user can relogin within the application.
    When the user pushes the relogin-button, the following code is run again
    Properties p = new Properties();
    p.put(Context.INITIAL_CONTEXT_FACTORY, guiConfig.getContext_factory());
    p.put(Context.PROVIDER_URL, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
    p.put(Context.SECURITY_PRINCIPAL, "username2");
    p.put(Context.SECURITY_CREDENTIALS, "password2");
    javax.naming.Context ctx = new InitialContext(p);
    So I would like to check the access to JNDI by username and password again.
    Unfortunately I get an InitialContext EVEN WHEN MY PASSWORD IS WRONG.
    It looks like InitialContext is not cleared and access to JNDI is not checked by username and password again.
    Do I have to clear InitialContext before I relogin to the new InitialContext with the new username and new password; and if yes how can I do that?
    Thanks for your help in advance!
    Andreas
    Message was edited by: Andreas Putscher

    Hi Maksim
    I have tried the following source (within my webapplication):
    boolean isOldMethod = true;
    if (isOldMethod) {
         Properties p = new Properties();
         p.put(Context.INITIAL_CONTEXT_FACTORY, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
         p.put(Context.PROVIDER_URL, "localhost:50004");
         p.put(Context.SECURITY_PRINCIPAL, username);
         p.put(Context.SECURITY_CREDENTIALS, password);
         ctx = new InitialContext(p);
    } else {
         ctx = new InitialContext();
         ctx.addToEnvironment(Context.INITIAL_CONTEXT_FACTORY, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
         ctx.addToEnvironment(Context.PROVIDER_URL, "localhost:50004");
         ctx.addToEnvironment(Context.SECURITY_PRINCIPAL, username);
         ctx.addToEnvironment(Context.SECURITY_CREDENTIALS, password);
    Source code within on of my EJBs:
         public void setSessionContext(SessionContext context) {
              this.context = context;
    public UserAuthorization getUserProfile(String userName, String applicationName) throws CasablancaException {
         Principal prin = context.getCallerPrincipal();
    When I run oldMethod for INITIAL LOGIN and username+password are false,
         - immediately an exception is thrown
         -> THIS IS CORRECT BEHAVIOUR
    When I run newMethod for INITIAL LOGIN and username+password are false,
         - no exception is thrown,
         - context.getCallerPrincipal() returns "Guest" (I have logged in with user "TESTUSER", who is Adminstrator)
         -> WRONG BEHAVIOUR
    When I run oldMethod for RELOGIN and username+password are false,
         - no exception is thrown
         - context.getCallerPrincipal() return the old user (Context HAS NOT CHANGED to new user)
         -> WRONG BEHAVIOUR
    When I run newMethod for RELOGIN and username+password are false,
         - no exception is thrown
         - context.getCallerPrincipal() return the old user (Context HAS NOT CHANGED to new user)
         -> WRONG BEHAVIOUR     
    So in both cases (oldMethod and newMethod) no errors are thrown, but no Relogin to JNDI is performed.
    Do you have any more suggestions?
    Thanks for your help!
    Andreas

  • Could not open gmail on the mail application of the mac book pro. Gmail has two account types, SMTP and Google IMAP. In both cased failure in trying to log on to SMTP and Google IMAP because I have to verify that the username and password are correct.  Ho

    Could not open gmail on the mail application of the mac book pro.
    Gmail has two account types, SMTP and Google IMAP.
    In both cases failure in trying to log on to SMTP and Google IMAP because I have to verify that the username and password are correct.
    How do I verify that? Please help. Thanks.

    Routing gmail through Mail.app:
    imap-http://mail.google.com/support/bin/answer.py?answer=81379&topic=12814
    pop-http://mail.google.com/support/bin/answer.py?answer=13275&topic=12810
    More up-to-date advice here:
    http://www.macworld.com/article/2033842/make-mail-and-gmail-play-nice.html#tk.nl _mwhelp
    Note that you lose privacy when using Gmail (and Yahoo):
    Gmail and Yahoo both scan users' emails. They do algorithmic analysis of your email messages, targeting ads that relate to the content of your messages.

  • HT5622 My iPad will not take my Apple username and password since I upgraded to 7.0.2

    My iPad will not take my username and password since I upgraded to 7.0.2.

    try this
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings  (or for network connection issues 'reset network settings').
    (no media or data will be deleted from the device, this will only take a minute).

  • What happens if you go on Twitter, click a phishing site, give your username and password to it (because you never knew) can the hacker also hack into your iPod Touch 4th generation?

      Okay, so I went on Twitter and some chick replies to a tweet and she sent me a tweet going like 'you guys were doin what here, looks confusing' then sends me a link. There was no tweet conversation or anything but being an idiot, I pressed the link (I was on my iPod Touch and it's 4th gen) and it got some 'time session ended' or whatever. Again, being the idiot and regretting it, I typed my Twitter username and password. Then it showed some 'cash' thing I don't even know. I searched it up, it was a phishing site and I changed my password for the third time. I hope you're still reading this because I'm very desperate for help. If I did press it, will the hacker hack my iPod too?  Thanks! xx

    Nope, they can't hack you iPod. The can (or could) log into your twitter account and change the password so y no longer control the site.
    If you used the same password for other sites/serves change those too.
    You might also want to change other information information in the twitter account like secret questions/answers since maybe they already logged into your account to steal that data  and plan to use that information at a later date.

  • MS access database prompting for username and  password

    Hello,
      When I try to run a crystal report that is connected to a (Access Database) from crystal server 2013, I get prompted for a username and password. Im not sure what im doing wrong, Ive tried creating a ODBC connection, change the SAP service to run under a domain user account, recreated the report with a different file path.  but still no luck, please help im at a lose.
    Thank you

    Hello,
    Refer please to the following kbas, probably this can help you :
    http://service.sap.com/sap/support/notes/1270997
    http://service.sap.com/sap/support/notes/1661997
    Regards,
    Asma

  • CANNOT CONNECT TO WIFI THROUGH IPOD TOUCH 4G..ROUTER REQUIRES USERNAME AND PASSWORD..HELP NEEDED

    i have a ipod touch 4g...and my router requires WEP key and a username and a password when i connect to it through my laptop..ipod touch only asks for a password i.e. the WEP key..question is how to enter the username and the password in ipod touch?  

    my service provider has provided me with a username and a password..therefore my router is "NOT ALWAYS CONNECTED TO THE INTERNET"..also PPPoE is enabled...
    i think i ll have to call the ISP and tell him to remove the username and password...because i dont think that ipod has a provision for entering passwords other than the WEP key..

  • Command to temporarily change login window to require username and password

    Is there a command to temporarily change the login in window from the little bubble where you select your user to having you type in both the username and password? If not, is there a way to switch user accounts, like in fast user switching, through terminal?

    Hi Maitreyee,
    I picked up the incident you set up with this question, and responded there, but just saw that you had asked the question here as well (which is a good idea).
    This is the feedback I provided in the incident, so I'm not sure if you want to get feedback from someone else, but the answer is:
    In order to change the ID's and Passwords for those service accounts you will have to uninstall and reinstall BPC with the new accounts.  There is really no way to make that kind of change maunually in our system as there are too many backend pieces that use those accounts.
    Also, you'll need to make sure before reinstalling that the new accounts have the correct permissions per the installation document.
    Thank you,
    Dan

  • A site that i need to access asks for my username and password and then either pretends to load and says "authentication failed" or acts like it will load and then make me put it in again and it still doesn't work.

    I need to access the library resources for an assignment in college. When I get to the website it asks for my user name and password and once I type that information, it seems like it will load and then it will repeat the user name and password page as if it did not load or say "authentication failed."

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    See also [[Cannot log in to websites]]

Maybe you are looking for

  • Itunes will not open my iMac

    I have a 2 year old imac which generally running just fine, however itunes will not open on my user profile, it just seems to get stuck in a loop. I've checked the other user profiles and its working fine on there. Any suggestions? Thanks

  • After Export to excel response handler, control does not restore

    I am downloading an excel file from a bsp page using the following code. However, after the download the control does not come back to the page from where the download was done. l_xml_xstring variable has the data in xstring format.   lv_content_type

  • Can a standby DR database in different datafile access path?

    We are going to setup a standby DR database for the primary DB.    The primary DB is in Oracle ASM.   Can we setup the standby DB in regular flat file system, instead of using ASM? Thanks,

  • Screen caps on a MacBook using Vista Ultimate?

    I need some help. I'm trying to do my school work online, and the assignment requires us to get a screen capture. However the Mac OSX keyboard commands are not working in Windows, and since I don't have a printscreen button...what do I do?

  • VideoPlayer problems in Flash Builder 4.5

    Wanted to check and see if anyone else is having problems with videoplayer in 4.5. I insert the player, choose the flv file but it does not play once I run the application. I opened FlashBuilder 4 and built the page the same way and it plays fine. Ho