Fout:e auth user already registered

ik heb een sony ereader PRS-T1, wil een ebook downloaden van de bibliotheek, maar krijg de melding: fout:e auth user already registered.
Weet iemand de oplossing hiervoor?

Please share more information:
1. You authorized sony reader for PC with an adobe id or you authorized without an id ?
2. error "E_AUTH_USER_ALREADY_REGISTERED." you are getting on PC or sony reader device.
You can also create a new adobe id and try to authorize your device.
Thanks

Similar Messages

  • When I try to create an e-print account, it says my e-mail is already registered, but it is not!

    The system returns an answer that my email is already registered, then if I try to get a password reset, it replies "use the e-mail associated with your account"...so I'm locked out
    This question was solved.
    View Solution.

    Hi, have you created any other online accounts with HP e.g.. a Snapfish account? Sometimes you may not even have remembered doing this if it was some time ago and you rarely used the account subsequently. This might explain why the system is saying the email address is already registered. Try it again and when you click the Forgot Password? link and are prompted to enter the email address associated with the account re-enter the same email address the system is saying is already registered. If that is a valid email address you should receive an email from the ePC service with instructions for resetting the password. Check the spam folder in your email account if you don't see any message
    If you can't recall ever creating an online account with HP before, your best option is to create your ePrintCenter account using a different email address to the one you had been trying. The following mail clients have all been tested with the ePrint service:
    Outlook 2003, 2007
    Hotmail, Yahoo! Mail, Gmail
    Apple Mail (iPhone, iPad, Macbook, MacbookPro)
    BlackBerry mail client
    Nokia/Symbian client (Nokia)
    I hope you get your problem sorted and can create your ePrintCenter account soon.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • HT1349 Help, I purchased a used iPad. When I try to register the serial number. It says it's already registered. How do I get this corrected?

    Help, I purchased a used iPad. When I try to register the serial number. It says it's already registered. How do I reregister my iPad under a new user?

    Welcome to the Apple Support Communities
    That's because the old owner still has it as a registrated device on his/her Apple ID. Contact with him/her and ask to remove the registrated device from the Apple ID, so you will be able to register it as your iPad

  • How to verify if user already exists in MySQL database using JSP?

    Hi, I am trying to create a website that allows users to register and then login. All regsitration details are stored in a MySQL table and I am attempting to have a java bean check that a new user does not already exist by looking up the username. However, I cannot get this to work, the bean is allowing anyone through. I believe there may be a problem with my while loop as the bean checks through the stored usernames in the database. Any suggestions appreciated thanks. See my code below:[
    code]package foo;
    import java.sql.*;
    import java.util.*;
    public class FormBean {
         private String firstName;
         private String lastName;
         private String email;
         private String userName;
         private String password1;
         private String password2;
         private Hashtable errors;
         public boolean validate() {
              boolean allOk=true;
              if (firstName.equals("")) {
                   errors.put("firstName","Please enter your first name");
                   firstName="";
                   allOk=false;
              if (lastName.equals("")) {
                   errors.put("lastName","Please enter your last name");
                   lastName="";
                   allOk=false;
              if (email.equals("") || (email.indexOf('@') == -1)) {
                   errors.put("email","Please enter a valid email address");
                   email="";
                   allOk=false;
              if (userName.equals("")) {
                   errors.put("userName","Please enter a username");
                   userName="";
                   allOk=false;
    try {
              String database = "******hidden******";
              Class.forName("com.mysql.jdbc.Driver");
              Connection conn = DriverManager.getConnection(database,"********hidden*******");
              Statement stat = conn.createStatement();
              String query="SELECT u_name FROM users;";
              String DbUserName="";
              ResultSet rst=stat.executeQuery(query);
              while(rst.next()) {
    DbUserName=rst.getString("u_name");
    if (userName.equals(DbUserName)) {
    allOk=false;
    errors.put("userName","User name already exists, please choose another");
    userName="";
    conn.close();
    break;
    } catch (Exception ex) {
    ex.printStackTrace();
              if (password1.equals("") ) {
                   errors.put("password1","Please enter a valid password");
                   password1="";
                   allOk=false;
              if (!password1.equals("") && (password2.equals("") || !password1.equals(password2))) {
                   errors.put("password2","Please confirm your password");
                   password2="";
                   allOk=false;
    return allOk;
         public String getErrorMsg(String s) {
              String errorMsg =(String)errors.get(s.trim());
         return (errorMsg == null) ? "":errorMsg;
         public FormBean() {
         firstName="";
         lastName="";
         email="";
    userName="";
         password1="";
         password2="";
         errors = new Hashtable();
         public String getFirstName() {
              return firstName;
         public String getLastName() {
              return lastName;
         public String getEmail() {
              return email;
         public String getUserName() {
              return userName;
         public String getPassword1() {
              return password1;
         public String getPassword2() {
              return password2;
         public void setFirstName(String fname) {
              firstName =fname;
         public void setLastName(String lname) {
              lastName =lname;
         public void setEmail(String eml) {
              email=eml;
         public void setUserName(String u) {
              userName=u;
         public void setPassword1(String p1) {
              password1=p1;
         public void setPassword2(String p2) {
              password2=p2;
         public void setErrors(String key, String msg) {     
              errors.put(key,msg);

    Hmm, tried that and now have more build errors in the finally section.
    init:
    deps-jar:
    Compiling 1 source file to C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\build\classes
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:57: cannot resolve symbol
    symbol  : variable rst
    location: class foo.FormBean
                if (rst != null) rst.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:57: cannot resolve symbol
    symbol  : variable rst
    location: class foo.FormBean
                if (rst != null) rst.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:58: cannot resolve symbol
    symbol  : variable stat
    location: class foo.FormBean
                if (stat != null) stat.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:58: cannot resolve symbol
    symbol  : variable stat
    location: class foo.FormBean
                if (stat != null) stat.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:59: cannot resolve symbol
    symbol  : variable conn
    location: class foo.FormBean
                if (conn != null)  conn.close();
    C:\resin-2.1.11\doc\examples\basic\WEB-INF\classes\JavaLibrary1\test\FormBean.java:59: cannot resolve symbol
    symbol  : variable conn
    location: class foo.FormBean
                if (con != null)  conn.close();
    6 errors
    BUILD FAILED (total time: 1 second)Just for a quick test, I deleted the sql exception and finally code and replaced it with a regular exception just to see what happened and got no build errors, however when I run the form I am getting an sql exception from the prepared statement, parameter out of range (1 > 0). I tried reading into prepared statements, and although I now understand their basics, I still have no idea why I'm getting this error?

  • Acivation problem: Phone is already registered wit...

    Sir/madam I hav been facing activation problem very badly.. When ever I try to download a song its saying that it is already registered with unlimited subscription.... Please help me out..
    Moderator's note: We provided a topic-related subject to the post so other users can easily identify and answer the concern.

    Hi,
    Welcome to the forum!
    Is your phone purchased second hand? Nokia Music Unlimited (NMU) licenses are activated by signing in with a Nokia Account. If the same Nokia Account is used to activate a second or third device, the NMU licenses are accumulated on that device. It's only the most recently activated device that can be used to access the Nokia Music and download music for free. You will be able to play already downloaded music on previously registered devices.
    Therefore, if the device is bought second hand, and the license is still in use by the first owner, the second owner is not entitled to the Nokia Music license.
    On the other hand, you might have allowed someone else to log in with your Nokia account on your device or someone else logged in and activated the license before you purchased your phone. 
    We suggest that you contact your local support for further assistance. Visit this link for your reference:
    www.nokia.com/support

  • Can I register a new iphone to an apple ID that is already registered to another iphone?

    I managed to disable my iphone so went through the process of restoring it, then it asked me to enter my apple ID that was originally used to set up the phone. However it isn't having any of it and says '[email protected] cannot be used to unlock this iphone' so the phone is now pretty much useless.
    So i'm planning on buying another iphone 4s but I have a few questions.. Can my CURRENT apple ID be used to register my phone (same ID i've used all along just changed the email) that's already registered on my old iphone or will I have to create a new one? I have no option to delete the current owner settings as I never created an icloud account. thanks for any help!

    "am I still able to register another phone to the same ID?"
    Yes.
    ") that I do end up creating a new apple ID "
    This will cause complications.  i do not recommend this.

  • I brought a macbook pro, but i can not use my apple id.because its already register onther account.i couldnt found that person.i want reset that account,can tell me how can i do this?

    i brought a macbook pro, but i can not use my apple id.because its already register onther account.i couldnt found that person.i want reset that account,can tell me how can i do this?

    maxsurovi wrote:
    i brought a macbook pro, but i can not use my apple id.because its already register onther account.i couldnt found that person.i want reset that account,can tell me how can i do this?
    Restore the Mac to Factorty settings to make it Truly Yours.
    Note:
    This should have been done before you took possession...
    Apple What to do before selling or giving away your Mac
    http://support.apple.com/kb/HT5189?viewlocale=en_US&locale=en_US
    Also See Thomas Reed's How to Prepare your Mac for sale

  • I registered my new iPhone 5s to my usual Apple ID, however it isn't showing in my devices when I log in. I tried to register it by adding a new device, but it tells me it's already registered to a different Apple ID. I'm really not sure how to fix this.

    I registered my new iPhone 5s to my usual Apple ID, however it isn't showing in my devices when I log in. I tried to register it by adding a new device, but it tells me it's already registered to a different Apple ID. I'm really not sure how to fix this. I only have the one Apple ID and the phone is brand new, purchased directly from Apple.
    When I check on the phone itself (iCloud and App Store settings) the Apple ID is correct. I'm not sure where else to check.
    Whilst setting up the phone, it prompted me to register, which I did. Then when connecting to my laptop through iTunes it prompted me again so I registered again. I even got a confirmation email to the email address associated with my Apple ID that the registration was successful.
    How can I add my iPhone 5s to the list of devices on the correct Apple ID?
    Thanks in advance for any advice.

    Found the answer to my question after posting (in related discussions)
    https://discussions.apple.com/message/12331666#12331666
    Will call Apple Care as soon as I can.

  • Why can´t I see contacts and calendar events from my iPhone in my mac pro if I already registered it in the cloud?

    Why can´t I see contacts and calendar events already registered in my iPhone, in my Mac Pro ?  I already actualize LION OSX   and selected these items in the adjustments menu of the icloud. I could do it just once, after I installed Lion OSX, but up to the moment it does not updates.

    Assuming you activated iCloud, try going to Settings>iCloud and make sure Calendars and Contacts are set to ON.

  • Error when creating a user - IAM-3010183 : An error occurred while checking if a user already exists with the Common Name generated.

    Error when creating a user - IAM-3010183 : An error occurred while checking if a user already exists with the Common Name generated.

    in OIM 11g R2
    Message was edited by: 2b3c0737-074f-48d0-a760-e24e3ed9a37c

  • SE 710a - Can't turn on Sync - Already registered as a USB device?

    My Sony Ericsson S710a was working beautifully until just recently. I can only suspect that the problem has occurred because of a recent software update (I haven't tried to sync the phone for a couple of months).
    iSync is just plain broke! I've removed every com.apple.bluetooth... com.apple.isync... com.anything.having.to.do.with.anything.related.to.isync.and.bluetooth...
    I've removed all the phones from my library. I've restarted, removed and re-added the device from the bluetooth preference panel. yada yada yah... I can use file exchange, browse, everything but friggin sync!
    I enable the "Turn on device Synchronization" checkbox in iSync and it auto deselects when I try try sync and says "No Devices Activated...". I remove the device and try to re-add it and it says it is "...already registered as a USB device." A USB device? It never has been nor ever will be a flippin' USB device!
    What the heck did Apple do? Somebody throw me a bone here!
    Dual 2.5 G5   Mac OS X (10.4.6)   D-Link DBT-120 Dongle

    I suspect a problem with Sync Services.
    Can you open the Console application (in Applications -> Utilities), then launch iSync and see if something related to iSync or Sync in general appears in Console?

  • How do I download my free copy of mountain lion. The up-to-date program says my serial is already registered.

    I tried to register my name and purchase information with the up-to-date program but the site says my serial number is already registered. So am I already available for the upgrade? Or did some little punk at futureshop rip off my serial number?

    Welcome to Apple Communities
    You can't receive it. Go to the shop you bought it

  • I had no idea that I needed to use a CD to download my Adobe Photoshop Elements 12 onto my MAC and have already registered the product; how can I now download it? I have tried loping on the web and no luck! Please help me!

    I had no idea that I needed to use a CD to download my Adobe Photoshop Elements 12 onto my MAC desktop and have already registered the product; how can I now download it? I have tried looking on the web and no luck. Please help me!

    You don't need a CD to download anything; just download & install the trial from http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements, then activate it with your serial number.

  • Why does 'User not registered for online use' show up when I try to import a cd into itunes. None of the cd info shows up either

    Why does 'User not registered for online use' show up when I try to import a cd into itunes? None of the cd info shows up either.

    Well, the format I upload from the camera is "video clip" or "video for Windows"...sometimes I've converted them to avi format, too. But as I said, it never even lets me get that far...I never get to even select a clip. As soon as I tell the program to "import/clip" it freezes up before I can even go to the folder that the clips are in. It has only begun to do this recently, and I'd never had any problems like this before. Last night I tried it again, and I clicked "open composition", and it froze when I did that too.
    I'm not sure how much more specific I can be about the details of the clips, since I'm positive it has nothing to do with the clips themselves...I'm running Windows XP, though...Home Edition Service Pack 2, Pentium 4 CPU 2.80GHz, with 504 MB of RAM. I have had the automatic updates turned on since I did my last reformat a couple of weeks ago. Could it have something to do with some kind of an update it may have done?

  • HT4061 I am receiving an Activation Error and unable to get into my phone.It's asking me to register my phone in the iPhone Developer program however I'm already registered. How do I move forward?

    I am receiving an Activation Error and unable to get into my phone.It's asking me to register my phone in the iPhone Developer program however I'm already registered. How do I move forward?

    Hi, jsgladden. 
    Here is an article I would recommend when experiencing issues activating a device.  The step referring to recovery mode usually resolves the issue.
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    To retrieve your data, you will need to restore from backup after processing these steps.  Here is the article that walks you through restoring from either your iCloud or iTunes backup.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Cheers,
    Jason H.

Maybe you are looking for

  • ITunes 8 MP3 encoder produces different bitstreams under XP and Vista

    Hello! While organizing a new listening test for MP3 encoders at ~128 kbps VBR, I came across a significant problem in iTunes 8 and maybe older versions as well. I have a 30 seconds sample file of Fatboy Slim's "Kalifornia" from the album "You've Com

  • Firefox 31.0 tries to redownload files already downloaded

    I recently updated Firefox to version 31.0, installed Google Chrome, and updated Java and Adobe Flash player to the latest versions, on my laptop running Win XP Pro SP3. This was all in an attempt to overcome problems I was having using an airline re

  • Acrobat 9 bug with printing problems

    Hello, Acrobat 9 seems to have a bug when printing pdf files. Only the first page is printed. I tried on my Kyocera 2525E and my HP 2600N. Does anyone know a solution ?

  • Tx SPROXY in Backend doesn't show the Service interfaces

    Hi all, I have a problem w/ tx SPROXY in my backend. When I start the transaction, the system seems to be connected to the ESR, but I do not get any list of service interfaces to generate my proxy. I have gone through all the checks available through

  • Elements 10 photo mail

    From organizer, I select photo, then select "Share", then select "Photo Mail", then select "next". When I select next, I get the message that "Organizer has stopped working" and a button to close program.  I can't get past this point. I have Windows