Login problem with LinkedIn

I cannot login to LinkedIn with Firefox but there is no such problem with IE8. The trouble started about 2 months ago when I had version 3.6.15 and continues with the present version 4.0.1. I have been in correspondence with LinkedIn ever since but nothing they suggest works. I like Firefox and it is my default browser, so it is annoying to have to use IE8 just for this task. I would therefore very much appreciate any solutions that anyone can offer.

Clear cookies for that site. Access via Firefox button, Options | Options | Privacy and then click the "Show Cookies" button.
See http://www.linkedin.com/answers/using-linkedIn/ULI/648039-4236346

Similar Messages

  • Re-login problem with WLS 5.1 sp8

    Hi,
    I have a re-login problem with a war servlet: user called reader does not have
    viewing access to all views of a web interface. When she tries to access those
    views a new login dialog comes up as should. The problem is that this new dialog
    does not accept power user login as I would like it to! Any ideas how to change
    the configuration in either web.xml or weblogic.properties file to make it work?
    In Tomcat environment it works.
    BR Jukka

    Hi,
    I have a re-login problem with a war servlet: user called reader does not have
    viewing access to all views of a web interface. When she tries to access those
    views a new login dialog comes up as should. The problem is that this new dialog
    does not accept power user login as I would like it to! Any ideas how to change
    the configuration in either web.xml or weblogic.properties file to make it work?
    In Tomcat environment it works.
    BR Jukka

  • AD account Login problem with MAC 10.6.8

    Hi All,
    We have around 50 odd MAC that are connected to windows server 2008 R2. the user were logining in to these MACs using their AD account. Recently few of the random MAC did not allow the user to login using their AD account.When analyzed though the MAC shows that it has connected to the Domain and the server is active with green button it has unbind itself from the server.I had to login in as local user bind the MAC back to get this resolved.
    Now the same has started happeneing for most of the MAC that we have and every morning I have login as local Admin and unbind / bind the MAC with the server. this gets reset once the user reboots or shutsdown.
    Have tried with few of the below solution but nothing helped:
    Solution 1:
    <key>mdns_timeout</key>
    <integer>2</integer>
    The integer value is in seconds; changing it to at least 5 should allow the Mac OS X client to reconnect to the Active Directory domain after a network interruption. In some configurations, a larger timeout value may be required.
    You can change this value by using the sudo command and a text editor to edit the preference file directly. Or you can use the Terminal command below, making sure to enter it all on a single line:
    sudo /usr/libexec/PlistBuddy -c 'Set :mdns_timeout 5' /System/Library/SystemConfiguration/IPMonitor.bundle/Contents/Info.plist
    Solution 2:
    I have seen all of the probable solutions and tried everything and still I am getting issues with 10.6.6 and after rebooting the Mac gets unbind. Or the Mac gets Network Accounts Available even when not accessing the list of users from AD. But the thing that I have done that has solved all my issues with AD on the Macs is to uncheck the box to search on all domains. For some reason I am seeing that when the Macs have this option checked, it searches through out the forest on the same domain controller more than once, so AD stops the handshaking of the authentication.
    I hope this helps like it did on our Network, since then I have not seen the Macs lose the binding or slow SMB.
    If you've tried this please let us know.
    TIP: Uncheck Allow Authentication from any domain for Mac AD problems
    Wednesday, April 20, 2011
    Steven Wells sent a fix and an explanation of problems with Macs losing their binding to Active Diretory:
    Unchecking "Allow authentication from any domain in the forest" is working at our college. We have been beating our heads on this for about 2 terms, with no understanding of why it works in some places and not in others. When we found this working, our IT guy said that the Security SID is being duplicated, when it looks in other domain forest, and that is what is causing the problem. This is the first time I have found an explanation for the problem.
    If you've tried this approach please let us know.
    Solution 3:
    Solved it. Create a file in Textedit with the name 'auto_master' (no file extension) with the following contents:
    # Automounter master map
    +auto_master # Use directory service
    /net -hosts -nobrowse,hidefromfinder,nosuid
    /home auto_home -nobrowse,hidefromfinder
    #/Network/Servers -fstab
    /- -static
    Place this in /etc/ folder
    Hope this helps
    solution 4:
    TIP: a Kerberos fix for OS X 10.5 and 10.6 binding to Active directory
    Friday, November 11, 2011
    Mehdi Mafi forwarded a fix he found for problems with Leopard and Snow Leopard binding to Active Directory:
    This was taken from Dane Riley's imaging building for DeployStudio.
    With Mac OS X Leopard every Mac is now running a KDC (Kerberos Distribution Center). Basically each imaged machine is using the same security certificate and hash. Deploying a single image will deploy the same KDC to every system. This [Apple] article covers how to reset the local KDC so that each system is unique. Basically, do the following:
    Launch Keychain Access
    Search for com.apple.kerberos.kdc and delete all 3 items
    Using Terminal type sudo rm -fr /var/db/krb5kdc
    After deployment, perhaps using Apple Remote Desktop to all systems, re- establish the KDC by typing sudo /usr/libexec/configureLocalKDC
    If you've tried this approach with Mac OS X 10.5, 10.6, or even Lion, please let us know. .
    TIP: More on a kerberos fix for AD binding problems
    Monday, November 14, 2011
    Mehdi Mafi updated his Friday report about Mac OS X 10.6 problems binding to Active Directory:
    You may want to add this. If the Mac keeps unbinding from AD (people can't log in to a Mac), here is how to fix it:
    Unbind it from Domain
    Launch Keychain Access
    Search for com.apple.kerberos.kdc and delete all 3 items
    Using Terminal type sudo rm -fr /var/db/krb5kdc
    Re-establish the KDC by typing sudo /usr/libexec/configureLocalKDC
    Bind it to domain again ( When you bind, uncheck allow authentication from any domain in the forest in: Directory Utilitiy-> Advanced Options\Administrative ) this fix the issue that sometimes it can' find AD under search space.
    If you tried this please let us know.
    Solution 5:
    For Snow Leopard AD login issues, use upper case domain
    Solution 6: for .local
    To create this StartupItem, create the following directory as root:
    /Library/StartupItems/FixADAuth
    Then chown it to root:wheel and chmod it to 755. These must also be the owner/permissions on the two files it will contain, below:
    Contents of our /Library/StartupItems/FixADAuth/FixADAuth:
    #!/bin/bash
    . /etc/rc.common
    date > /var/log/FixADAuth.log
    n=0
    AuthSuccess=0
    while [ $AuthSuccess != 1 ]
    do
    id Administrator && AuthSuccess=1 || networksetup -setsearchdomains Ethernet "Empty"; networksetup -setsearchdomains Ethernet middlewich.local; n=$(($n+1))
    done
    echo Authentication successful: $AuthSuccess >> /var/log/FixADAuth.log echo Operation count: $n >> /var/log/FixADAuth.log
    date >> /var/log/FixADAuth.log
    Contents of our /Library/StartupItems/FixADAuth/StartupParameters.plist:
    Description = "Fixes Active Directory authentication issue";
    Uses = ("Disks");
    Obviously you'll need to change "middlewich.local" to your own domain name (and the network interface name if your connection is wireless). The script checks to see if it can see the user "Administrator" on the domain, as he's a fairly common bloke, but if you've renamed yours for security reasons then pick another one. I've also included some logging functionality for debug purposes, so you can verify how well the script is working if you need to and time it in your environment before telling the users how long to wait. The /var/log/FixADAuth.log file will contain the date/time the process started, the success variable set to 1 (just to verify), how many DNS operations were required to fix the problem, and the date/time it ended. For us the time difference is normally about +30-40 seconds with around 120-180 operations taking place. Once you're happy with the script, you can strip it down to its bare functionality if you like, like so for us:
    #!/bin/bash
    . /etc/rc.common
    AuthSuccess=0
    while [ $AuthSuccess != 1 ]
    do
    id Administrator && AuthSuccess=1 || networksetup -setsearchdomains Ethernet "Empty"; networksetup -setsearchdomains Ethernet middlewich.local
    done
    I hope this helps someone!
    Regards

    You are welcome.
    But the question is 10.6 mac  just like 10.6.8  , as long  as its the same and works.
    Yes. You can save some updates by using the combo update.
    10.6.8 Combo Updater

  • There are two separate login problems, with different solutions

    I have just spent a couple of hours fixing a 24in iMac that kept rejecting the account login after installing Leopard. (login with correct password goes to blue screen then back to loginscreen)
    I went through the Apple tech doc that had you logging in as a single user (Cmd-s) and it did not work.
    What did work for me was an archive and install of Leopard.
    It seems that anyone with a new iMac that installed the recent imac update is having this problem. For those people, archive and install seems to work.
    http://discussions.apple.com/thread.jspa?threadID=1214059&tstart=0
    For other people, the single-user instructions seem to work.
    http://discussions.apple.com/thread.jspa?threadID=1202129&tstart=0
    hope this helps
    cheers
    bruce

    > When working with word, documents or emails in the middle of a sequence
    > the picture or window suddenly is yanked off the screen to the right.
    Microsoft Word?  What version and service pack?
    Microsoft Office 2011 SP2 includes Word version 14.2.2.  Some Office 2011 updates addressed problems with Lion.

  • MobileMe login problem with aperture3

    Hello all,
    I'm experiencing the following problem. I cannot login to mobileMe via Aperture 3, because MobileMe didn't recognize the stored password for "xxxxx's" MobileMe account; the username/password combination is not recognized. I've tried the following (in all possible orders):
    1. Close Aperture3
    2. Logout of MobileMe account
    3. In Keychain delete settings for MobileMe
    4. Login to MobileMe again
    5. Open Aperture3
    Anybody any suggestions?
    Thanks for the help,
    Casper
    Message was edited by: Casper Stoutjesdijk
    Changed subject title

    I have the same problem with iPhoto.

  • Login problems with Vista

    I have a 10.4.11 OSX server as an OD Master.
    All my OSX and WinXP clients can authenticate without problem.
    I received a new computer with Windows Vista Ultimate x64 SP1. I was able to make it join my domain without problem but when I try to log in, I get the following error " Procedure number out of range".
    IMHO, I believe the problem is with a default config in Vista x64 more that a problem with my server.
    Has anyone seen this kind of error before?

    I have a 10.4.11 OSX server as an OD Master.
    All my OSX and WinXP clients can authenticate without problem.
    I received a new computer with Windows Vista Ultimate x64 SP1. I was able to make it join my domain without problem but when I try to log in, I get the following error " Procedure number out of range".
    IMHO, I believe the problem is with a default config in Vista x64 more that a problem with my server.
    Has anyone seen this kind of error before?

  • Login problems with facetime and Imessage

    I have IPAD 2 upgraded to IOS 6.0. I am living at Alexandria EGYPT.
    I didn't face any problem with both apps until the 2nd of October 2012. Since then and both apps telling me that Apple ID doesn't match with the entered password. The same password is used for app store and working with no problem, the password have been used even to log in to the support as well as Icloud.
    I have tried the following actions with no result:
    1- Soft reset the IPAD.
    2- Time is set to automatic.
    3- Set the time to USA.
    4- Time set back to auto.
    5- Connect using different WiFi networks.
    I hope I can find a solution, I am using both apps to keep in touch with my family.

    I did a total reset and start the IPAD as a new one before restore...same problem exist
    after restore try again and with the same problem...
    Finally I have created a new apple ID and used it only for facetime and imessages...and it works....
    I can't really understand the problem....
    It is not a problem with communication or IPAD settings because it worked with another apple ID
    it is not a problem with server or account because I am still using my old ID with my macbook
    strange

  • Firefox is having a problem with Linkedin. I get the error, error in parsing value for "backgroun" and for "filter"

    When trying to send messages in linkedin, firefox takes me back to the log in screen without sending the message. On the error console it shows the error; error in parsing value for "background" and error in parsing value for "filter". What is causing this?

    Pages does not support the Apple font used for color emoji, so that behavior is normal.
    With what app are you reading the yahoo mail?  There is really no guarantee than any other email service will show the special Apple font involved.
    You should have no problem putting emoji directly into Mail or Text edit via drag drop from the Character Viewer as shown below.
    You should also be able to upload graphics here easily by clicking on the camera icon.  My email is tom at bluesky dot org.

  • Login problem with E-Recruiting URL, where check host name?

    Hi,
    I've set up a standard Recruiter user and assigned him the standard Recruiter security profile. When I run RCF_GENERATE_URLS, I get this URL:
    http://iwdfvm2160.wdf.sap.corp:51080/sap/bc/bsp/sap/hrrcf_start_int?sap-client=200&sap-language=EN&rcfSpId=0003
    But I get an "internal error" when I login with my User. Our server's host name is iwdfvm2160.gcsap.com, but the program isn't resolving this. This is probably the cause of the error, but how can I get it to pick up our host name?
    We are on E-Recruiting version 6, and it's running on the same box as HCM.
    Thanks, Vlad

    Hello Vlad,
    usually the links generated from the report are correct. Only very rare problem might be in the network structure of your company that the internal dns servers can't resolve the server name or the sap servers are in a not reachable network segmant as you never worked with http access to the servers for other applicatiohns.
    But if you log on the first time with your user and have not been working with the application yet, the more probable reason for this error is the missing candidate for e-recruiting. Without a candidate you won't be able to work with the application.
    Check transaction SLG1. There should be an error "No candidate for User <your username>" or sth. similar.
    If so run report RCF_CREATE_USER to get a candidate. Then you should be able to log on.
    If you already have a candidate and cannot login check SLG1 and SM21 for error messages. If there are any but you don't feel able to solve the logged problem. Just post the message here. I think someone will be able to help.
    Best Regards
    Roman Weise

  • Initial Login Problems with Oracle 10g Express

    Hi,
    Can anybody help, im a student trying to use oracle 10g Express for a project, my problem is the express will not allow me to login as an administrator from the word go. I'm using the right user name and password and every time I login the page just refreshes itself with no other prompts. If i type the wrong credentials i get a message saying so and if using the Hr user name and password it says its locked as it should. Ive used the sql prompt to login and this works so i no the password and user name are correct, but id like to use the GUI if i could. Ive unistalled and reinstalled twice still no joy. Any suggestions?

    Hey again, thanks for your replies, Yes i have been using SYSTEM and SYS with a password of oracle in the GUI interface. When i use the SQL prompt i use the following to login:
    SQL> conn system/oracle
    connected.
    SQL> Show User
    USER is "SYSTEM"
    This says to me that i have logged into the database but still i have no luck in doing the same through the GUI interface using the same credentials.

  • Multiple user login problem with ADF

    Hi All,
    I am using Jdev 11g. I have an ADF application which is running inside JDev enbedded WLS. I implemented "Authentication Only" security into the application and created a few users. If I try to login/logout/re-login with individual user, all of users work perfectly. However, when I have one user already logged in, I open another browser and try to login with another user (or the same user), I always get an "Error 403--Forbidden" error. Basically I have an application which can only work for one user at one time. Does anyone know how to fix this problem so that I can have multiple users logged in at the same time?
    Thank you very much in advance,
    John

    Chris,
    Thank you for your response.
    I am using Firefox version 2.0.0.20. When I add the security component into my ADF application, I just take whatever it has by default without any customization. That includes default login.html and error.html. Here is my experience,
    1) Execute my starting task flow activity inside the JDeveloper. This will invoke a new login page in my default browser Firefox.
    2) Login the application with user "abc" and do something. Keep this session open.
    3) Open another Firefox browser and enter login URL. and then Login the application with user "xyz" (or even "abc"). I got the error page.
    To me, it should be basic web application behavior. I can do things like this in other J2EE application. This one doesn't make sense at all. I am not sure if this is the behavior I would see when I deploy it to a standalone WLS.
    Any ideas?
    Thanks,
    John

  • Has anyone found a solution to the login problem with Lion?

    I upgrade my 27" iMac Quad-core last week to Lion and everything was fine. I shutdown after a software upgrade and now I can't log in. Of course, Apple support is closed. I tried a number of the solutions on this site to no avail. Has anyone found a solution? *** has apple done to my system?

    Don't know if my problem is same as yours..after Lion install, frozen cursor in password field when logging in after starting up, beach ball. Couple of trips to Apple store, a number of phone calls to troubleshoot with Applecare. The last fellow who helped me found a workaround, just can't log in. He said engineers have reports of others with this problem so it's not just my machine but fix would probably come in software update. Been dealing with this since first week of Lion download. Hopefully they'll fix it eventually. I can use macbook now, but don't like not being able to have a screen login via password. No plans to ever again download a new op system on a mac...had no trouble installing win7 on older dell from vista.

  • Login problems with app world. Error ID: 30207

    Hello,
    Every time I try to access my world or download an app in blackberry app world I get the following error message:
    There is an issue with the current session.
    Please login to continue.
    (Error Id: 30702)
    I have tried battery pulls. I have tried restoring earlier backups. I have tried reinstalling app world. I don't know what else to do. I tried calling my service provider but they told me they can't do anything and I should just make a new ID, but I would like to avoid doing that.
    Also, when I go to Device->Blackberry ID; I get the following message "Unable to update your BlackBerry ID account information" I don't know what to do about this problem. Someone please help me.

    I'm getting a message saying app world is not available in my country (canada).

  • Login Problem with opendocument, flash and QaaWS

    We have the following task: We have an application, an excelsius flash file in BOE (webI) and want to give the users a hyperlink to go directly to this application (after entering their user an password) on
    the bo-login page. The application itself calls some web services (QaaWS) residing also in boe.
    Our solution for the hyperlink at moment is to use the openDocument-Command  https://xir2.../businessobjects/enterprise115/desktoplaunch/opendoc/documentXML.jsp?cmdP1=Applikation01wid*&token=&cmd=askPromptView&cmdBlock=all and it works fine for flash-files,
    which don't use web services.
    The Application with web services works fine, if we open them in WebI, t.i. they use the web service without prompting for user credentials again. But
    the two solutions don't work together, t.i. when i ckick on the link to the application, i get the login page of BOE, after entering my user credentials
    the flash file opens and asks for login again.
    How will these two things work together? i can imagine two possibilities:
    Using a different command (or some other parameters) in the hyperlink
    Getting a fix for Xcelius or BOE.
    Any suggestions?
    At moment, we use Xcelsius 4.5 Version 4.2.5.9 and BO XI R2.

    Well, the link didn't solve the problem really, but gave the hint, somehow it should work und the solution is a bit surprising. After omitting the type parameter, it works )), so using the link
    http://<insertservername>:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sDocName=<insert name of the swf>
    the normal login page opens and after entering the user credentials, the flashfile opens without asking user-credentials again.

  • Anyone know about login problems with lion?

    I am having problems when login screen is shown, can't type my password and the colors ball is shown.
    I have to turn off by getting pressed the button more than 3 seconds.
    After that i try again and the same occurs.
    After that i try again and then i can login without problems.
    Can any one help me?
    I have repair permissions but it is the same each time i startup.
    I installed lion in a clean Macbook pro aluminium of 15 inches core i5 2.4 with 8Gb RAM and 750Gb Hard Disk that works perfect in Snow Leopard.
    Thanks you.

    http://www.o2.co.uk/assets/O2HybridNav/Static-files/homepage/iphone/iPhone-Tarif fs.html
    according to that you get "Special roaming rates with ITS"
    http://www.o2.co.uk/services/international/travellingabroad/paymonthlyabroad/pay monthlyprices
    http://www.o2international.co.uk/standardrateanddata.aspx
    £6 per megabyte overseas according to that...

