Download "error: error loading file...". "and the process will stop

I get this error when downloading a third party host. I downloaded site before with no problems. I removed one line and now I get this message. I tried to download three times and it stops exactly at the same place every time.

site-error-message.jpg

An error message comes on every page when you access the current site: http://www.laidug.com

After you click OK, you can access the site, but some pages are crooked.

The image referenced in the error message is not new and has been on the site previously without problems. I looked and nothing seems wrong.

I contacted the company and they said that the error messages are part of the site and not on their end.

When I go to 'site Preview in browser' Muse, it's okay.

No response here, I contacted Adobe support via chat and after an hour or two, the problem has been resolved. I don't know what the problem was, but he had something to do with the linking of files. The support guy had me everything first to download the site in British Colombia. I did and it was very good. Then he tried again to my hosting company and he failed. Then he separated all the assets by renaming several directories in which they were recorded. Then he transferred the site to my hosting company and it was fine. Subsequently, I renamed directories their original name. Then, I made a minor change to see if I could download it without problems and I was able to.

Tags: Adobe Muse

Similar Questions

  • An unexpected error has occurred and the application will have to stop

    Hyperion 11.1.2.2, new environment.

    When you try to configure the EPMA database, Configurator crashes with the error "an unexpected error has occurred and the application will have to stop."

    Customer has configured the database of EPMA with success during the first time.

    Their DBA deleted database EPMA and re-created the database with the same name. Now, they are trying to configure EPMA data base and the Configurator crashes with the error mentioned.

    I had the same error after applying a few patches EPMA (.301 ou.302)
    Here's what Oracle provided support. This solved the problem for me to use the older, bigger jar file

    ----------------------------------------------------------------------------------------------------------------------------------
    Fix Oracle can be broken by the jar file that located awbconfig.jar
    d:\oracle\Middleware\EPMSystem11R1\products\Foundation\BPMA\Common

    There are missing classes in the patched version, latest of this pot

    To correct the configuration tool, you can make a copy of that existing pot and replace the old version uncorrected. To find the old version research
    \oracle\Middleware\EPMSystem11R1\.patch_storage\ to AwbConfig.jar

    To confirm this, look at the size of the current pot and the oldest pot - the news is 158 k and the former was 317 k - obviously a new miss some classes.

  • Error loading file to the FTP host

    I am trying to download my site on the FTP host and I get the following error code:

    Error loading file "Teak bench 4." Click on resume to try again. If the problem persists, try again later. [FTP response timeout].

    I clicked on 'Retry' several times and can't make it work. If it works well for a single file, it will get stuck on another. I've never had problem download my site on the FTP host before. Don't know what to try?

    Thank you!

    Hello

    Few days back, I had the opportunity to work with a few users of Muse with the similar problem after you perform the troubleshooting steps in the post above, that we decided to contact the host.

    Later we experienced as host IP of the user of Muse and they managed to unlock and muse began to connect to the FTP host.

    In another scenario host suggests Muse to add user : 21 to the FTP address and then Muse was able to connect.

    For example ftp.domain.com:21

    Please, try the suggestions above and let me know if it works.

    Thank you

    Ankush

  • What is the relationship between the source code (LKS) file and the process file (L4P)?

    I know that Lookout produces a file of source code with an LKS extension when you save a file to process.  Can someone explain the relationship between the two files, especially while the (L4P) process is running?

    1. Is this just a backup file can be recompiled in a process file?
    2. A file corrupt LKS cause strange problems with operation process file?

    I currently have a very strange intermittent behavior with a process file run.  I first thought that the problem was associated with my Fieldpoint and/or their configuration modules.  Since then, I found that my process file has a file corrupt LKS.  I repaired and recompiled my LKS file to a new file to process.  I still don't know if I have solved the problem or not.  So, the problem is intermittent, I did that about 20-30 SECONDS to resolve the problems there before he goes.  Then he can not show up again for another 2-3 days.

    The .lks file is just the source code of your process. It can be opened by a different version of lookout, but does not have the .l4p file.

    The .lks file is not be used while a process is running. Lookout does not read the file more after his execution. So it should not affect the running process.

    What kind of problem, is it?

  • Error PLS-00103 and the program has stopped responding

    Hey all, I am currently practical with pl/sql, I am a beginner trying to pl/sql self-training, I use the HR schema that accompanies the express edition of oracle 10g for practice, here is my code:

    -- -------------------------------------------------------------------------------------------
    FUNCTION to CREATE or REPLACE checkIfSalaryExceedMin (currentJobID in NUMBER, currentProposedSalary number)
    RETURN BOOLEAN IS

    minSalary NUMBER: = 0;

    Begin

    Select j.min_salary FROM minSalary of JOB j where j.job_id = currentJobID;

    RETURN currentProposedSalary > minSalary;

    End checkIfSalaryExceedMin;
    -- -------------------------------------------------------------------------------------------
    -- -------------------------------------------------------------------------------------------
    FUNCTION to CREATE or REPLACE checkForJobChange (currentEmpID in NUMBER, currentEmpStartDate IN DATE)
    RETURN BOOLEAN IS

    CURSOR emp_date_id_list1 IS (Select j1.start_date, e1.employee_id JOB_HISTORY j1 EMPLOYEES JOIN e1 ON j1.employee_id = e1.employee_id);

    checkVal NUMBER: = 0;

    Begin

    For em1 IN LOOP emp_date_id_list1

    IF (currentEmpID = em1.employee_id AND currentEmpStartDate! = em1.start_date) THEN
    checkVal: = 1;
    END IF;

    END LOOP;

    IF checkVal = 1 THEN
    RETURN TRUE;
    ELSIF checkVal = 0 THEN
    RETURN FALSE;
    END IF;

    End checkForJobChange;
    -- -------------------------------------------------------------------------------------------
    -- ===================MAIN====================
    Declare

    CURSOR emp_date_id_list IS (Select j.start_date, e.employee_id, e.job_id, e.salary JOB_HISTORY e j EMPLOYEES JOIN ON j.employee_id = e.employee_id);

    Begin

    For em IN emp_date_id_list LOOP

    IF (em.start_date < TO_DATE ('1990-01-01', 'YYYY-MM-DD')) THEN

    IF (checkForJobChange (em.employee_id, em.start_date)) THEN
    IF checkIfSalaryExceedMin (em.job_id, (e.salary + (e.salary*.20))) THEN
    DBMS_OUTPUT. Put_line ('you can increase his salary');
    END IF;
    END IF;

    END IF;

    END LOOP;

    End;

    -- ================END==MAIN==================

    What it does is check if the employee worked prior to January 1, 1990, if he had had a change of job and if it fulfills the two conditions, the program checks if its proposed new salary will be larger than his salary manager current, if not he can get a pay raise.

    So my problem is I got an error PLS-00103 earlier, after some tweaking my program now is insensitive, what am I doing wrong? :(

    Help, please. Thank you.

    checkIfSalaryExceedMin (currentJobID in NUMBER

    Must be:

    checkIfSalaryExceedMin (currentJobID in VARCHAR2

    or:

    checkIfSalaryExceedMin (currentJobID IN employees.job_id%type

    Since then job_id is of data type VARCHAR2 and not a NUMBER.

    Also

    IF checkIfSalaryExceedMin (em.job_id, (e.salary + (e.salary*.20))) THEN

    must be:

    IF checkIfSalaryExceedMin (em.job_id, (em.salary + (em.salary*.20))) THEN

    After some tweaking my program does not

    I've been juggling as well and are unaware of any 'unresponsiveness':

    SQL> declare
      2    cursor emp_date_id_list
      3    is
      4    select j.start_date
      5    ,      e.employee_id
      6    ,      e.job_id
      7    ,      e.salary
      8    from job_history j
      9    join employees e
     10    on j.employee_id = e.employee_id;
     11  begin
     12    for em in emp_date_id_list
     13    loop
     14      if (em.start_date < to_date('1990-01-01', 'YYYY-MM-DD'))
     15      then
     16        if (checkforjobchange(em.employee_id, em.start_date))
     17        then
     18          if checkifsalaryexceedmin(em.job_id, (e.salary + (e.salary * .20)))
     19          then
     20            dbms_output.put_line('You can raise his salary');
     21          end if;
     22        end if;
     23      end if;
     24    end loop;
     25  end;
     26  /
            if checkifsalaryexceedmin(em.job_id, (e.salary + (e.salary * .20)))
                                                  *
    ERROR at line 18:
    ORA-06550: line 18, column 47:
    PLS-00201: identifier 'E.SALARY' must be declared
    ORA-06550: line 18, column 9:
    PL/SQL: Statement ignored
    
    SQL> declare
      2    cursor emp_date_id_list
      3    is
      4    select j.start_date
      5    ,      e.employee_id
      6    ,      e.job_id
      7    ,      e.salary
      8    from job_history j
      9    join employees e
     10    on j.employee_id = e.employee_id;
     11  begin
     12    for em in emp_date_id_list
     13    loop
     14      if (em.start_date < to_date('1990-01-01', 'YYYY-MM-DD'))
     15      then
     16        if (checkforjobchange(em.employee_id, em.start_date))
     17        then
     18          if checkifsalaryexceedmin(em.job_id, (em.salary + (em.salary * .20)))
     19          then
     20            dbms_output.put_line('You can raise his salary');
     21          end if;
     22        end if;
     23      end if;
     24    end loop;
     25  end;
     26  /
    declare
    *
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at line 18
    
    SQL> create or replace function checkifsalaryexceedmin(currentjobid          in employees.job_id%typ
    e
      2                                                   ,currentproposedsalary in number)
      3   return boolean is
      4
      5   minsalary number := 0;
      6
      7  begin
      8
      9   select j.min_salary
     10     into minsalary
     11     from jobs j
     12    where j.job_id = currentjobid;
     13
     14   return currentproposedsalary > minsalary;
     15
     16  end checkifsalaryexceedmin;
     17  /
    
    Function created.
    
    SQL> declare
      2    cursor emp_date_id_list
      3    is
      4    select j.start_date
      5    ,      e.employee_id
      6    ,      e.job_id
      7    ,      e.salary
      8    from job_history j
      9    join employees e
     10    on j.employee_id = e.employee_id;
     11  begin
     12    for em in emp_date_id_list
     13    loop
     14      if (em.start_date < to_date('1990-01-01', 'YYYY-MM-DD'))
     15      then
     16        if (checkforjobchange(em.employee_id, em.start_date))
     17        then
     18          if checkifsalaryexceedmin(em.job_id, (em.salary + (em.salary * .20)))
     19          then
     20            dbms_output.put_line('You can raise his salary');
     21          end if;
     22        end if;
     23      end if;
     24    end loop;
     25  end;
     26  /
    You can raise his salary
    You can raise his salary
    
    PL/SQL procedure successfully completed.
    
  • I'm trying to download 11 items that I already have on a new computor windows 8.1 after downloadind the first file and the extraction I get the error message when I try to download the second file: the party reach the components file is missing

    I'm trying to download 11 items that I already have on a new computor windows 8.1 after downloadind the first file and the extraction I get the error message when I try to download the second file: the party reach the components file is missing

    Make sure you have both. (1 of 2) file .7z and .exe file (2 of 2) under the same folder files

    Then double-click on the .exe file (2 of 2) it will start the installation process.

  • I've set up a website in Muse. Any excerpt from fine to preview in a browser. When I download the file to make it live I am getting this error some files on the server may be missing or incorrect. Clear the cache of the browser, and then try again. If the

    I've set up a website in Muse. Any excerpt from fine to preview in a browser. When I download the file to make it live I am getting this error some files on the server may be missing or incorrect. Clear the cache of the browser, and then try again. If the problem persists, please contact Web site author. Art seems to be fine and the host site says it's probably coding error. What should I do?

    Hello

    Have you tried a few steps in the following article

    "Some files on the server may be missing or incorrect" Warning Message

    See if that helps. Let me know if you have any question.

  • execution of DLLs. Error loading cbbxw.dll. the specified module could not be found. -what it means and how do I get rid of him?

    execution of DLLs. Error loading cbbxw.dll. the specified module could not be found. -what it means and how do I get rid of him?

    You could have, or still are, infected by malware; and it could also be a starting top left him entry.

    Malware scan:

    http://www.Malwarebytes.org/MBAM.php

    Malwarebytes is as its name suggests, a Malware Remover!

    Download the free Version from the link above.

    Download, install, upgrade and scan once a fortnight...

     

    How to use Malwarebytes once it is installed and updated:

    1. open Malwarebytes > click the update tab at the top > get the latest updates.

    2. on the Scanner tab, make sure that thePerform full scan option is selected and then click on theScan button to start scanning your computer

    3 MBAM will now start to scan your computer for malware. This process can take some time.

    4. when the scan is complete, a message box will appear

    5. you must click on the OK button to close the message box and continue the process of Malwareremoval.

    6. you will now be at the main scanner screen. At this point, you must click on the button toview the result .

    7. a screen showing all of the malware displayed the program that is

    8. you must now click remove selection button to remove all the listed malware. MBAM will now delete all of the files and registry keys and add them to the programs quarantine. When you remove files, MBAM may require a restart in order to eliminate some of them. If it displays a message stating that it needs to restart, please let him do. Once your computer has rebooted, and logged in, please continue with the remaining steps.

    9. when MBAM has finished remove the malware, it will open the scan log and display it in Notepad. See the log as desired, and then close the Notepad window.

    10. you can now exit the MBAM program.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the error persists after scanning, use the program to out startup:

    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx

    This utility, which has a knowledge of auto-starting locations of any startup monitor, shows you what programs configured to run at system startup or login and that the entries in the order of processing windows. These programs include those in your startup folder, Run, RunOnce, and other registry keys. You can configureAutoruns to show other locations, including Explorer shell, toolbar extensions, helper objects to the browser, Winlogon notifications, auto and many start-up services even more. Autoruns goes way beyond the MSConfig utility bundled with Windows Me and XP.

    See you soon.

    Mick Murphy - Microsoft partner

  • I'm trying to download the updates to my computer, but can't. I get the error code 646 and the download fails. I tried to download the update several times, but get the same answer. What is the problem?

    Ideas: I'm trying to download the updates to my computer, but can't. I get the error code 646 and the download fails. I tried to download the update several times, but get the same answer. What is the problem?

    • Pragrams you have problems with
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Hello

    Try this 1st to see if it helps, and it should:

    Description of the Patch registration cleanup tool
    http://support.Microsoft.com/kb/976220/

    ------------------------------------------------------

    If necessary :

    Try this - Panel - Windows Updates - on every update that will not be installed - click on the important updates
    or the update itself - double click a view more information (or click top then discovers on the right)

    Those who will take you to a page where you can download the update.

    Or go here and the KBxxxxxx number to download it.

    Download Center - mount the KBxxxxxx.

    Microsoft Download Center
    http://www.Microsoft.com/downloads/en/default.aspx

    Download - SAVE - go to where you put them - click on - RUN AS ADMIN

    Then you can right click on the update in the updates Windows and HIDE.

    If you get an error Installer install this version:

    Windows install 4.5 Redistributable
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en

    ----------------------------------------------------

    Then run this:

    How to reset the Windows Update components? -a Mr Fixit
    http://support.Microsoft.com/kb/971058

    Description of the system for Windows Vista, Windows Server 2008, update tool and
    for Windows 7
    http://support.Microsoft.com/kb/947821

    ------------------------------------------------------------
    Because these are all Office updates you might get more information if necessary in the Agency of those groups that
    may have experienced the same problem.

    Office newsgroups
    http://www.Microsoft.com/Office/Community/en-us/FlyoutOverview.mspx

    Microsoft.public.office.misc discussions
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Office.misc&cat=en_us_01cb749f-c998-4762-8099-df71793c11c7&lang=en&CR=us

    ------------------------------------------------------------

    If necessary you can incident free get reports however the above should take care of it for you.

    Windows updates - free Incident report

    Go here and click on-> Windows Update fails while searching, downloading or installation of updates
    http://support.Microsoft.com/GP/wusupport#tab3

    The security updates, you can get free support Incident report
    http://www.Microsoft.com/protect/resources/support.aspx

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • WMM edition error message - ' cannot publish to the specified location. Check the source files and the location is still available and that there is enough disk space. »

    I made a movie of 30 minutes or more in WMM, some of the videos that I imported I had to convert to wmv, to import into WMM. Once I went to publish the movie, after the publication of about 1%, an error message pops up saying something like "cannot publish to the specified location. Check the source files and the location is still available and that there is enough disk space. "I have 8 GB of free space on my hard drive and I tried to burn a cd on a dvd, and save to memory stick, none of them have worked, the same message is displayed even if they have sufficient space available. There is no red x in the videos or photos that I imported, so no files are missing. Some files have been moved when they were converted, but the movie plays well in WMM.  I want to export to is in my documents is therefore always available. I spent hours trying to figure this out and I I still don't know what the problem with it! Help! I've also spent a lot of time to their conversion to avi to see if this helped and the same message appeared again.

    What is the format of your source of debtor files and how did you convert
    TO WMV?

    I can only imagine that you are using Vista Movie Maker 6?

    It's not really about the location... error messages can be very cryptic...
    The error that you mentioned usually appears when the source files in the project
    are damaged or are not fully compatible with Movie Maker and made
    in a movie file cannot continue. In addition, large complex projects can cause
    in this issue.

    In some cases, it may be possible to record in DV - AVI, during registration as
    . WMV fails: the following article explains how to save... Publish it in film...
    6 machine and the graphic link shows where the option:

    Windows Vista - publish a movie in Windows Movie Maker
    http://Windows.Microsoft.com/en-us/Windows-Vista/publish-a-movie-in-Windows-Movie-Maker

    The following chart shows where the DV - AVI option.
    http://www.Papajohn.org/IMGs/Vista-PublishToComputerChoices.jpg

    If the recording as long as DV - AVI fails... see the following articles:

    Movie Maker - problem resolution - "cannot record a movie.
    http://www.Papajohn.org/MovieMaker-issues-CantSaveMovie.html

    Windows Movie Maker error
    Cannot complete the Save Movie Wizard
    http://moviemakererror.blogspot.com/

    Several formats are apparently compatible with
    Movie Maker, but the most reliable choices are:

    Photos - bmp
    Video - wmv
    Audio - wav, wma, wmv

    Sometimes, it can help if you are going to... Tools / Options / Compatibility tab...
    and uncheck all filters.

  • a fatal error has occurred and the execution of the application took end. Adobe Captivate one attempts to save all of your work in the respective folders of the project as files cpbackup

    Hello

    We have Adobe Captivate installed 8.0.0.145 Windows 7 x 64 v.

    Activate Adobe crashes with the following error: a fatal error has occurred and the execution of the application took end. Adobe Captivate one attempts to save all of your work in the respective folders of the project as cpbackup files.

    I uninstalled Adobe Acptivate, rebooted the PC and reinstalled activate Adobe - unresolved error.

    I have cleared the cache under settings, clear the cache - unresolved error.

    Please notify.

    Kind regards

    George


    The update should be available to help, updated. It is available since October 2014.

    Being administrator is not the same thing as Captivate running as an administrator that must be put in place in the menu right click on the shortcut that launches Captivate. You have restricted functionality if this is not done.

    I told you how to clear preferences, with the file Utils. First close Captivate, when you restart CP will create a new preferences folder.

    If you have a lot of customization that you will lose when the erasing of the preferences. To keep them, have a look at my blog:

    Captivate 8.0.1 Install? Keep your customization! -Captivate Blog

    Layouts folder is located in the public Documents. It is a copy of the original folder in the gallery. Same thing with the Interactions.

  • error message saying "error loading wingsw32.rom the specific module was not found" whenever I boot my system

    wingsw32. ROM

    I get an error saying "error loading wingsw32.rom the specific module is not found" whenever I boot my system.

    Can someone help me in this.

    Thanks in advance!

    ·                                You could have, or still are, infected by malware; and it could also be a starting top left him entry.

    Malware scan:

    http://www.Malwarebytes.org/MBAM.php

    Malwarebytes is as its name suggests, a Malware Remover!

    Download the free Version from the link above.

    Download, install, upgrade and scan once a fortnight...

     

    How to use Malwarebytes once it is installed and updated:

    1. open Malwarebytes > click the update tab at the top > get the latest updates.

    2. on the Scanner tab, make sure that thePerform quick scan option is selected and then click on theScan button to start scanning your computer

    3 MBAM will now start to scan your computer for malware. This process can take some time.

    4. when the scan is complete, a message box will appear

    5. you must click on the OK button to close the message box and continue the process of Malwareremoval.

    6. you will now be at the main scanner screen. At this point, you must click on the button toview the result .

    7. a screen showing all of the malware displayed the program that is

    8. you must now click remove selection button to remove all the listed malware. MBAM will now delete all of the files and registry keys and add them to the programs quarantine. When you remove files, MBAM may require a restart in order to eliminate some of them. If it displays a message stating that it needs to restart, please let him do. Once your computer has rebooted, and logged in, please continue with the remaining steps.

    9. when MBAM has finished remove the malware, it will open the scan log and display it in Notepad. See the log as desired, and then close the Notepad window.

    10. you can now exit the MBAM program.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the error persists after scanning, use the program to out startup:

    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx

    This utility, which has a knowledge of auto-starting locations of any startup monitor, shows you what programs configured to run at system startup or login and that the entries in the order of processing windows. These programs include those in your startup folder, Run, RunOnce, and other registry keys. You can configureAutoruns to show other locations, including Explorer shell, toolbar extensions, helper objects to the browser, Winlogon notifications, auto and many start-up services even more. Autoruns goes way beyond the MSConfig utility bundled with Windows Me and XP.

    See you soon.

    Mick Murphy - Microsoft partner

  • When I try to open a PDF in a Web site, I get a runtime error and the site is stopped.

    Hello

    When I try to open a PDF in a Web site, I get a runtime error and the site is stopped. How can I fix this problem? I am running Windows XP Home Edition.

    original title: Run time error

    Hello.

    I guess you are using Acrobat Reader to view the PDF files?

    You can try to download the latest version of Acrobat Reader here:

    http://www.Adobe.com/

  • Error 80004005 HRESULT and the displayed directory is already empty.

    Separated from this thread.

    Hi jscott2045,
    Thanks for posting in the Microsoft community!
    I'm sorry to hear that you can not install Flight Simulator X.
    What is the full error message/code?
    Exactly when you receive the error?

    Please follow the steps below and let us know if that helps.
    1. click on the download the Software Licensing System Reset Tool package now link to start the download.
    http://download.Microsoft.com/download/1/c/d/1cd508f9-7520-4659-A122-a26e8804e884/MSKB928080.exe
    2. When you receive the file download dialog box, click Desktop, and then click Save.
    3. when the download is complete, click Close.
    4. double-click on the MSKB928080.exe file to your desktop.
    5. When you are prompted to accept the license agreement, click Yes.
    6. extract the files in the following folder:
    C:\MicrosoftKB928080
    Note If you receive the file Open - Security warning dialog box, click Run.
    7 run the software licensing system reset tool. To do this, follow these steps:

    a.Press Windows key + R, type cmd in the search box and press ENTER.
    b.At the command prompt, type the following command in the command window:
    CD C:\
    c.Press Enter.
    d.Type cd MicrosoftKB928080.
    e.Press Enter.
    resetsldl-all f.Type.
    Press Enter.

    Please report if you are still having the problem. I will be happy to provide you with the additional options that you can use to get the problem resolved.

    Have the same problem, tried the above but get the following error HRESULT 80004005 and the displayed directory is already empty.  Other suggestions

    Hello

    Thanks for posting your query on the Microsoft Community.

    Error 80004005 Hresult might be due to damage to the windows system files. Inputs of corrupted system files can be a real threat to the well-being of your computer.

    There may be a lot of events which may have led to file system errors. An incomplete installation, an incomplete uninstallation, incorrect removal applications or equipment. It can also be caused if your computer is retrieved from an attack of the adware/spyware or virus or by an abnormal shutdown of the computer. All assets that the above may result in the deletion or corruption of entries in the windows system files. This corrupted system file will cause information missing and wrong linked and files needed for the proper functioning of the application.

    You can follow the methods and check them off below if it helps.

    Method 1

    Run the Analysis System File Checker.

    https://support.Microsoft.com/en-us/KB/929833

    Method 2

    Perform a restore of the system to a previous point

    http://Windows.Microsoft.com/en-us/Windows-8/restore-refresh-reset-PC

    Keep us posted on the State of the question, we will be happy to help you.

  • Error loading configuration in the repository data

    Hi all.
    I installed Oracle 11 g R2 on Windows 2008 Server.
    After that, I can't download the agent for a database.
    Any comments please.
    Thank you for your comments advense.
    Here is the Log file:

    .......
    ......
    ....
    .....
    March 9, 2011 14:19:46 oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Discover sql user: declare repos_pwd varchar2 (30); view_user varchar2 (30); view_user_pwd varchar2 (30); view_user_acc_status varchar2 (30); begin repos_pwd: =?; SYSMAN.mgmt_view_priv.get_view_user (view_user); Select account_status from the view_user_acc_status of sys.dba_users where upper (username) = high (view_user); If view_user_acc_status like "% LOCKED" THEN immediate "change user" | view_user | 'unlock account'; END IF; IF view_user_acc_status like "% EXPIRED %" THEN sysman.mgmt_view_priv.set_view_user_creds (repos_pwd); SYSMAN.mgmt_view_priv. GET_VIEW_USER_CREDS (view_user, view_user_pwd); run immediately "edit user" | view_user | ' identified by ' | view_user_pwd | ''; END IF; end;
    March 9, 2011 14:19:46 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value has been set for the ORACLE_HOSTNAME parameter.
    March 9, 2011 14:19:46 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Begin execution: CMD /C D:\app\DBAdministrator\product\11.2.0\dbhome_1\sysman\admin\scripts\emca\emcaDbUtil.bat "D:\app\DBAdministrator\product\11.2.0\dbhome_1\sysman\admin\scripts;D:\app\DBAdministrator\product\11.2.0\dbhome_1\bin"; D:/app/DBAdministrator/Product/11.2.0/dbhome_1/perl/bin\perl.exe D:\app\DBAdministrator\product\11.2.0\dbhome_1\sysman\admin\scripts\emca\emcaDbUtil.pl D:\app\DBAdministrator\product\11.2.0\dbhome_1 "(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = FinaOra-ground)(PORT=1521))) (CONNECT_DATA = (SERVICE_NAME = finaoradb)))" SYS SYSDBA declare repos_pwd varchar2 (30); view_user varchar2 (30); view_user_pwd varchar2 (30); view_user_acc_status varchar2 (30); begin repos_pwd: =?; SYSMAN.mgmt_view_priv.get_view_user (view_user); Select account_status from the view_user_acc_status of sys.dba_users where upper (username) = high (view_user); If view_user_acc_status like "% LOCKED" THEN immediate "change user" | view_user | 'unlock account'; END IF; IF view_user_acc_status like "% EXPIRED %" THEN sysman.mgmt_view_priv.set_view_user_creds (repos_pwd); SYSMAN.mgmt_view_priv. GET_VIEW_USER_CREDS (view_user, view_user_pwd); run immediately "edit user" | view_user | ' identified by ' | view_user_pwd | ''; END IF; end; FINAORADB 1 SYSMAN_PWD
    March 9, 2011 14:19:49 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Output value 0
    March 9, 2011 14:19:49 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Running CMD /C D:\app\DBAdministrator\product\11.2.0\dbhome_1\sysman\admin\scripts\emca\emcaDbUtil.bat "D:\app\DBAdministrator\product\11.2.0\dbhome_1\sysman\admin\scripts;D:\app\DBAdministrator\product\11.2.0\dbhome_1\bin"; D:/app/DBAdministrator/Product/11.2.0/dbhome_1/perl/bin\perl.exe D:\app\DBAdministrator\product\11.2.0\dbhome_1\sysman\admin\scripts\emca\emcaDbUtil.pl D:\app\DBAdministrator\product\11.2.0\dbhome_1 "(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = FinaOra-ground)(PORT=1521))) (CONNECT_DATA = (SERVICE_NAME = finaoradb)))" SYS SYSDBA declare repos_pwd varchar2 (30); view_user varchar2 (30); view_user_pwd varchar2 (30); view_user_acc_status varchar2 (30); begin repos_pwd: =?; SYSMAN.mgmt_view_priv.get_view_user (view_user); Select account_status from the view_user_acc_status of sys.dba_users where upper (username) = high (view_user); If view_user_acc_status like "% LOCKED" THEN immediate "change user" | view_user | 'unlock account'; END IF; IF view_user_acc_status like "% EXPIRED %" THEN sysman.mgmt_view_priv.set_view_user_creds (repos_pwd); SYSMAN.mgmt_view_priv. GET_VIEW_USER_CREDS (view_user, view_user_pwd); run immediately "edit user" | view_user | ' identified by ' | view_user_pwd | ''; END IF; end; FINAORADB 1 SYSMAN_PWD completed successfully
    March 9, 2011 14:19:49 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Arguments passed D:\app\DBAdministrator\product\11.2.0\dbhome_1 (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = FinaOra-ground)(PORT=1521))) (CONNECT_DATA = (SERVICE_NAME = finaoradb))) SYS SYSDBA declare repos_pwd varchar2 (30); view_user varchar2 (30); view_user_pwd varchar2 (30); view_user_acc_status varchar2 (30); begin repos_pwd: =?; SYSMAN.mgmt_view_priv.get_view_user (view_user); Select account_status from the view_user_acc_status of sys.dba_users where upper (username) = high (view_user); If view_user_acc_status like "% LOCKED" THEN immediate "change user" | view_user | 'unlock account'; END IF; IF view_user_acc_status like "% EXPIRED %" THEN sysman.mgmt_view_priv.set_view_user_creds (repos_pwd); SYSMAN.mgmt_view_priv. GET_VIEW_USER_CREDS (view_user, view_user_pwd); run immediately "edit user" | view_user | ' identified by ' | view_user_pwd | ''; END IF; end; FINAORADB 1 SYSMAN_PWD

    Connect to the database using string (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = FinaOra-ground)(PORT=1521))) (CONNECT_DATA = (SERVICE_NAME = finaoradb))) D:\app\DBAdministrator\product\11.2.0\dbhome_1 House with the role of 'SYS' user 'SYSDBA '.
    connected to the database.
    To run SQL declare repos_pwd varchar2 (30); view_user varchar2 (30); view_user_pwd varchar2 (30); view_user_acc_status varchar2 (30); begin repos_pwd: =?; SYSMAN.mgmt_view_priv.get_view_user (view_user); Select account_status from the view_user_acc_status of sys.dba_users where upper (username) = high (view_user); If view_user_acc_status like "% LOCKED" THEN immediate "change user" | view_user | 'unlock account'; END IF; IF view_user_acc_status like "% EXPIRED %" THEN sysman.mgmt_view_priv.set_view_user_creds (repos_pwd); SYSMAN.mgmt_view_priv. GET_VIEW_USER_CREDS (view_user, view_user_pwd); run immediately "edit user" | view_user | ' identified by ' | view_user_pwd | ''; END IF; end;
    noOfParams to bind: 1.
    run SQL.

    March 9, 2011 14:19:49 oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Account unlocked mgmt_view
    March 9, 2011 14:19:49 oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Managed to unlock mgmt_view account
    March 9, 2011 14:19:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value has been set for the ORACLE_HOSTNAME parameter.
    March 9, 2011 14:19:49 oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Download of the configuration in the repository of EM data (this may take a while)...
    March 9, 2011 14:22:54 oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    CONFIG: Error loading configuration in the repository data
    oracle.sysman.emdrep.config.ConfigurationException: FATAL Exceptions of Configuration

    at oracle.sysman.emdrep.config.EMSchemaConfiguration.perform(EMSchemaConfiguration.java:232)
    at oracle.sysman.emcp.EMReposConfig.uploadConfigDataToRepository(EMReposConfig.java:699)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:385)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
    at oracle.sysman.assistants.util.em.EMConfigStep.executeImpl(EMConfigStep.java:139)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.BasicStep.callStep(BasicStep.java:251)
    at oracle.sysman.assistants.dbca.backend.PostDBConfigureStep.executeImpl(PostDBConfigureStep.java:269)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    to oracle.sysman.assistants.util.step.StepContext$ ModeRunner.run (StepContext.java:2667)
    at java.lang.Thread.run(Thread.java:595)
    March 9, 2011 14:22:54 oracle.sysman.emcp.EMReposConfig invoke
    NEWS: Check the log to D:\app\DBAdministrator\cfgtoollogs\emca\finaoradb\emca_repos_config_ file < date > .log for more details.
    March 9, 2011 14:22:54 oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error download configuration in the repository data
    March 9, 2011 14:22:54 oracle.sysman.emcp.EMConfig perform
    SEVERE: Error download configuration in the repository data
    See the log file at D:\app\DBAdministrator\cfgtoollogs\dbca\finaoradb\emConfig.log for more details.
    March 9, 2011 14:22:54 oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: error loading configuration in the repository data
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:397)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
    at oracle.sysman.assistants.util.em.EMConfigStep.executeImpl(EMConfigStep.java:139)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.BasicStep.callStep(BasicStep.java:251)
    at oracle.sysman.assistants.dbca.backend.PostDBConfigureStep.executeImpl(PostDBConfigureStep.java:269)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    to oracle.sysman.assistants.util.step.StepContext$ ModeRunner.run (StepContext.java:2667)
    at java.lang.Thread.run(Thread.java:595)
    March 9, 2011 14:22:54 oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoration of oracle.installer.oui_loc to D:\app\DBAdministrator\product\11.2.0\dbhome_1\oui

    PL see MOS Doc 1233913.1 ("error downloading Configuration for the data repository" when you configure dbconsole) for the solution

    HTH
    Srini

Maybe you are looking for