Error 213:5 code. Please help asap

I keep getting an Error 213:5 code for my mac which is awesome. Please help.

Gbsterns the file permissions for the SLStore folder under your current user account have become compromised.  Please see Configuration error 16 when you start a Creative Cloud (CC) or Creative Suite (CS) application - http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html for additional information.
If you continue to face difficulties then can you please post which Adobe software title you are trying to install?  Also the operating system would be beneficial.  Finally to avoid repeats if you can also list any additional steps you have performed to resolve your current difficulties it would be appreciated.
Finally you may also want to review Activation & deactivation help - http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html which discusses Activation errors such as 213:5.

Similar Messages

  • Error 213.5 Please help me get DW working again. Thanks CaptJim4685

    I have a Mac OS 10.10 used the Migration Assistant to move all files from old computer to new computer yesterday. Now can not use my Dreamweaver CS 5.5 program I have my original install disk. Tried that. get error 213.5 Please help me get DW working again. Thanks CaptJim4685

    Hi Nancy O.
    Thing is, I was using it on my old MacBookPro, also w/ yosemite. No problem. So I think it should run on the new one with the same OS.
    I did figure out how to find the CC cleaner log file. It had a lot of stuff in it, but did not indicate any kind of failures. I did not see the word “failure in the log file at all.
    After your suggestions, I went thru all the steps again - twice - very carefully emptying the trash between steps and restarting. Got the same error message at the end.
    Now, I still have 5.5 working on the old computer. That was my first and only install. My notes suggest  I installed it in 2011.
    If I knew for sure that if I deactivated it (if I knew how to do that) on the old computer, and uninstalled it, AND I could then count on the install working on my new computer, I would do it, but I am afraid to do that for fear that then I wouldn’t have it to use at all.
    I had expected it to transfer over, and then I would clean the old computer, as my son wants it for his wife, They have no use for DW.
    I also had trouble w/ MS Office, but they allowed me to call them and get a new install code. Now that Works fine.
    I wish Adobe were as accommodating. I have my original install disk & code. I never expected any of this trouble.
    I hope you can come up with a new plan. I really can’t afford to buy a new copy, especially when I know that this one should work, if it would just get rid of this blocking action.
    I only use it for editing my own personal family website: http:www.americanfenner.com.  I am not a webmaster/webwriter/ computer programmer or anything like that. Just an old guy doing personal stuff on my mac.
    Jim Fenner
    [email protected]

  • Logical error in code, please help, thanks alot.

    I have this file Socks.java which reads in a file containing information about a sock drawer. The file is of the format:
    11
    red athletic
    green casual
    blue athletic
    blue athletic
    red athletic
    so when the program runs, it is supposed to output the socks that are pairs: so it would output
    1 pair red athletic
    1 pair blue athletic
    my code compiles and runs fine and i am testing it with println statements, but I am not getting the desired ouput. Can someone look over it and see if they spot what is wrong. Right now in the code I am seeing what the value of socks[i] and socks[j] is by printing them out as you will notice. If anyone can help, I appreciate it. Thanks so much for all your wonderful help
    Here is the code:
    import java.io.*;
    public class Socks {
    public static void main(String args[])
    try
    String socks[] = new String[1000];
    int pairs[] = new int[500];
    int numOfsocks;
    int i;
    int j;     
    FileReader fr = new FileReader("test.txt");
    BufferedReader inFile = new BufferedReader(fr);
    numOfsocks = Integer.parseInt(inFile.readLine());
    int possiblePairs = numOfsocks/2;
    //System.out.println(numOfsocks);
    //System.out.println(possiblePairs);
    for(i = 0; i < numOfsocks; i++)
    socks[i] = inFile.readLine();
    //for(i = 0; i < numOfsocks; i++)
    //System.out.println(socks);
    for(i = 0; i <= possiblePairs;i++)
    for(j = i; j <= possiblePairs;j++)
    System.out.println(socks[i]);
    System.out.println(socks[j]);
    //if(pairs[i] >= 2)
    //System.out.println(pairs[i]/2 + " pairs" + socks[i]);
    inFile.close();     
    catch(IOException e){}
              System.out.println("File Not Found or no File Specified");

    Try the following quickly revised version of your code.
    import java.io.*;
    public class Socks {
    public static void main(String args[])
      try
        String socks[] = new String[1000];
        int pairs[] = new int[500];
        int numOfsocks;
        int i;
        int j;
        FileReader fr = new FileReader("test.txt");
        BufferedReader inFile = new BufferedReader(fr);
        numOfsocks = Integer.parseInt(inFile.readLine());
        for(i = 0; i < numOfsocks; i++)
          socks[i] = inFile.readLine();
        for(i = 0; i < numOfsocks; i++)
          if (socks[i] != null)
            pairs[i]++;
            for(j = i + 1; j < numOfsocks; j++)
                if (socks.equals(socks[j]))
    pairs[i]++;
    socks[j] = null;
    System.out.println(pairs[i]/2 + " pairs " + socks[i]);
    inFile.close();
    catch(IOException e){
    e.printStackTrace();

  • Errors in code, please help

    I am trying to generate random motion in flash and can't seem
    to make it work.
    Any help will be much appreciated
    newpos = function () {
    ranx = Math.random ()*250)
    rany = Math.random ()*250)
    this.onEnterFrame = function() {
    newpos ()
    this._x = ranx;
    this._y = rany;
    acceleration = 10
    newpos = function () {
    ranx = Math.round((Math.random ()*250));
    rany = Math.round ((Math.random ()*250));
    newpos();
    this.onEnterFrame = function() {
    this._x += ((ranx-this._x)/ acceleration);
    this._y += ((rany-this._y)/ acceleration);
    acceleration = 10
    newpos = function () {
    ranx = Math.round((Math.random ()*250));
    rany = Math.round ((Math.random ()*250));
    newpos();
    this.onEnterFrame = function() {
    this._x += ((ranx-this._x)/acceleration);
    this._y += ((rany-this._y)/acceleration);
    if (Math.round(this._x) == ranx || Math.round(this._y) ==
    rany) {
    newpos();

    Try this:
    newpos = function () {
    acceleration = 10;
    ranx = Math.round((Math.random()*250));
    rany = Math.round((Math.random()*250));
    this._x += ((ranx-this._x)/acceleration);
    this._y += ((rany-this._y)/acceleration);
    this.onEnterFrame = function() {
    newpos();
    cheers,
    blemmo

  • Hello, i have a problem with this number code  213:19,  please help me!

    Hello, i have a problem with this number code  213:19,  please help me!

    dan
    What version of Premiere Elements and on what computer operating system is it running?
    If you are using Premiere Elements 13, have you updated it to 13.1 yet? If not, please do so using an opened project's Help Menu/Updates.
    What type of user account are you using....local administrator or domain type?
    Please review the following Adobe document on the 213.19 issue. Have you read that already?
    Error 213:19 | Problem has occurred with the licensing of this product
    ATR

  • Error FRM-40508 - Please help urgent !!!

    Hi All,
    I'm trying to design a form (Forms 6i) having 3 data blocks. Values from 3 different table are returned to the related fields in the blocks. At the bottom of form, I've created a "push-button" to take these values and add into 4th table.
    I gete rror FRM-40508. I trapped error and found that its actually trying to insert into table of "First Data Block", which it should not. My Insert statement in the Trigger of push-button (when-button-pressed) doesn't refer to that table.
    However, I found that, in designer mode, if I click on the push-button I see the first block's name in the Block Name space (upper right hand corner). I don't understand this but feel that that is the problem.
    Please help ASAP.
    Thanks
    Prashant
    null

    Here is the fun.
    I created one more data block manually. Creted push-button and following insert stmt in "When-button-pushed" trigger. (real table names changed to dummy)
    ===========================================
    declare
    seqno number:=0;
    begin
    select DUMMY_SEQ.nextval into seqno from dual;
    insert into LOG_dummy(
    ID, GROUP_ID, ANSWER_ID, QUESTION_ID, ANSWER_TEXT
    values
    seqno,
    :sur.survey_id,
    :sur_ans.answer_id,
    :sur_quest.question_id,
    :sur_ans.answer_desc
    commit;
    clear_form(No_Validate);
    END;
    =============================================
    The error pops up because of "commit". When I pressed shift-F1 it shows that it can't insert into one of the data blocks. The insert stmt shown there is nowhere in my code of trigger. If I remove "Commit" from above, I Don't get error but record doesn't get inserted either in the table mentioned above :-(
    I don't understand what's going on... If anybody in US is willing to help, I can call and talk on phone. I've to finish it this week, any case and I'm stuck on this :-(
    ~ Prashant
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by ahmed gaber ([email protected]):
    are the 3 blocks related with 3 tables ,
    and you'r trying to insert the values in another table ?
    if yes : so what is the code you wrote in the trigger? to know the answer.
    and try to check if there is any not-null columns required ok//<HR></BLOCKQUOTE>
    null

  • My dear during i update my iphone 4s 16 giga  to ios 7 itis not responde and error 4005  wasfound please help me

    dear sir during updating my iphone 4s 16 giga error 4005 found please help me

    http://lmgtfy.com/?q=iPhone+error+code+4005

  • When I try to download songs from itunes it says I have to answer my security questions(which i made a year ago) I can't remember them, and I can't get on my email to reset the questions.. please help ASAP!

    I recieved an ipod 5 for a early christmas present a day ago, I already owned an ipod 4 so i just used my info from that ipod as a back up for my 5g. but now when i try to download music from itunes it says i must use my security questions (which i made over a year ago) I can't remember the answers and i can't get on the email that it sends the reset info to. i don't know what to do and its really frustrating. please help ASAP!

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    Whichever method you use, you probably won't get a response until the 26th. If you absolutely must make a purchase before then, create a new Apple ID; you won't be able to transfer previous purchases or iTunes Store credit to it.
    (95471)

  • My 2nd Gen ipod touch will not sync music i have bought on it to my computer... Please help asap!

    Whenever i plug it into itunes, it says Syncing, but when i click my purchased tab, only 218 of my 276 songs sync with the computer. I need to update my ipod soon, but before i can do this i have to make sure all of the songs are synced. All of them were purchased on itunes, using my touch.
    Please help ASAP! if there is any more information you need to help me with this, just email me or comment. thanks!
    [email protected]

    It sounds like you want to transfer iTunes purchases to your computer,  Try this:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer

  • My office just bought me an iMac and I absolutely need to hook up a second monitor but there is no DVI connection on it, just a Thunderbolt. What do I do? Please help ASAP!!!

    My office just bought me an iMac and I absolutely need to hook up a second monitor but there is no DVI connection on it, just a Thunderbolt. What do I do? Please help ASAP!!! The imac is a 21.5" and they also already bought an HD 21.5 ASUS LCD monitor to attach to it. I'm really trying to make this setup work but this is becoming a nightmare. Any suggestions? I looked up  different VGA adapters but the only options for this would be a usb-vga connection which doesn't work on macs. Can anyone tell me if this new Thunderbolt connection will work in some way? Thanks

    Using the Thunderbolt port attach a Mini-display to DVI so long as the Asus display is equipped and capable, otherwise Mini-display to VGA will also work. The Thunderbolt port is ahead devices  which are not yet available to take advantage of the increased capacity in speed. Until the devices and connection cables are available, just use the port as a Mini-display port.

  • TS3694 How can I fix this type of error in iphone 4?"The iphone could not be restored. An unknown error occurred (3194) "please help me.

    Hi everybody !
    AT&T company is unlocked (factory)my iphone4 before 3 days ago so i want to restore to unlock iphone 4 with itunes but it is not restore.
    How can I fix this type of error in iphone 4?- "The iphone could not be restored. An unknown error occurred (3194) "
    please help me in nepali language(if posible) or english. thank you.

    http://support.apple.com/kb/TS3694#error3194
    This means that either your firewall/antivirus is blocking access to Apple's servers, or you have used your computer to jailbreak an iDevice in the past. The link above tells you how to resolve this issue.

  • I have a compilation problem with my mini iPod that is preventing my volume from increasing. I can't get the compilation code, please help me

    MY mini iPod version number1.1.3 pc robs iPod ,4GB is having volume limit problem ,the volume is very low compare to how it was playing before I mistakenly touch the combination code. I have forgotten the combination code, please help me out.. I have tried to reset settings but it wouldn't work.

    i can get the combination code please

  • TS2865 when i export movie from final cut pro to quicktime , something happened. it says error quicktime -50. please help.

    when i export movie from final cut pro to quicktime , something happened. it says error quicktime -50. please help.
    i need to submit this movie for uni project tomorrow.
    any help/advice will help . thanks.

    According to Crash Analyzer
    -50 (QuickTime)
    This error occurs when there is corrupt or invalid media in your timeline. Check that the codec used by the file is recommended for use in your editing application.
    good luck

  • TS3694 hi, I was trying to update my iPhone 3gS but when I turn it on again iTunes send me a message that says error 3194 occurs, please help me!!

    hi, I was trying to update my iPhone 3gS but when I turn it on again iTunes send me a message that says error 3194 occurs, please help me!!

    If the screen shows a plug going to itunes, then you have no choice,  It's in recovery mode.  You'll be given the chance to restore from a backup either from itunes or icloud.
    I assume when you got the message to update (was this for the ios or update some apps?), that was before the device when dead.  At any rate, doing a restore does not change the ios.

  • HT201413 Whenever i try to sync my ipod a message keeps coming up saying "1 or more items could not be synced", apparently its error -69. Please help, i've tried rebooting my laptop, installing the latest itunes and turning off the wifi but nothing seems

    Whenever i try to sync my ipod a message keeps coming up saying "1 or more items could not be synced", apparently its error -69. Please help, i've tried rebooting my laptop, installing the latest itunes and turning off the wifi but nothing seems to work.

    Are you using security software on your PC? If yes, try to disable the software or check the settings. More info here: http://support.apple.com/kb/TS3125

  • My ipad mini 2 is not turning on. I tried to reset with the power/home buttons but it didnt work. I tried to restore it in DFU mode but it didnt work, i get error 4004. Please help me!

    My ipad mini 2 is not turning on. I tried to reset with the power/home buttons but it didnt work. I tried to restore it in DFU mode but it didnt work, i get error 4004. Please help me!

    I also tried the ol' whacking 3 times trick...Didn't work to my surprise

Maybe you are looking for

  • Lightroom 2+ web templates

    I want to update one of my websites using Lightroom 2+ as a front end. I'm looking for a template system that will allow me to create multiple LR galleries accessible from a home page that also allows links to other pages and URLs. I know that SlideS

  • Can't read cift card numbers

    the numbers are illegible.  How can it be redeemed?

  • Exporting CS6 Premiere Pro Sequence in AE

    I'm trying to export a CS6 Premiere Pro sequence through CS6 After Effects and some of the content that is present on my timeline is coming up with colour bars or just black when I'm trying to export from AE..... how can this be resolved?

  • New Itunes Problem 7.7

    I installed the new itunes update 7.7 and now when I plug in my IPOD it freezes and I have to unplug the IPOD and reset it. 7.7 works fine until you plug in your IPOD does anybody know why???

  • Data loading doubts

    Hi Gurus Just trying to join the pieces to understand the system more accurately.Would you pl help m to clear my following doubts? 1.what is RSRV testing and where can we use it? How to do it? 2.From where an we schedule the process chain ? Can I hav