Maybe you are looking for

  • What do Apple Hardware Test Error Codes indicate?

    I recently installed new 1GB memory modules in both slots. When running the Apple Hardware Test, I got the following error code: post/0/2048 S0DIMM0/J20STANDARD Does anybody knows what this means? Up in the Test Results Box, it said Memory passed. Do

  • HDMI disconnected and monitor not recognized [SOLVED]

    Hallo guys, I run a desktop with an ASUS motherboard and an ATI video card. I have two monitors, the first is connected by DVI and is properly workling, the second accepts DVI or VGA, then I used a VGA-HDMI adapter to plug it into the HDMI port of my

  • Taglib not found

    Hi all, hopefully you can help me, cause I'm going to despair. I made a project and everything worked well. Then I opened my .tld-file (placed in WEB-INF folder), deleted some comments and saved it. After that, entering the url in my browser brought

  • Perform SQL search in QueryObject

    Hi, I've parsed a very complicated XML into several QueryObjects - more or less got now 3 "tables". Now i would like to use these three tables and perform a SQL search. something like Select * From tblMenu Where menu_dayId = 2 I have searched and als

  • Is Homebrew compatible with Leopard Server?

    Title pretty much sums it up. I need to install ImageMagick and some other UNIXy tools. Wondering if Homebrew will work with our Leopard Server (10.5.8)? And if so are there any things to be aware of? Server is currently running Apache, MySQL, and a