Patch 4 Problem - Missing irj folder

Hi,
I have started installing EP6SP2 Patch 4. As per instruction, I was supposed to stop IRJ service in SAP J2ee engine services>deploy>servlet_jsp-->irj. After doing that I went ahead with installation and I got an error message  "The execution of Stop/Start IRJ terminated with errors. The return code was 1".
I went and looked into SAP J2EE Engine and I'm surprised to note that there is no IRJ service and as well irj folder is also missing in the file structure. Does anyone have come across this. Kindly let me know what I should do to restore my portal as it not working now.
Regards,
Praveen

Hi,
the only way to get your irj back is to redploy the irj.ear file manually. I did this a long time ago, so not sure if this still works. It happened indeed during a wrong upgrade procedure (not patch 4, but 2 I think).
Also, I don't remember having to stop the IRJ service for a patch installation (only KM requires this). To patch the portal you need to stop / start the entire J2EE engine.
Marcel
Like Detlev said, I hope you have a backup.

Similar Messages

  • Patches Vanish to "Missing/Required" Status

    Hello,
    I recently had an issue where SharePoint 2010 CA flagged an issue with missing patches on one of my WFEs.
    Within CA I went to "Manage Patch Status." Under this particular WFE every single patch is showing "Missing/Required" under the status. This is absurd, as I manually installed all of these patches myself. Furthermore, on all the other
    WFEs all of the patches show as installed. This server has been around for four years and has been patched with PSConfig run every time. I have been to the "Manage Patch Status" page many times over the years and they certainly weren't red before
    with "Missing/Required." Yet, all of them seemed to vanish overnight.
    I logged into the WFE and all of the patches show up as present.
    What would make them disappear from the configuration database? After reading other threads, I tried running: Get-SPProduct -Local. That didn't rectify the situation, however.
    Thoughts?
    Thanks,
    Joseph Irvine  

    Hi Joseph,
    There might be files missing from windows installer cache folder on server.
    Please refer to the links below and manually repair the msi files on issue server:
    http://blogs.technet.com/b/paulpaa/archive/2010/03/26/sharepoint-2007-hotfix-failed-with-an-error-the-detection-failed-this-can-be-due-to-a-corrupted-installation.aspx
    Similar issue:
    http://social.technet.microsoft.com/Forums/en-US/a7919b10-e4fe-4911-9016-bb6b81cf4194/sharepoint-patch-update-issue
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Problem with "watch folder" and Windows 7

    I have just switched to Windows 7 and Elements 9 - so far things are working quite well, but I am having a problem with "Watch folder"  It is watching my odf folder "My Pictures" but all my new photos are going into Libraries/Pictures and PSE9 won't let me add that to the watch folder section.  I am afraid that if I ask PSE9 to Get Photos and Videos / From Files and folders I may get a whole buch of duplicates in my Organizer.
    Any help would be appreciated.

    Thank you - I followed your directions
    and found that I had already tagged it to watch, but hadn't realized that it was tagging both the old and the new.  Big learning curve for me.

  • Problem in delete folder

    Please don't refer me to the innumeras delete folder solutions available in the SDN. None of them has come to my help.
    I need to delete a folder. Well, codes are available everywhere, I run it, it successfully deletes the folder specified.
    But the requirement is, I need to make a zip of the folder, then I'll delete the original folder. I am pasting the code here. The zip part is working, the delete part is not! if you comment the line calling zip, it deletes the folder, but after zipping, it cannot delete.
    Is there some lock present? How to check and remove that? Please help.
    * Created on Jan 16, 2006
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package com.ibm.eis.printapi;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintStream;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    * @author localusr
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    class PrintUtils {
         static String folderName = "EISMENU_bak";
         static String path = "c:\\samik";
         static String outFilename = "outfile.zip";
         public static void main(String args[]) throws IOException {
              File inFileName = new File(path + "\\" + folderName);
              //make the zip file
              makeZip(inFileName, path, outFilename);
              //Now, delete the directory
              File inFileName2 = new File(path + "\\" + folderName);
              inFileName2.renameTo(new File(path + "\\" + "aaa"));
              deleteDir(inFileName2);
         public static void makeZip(File inFile, String path, String outFile) throws IOException {
              File[] filenames = inFile.listFiles();
              byte b[] = new byte[512];
              ZipOutputStream out = null;
              try {
                   out = new ZipOutputStream(new FileOutputStream(path + "\\" + outFilename));
                   for (int i = 0; i < filenames.length; i++) {
                        if (filenames.isFile()) {
                             InputStream in = new FileInputStream(filenames[i]);
                             ZipEntry e = new ZipEntry(filenames[i].toString().replace(File.separatorChar, '/'));
                             out.putNextEntry(e);
                             int len = 0;
                             while ((len = in.read(b)) != -1) {
                                  out.write(b, 0, len);
                             print(e);
              } catch (IOException ioe) {
                        ioe.printStackTrace();
              } finally {
                   out.close();
                   out = null;
                   filenames = null;
                   b = null;
         public static void print(ZipEntry e) {
              PrintStream sop = System.out;
              sop.print("added " + e.getName());
              if (e.getMethod() == ZipEntry.DEFLATED) {
                   long size = e.getSize();
                   if (size > 0) {
                        long csize = e.getCompressedSize();
                        long ratio = ((size - csize) * 100) / size;
                        sop.println(" (deflated " + ratio + "%)");
                   } else {
                        sop.println(" (deflated 0%)");
              } else {
                   sop.println(" (stored 0%)");
         public static boolean deleteDir(File dir) {
              boolean deleted = false;
              try {
                   if (dir.isDirectory()) {
                        String[] children = dir.list();
                        for (int i = 0; i < children.length; i++) {
                             boolean success = deleteDir(new File(dir, children[i]));
                             if (!success) {
                                  deleted = false;
                             } else {
                                  deleted=true;
                   // The directory is now empty so delete it
                   //System.out.println(dir.canRead())
                   deleted = dir.delete();
              } catch (Exception e) {
                   System.out.println("error: " + e);
              return deleted;

    Thanks it worked.
    The problem was, the folder I was trying to delete had .classpath, .project, .websettings files. It was encountering problem to delete these files because it internally also uses files of same name.
    May be that was the reason.
    I tried with any other folder, it worked.

  • Missing email folder icon on BBT 9800 - Where did it go and how to return it back?

    Missing email folder icon on BBT 9800 - Where did it go?
    The email icon on my BB Torch 9800 just disappeared. If I type email in the search button it shows me the greyed out email icon but I can't get the icon back on to my homescreen. How do I get my email icon back? And Unhide All is not an option so icant find it.
    Please consider the above on urgent basis as I can't see my work mails.
    Thanks,

    Hi hegazysource and welcome to the BlackBerry Support Community Forums!
    Are you using the BlackBerry® Internet Service or BlackBerry® Enterprise Server to receive your email on your device?
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • There is a problem syncing the folder...

    I keep getting the following message whenever I boot up my PowerBook G4:
    *There is a problem syncng the folder "Brad's iMac (2)."*
    *Unknown error: chflags('/Volumes/bradpurvis/Backups.backupdb/Brad's iMac (2)', 0) Please try again later.*
    Recently, my iMac which I sync this PowerBook to had the Superdrive changed and when it came back the computer name was changed to Brad's iMac (2). Do I need to make some kind of adjustment to my PowerBook's settings?

    iSync doesn't sync anything between Macs - it is only for syncing contacts and calendars to non-Apple USB & Bluetooth mobile phones.
    It's probably to do with iDisk syncing which is handled by *MobileMe Sync*. The forum for that is here:
    http://discussions.apple.com/forum.jspa?forumID=957

  • I had this problem with the folder with the question mark in it

    hello guys, so i had this problem with the folder with the question mark in it and now i just keep the options button pressed till it shows me the option to boot and so how can i get that solved and my mac can just boot normally and something else is that i press on system preferences and nothing happens it basicly does not exist so if you guys could help me it would be great
    <Re-Titled By Host>

    It sounds like either the system on your disk drive is corrupt or the disk drive died.
    Assuming the information in your profile is correct then boot from the install DVD for you MBP. From there you should be able to run Disk Utility to check out the disk drive.

  • Patch installation problem, catupgrd.sql file is missing in the directory

    Hi,
    I have installed oracle database 10.1.0.2.0 in my windows system and i have created one database.
    now i got oracle database 10.2 patch from metalink.
    As per the document everything i did, i shutdowned the database,stoped all services and installed oracle 10.2 in the same oracle home directory.
    As per the document procedure i performed below steps
    SQL> STARTUP NOMOUNT
    SQL> ALTER SYSTEM SET SHARED_POOL_SIZE='150M' SCOPE=spfile;
    SQL> ALTER SYSTEM SET JAVA_POOL_SIZE='150M' SCOPE=spfile;
    SQL> SHUTDOWN
    C:\> sqlplus /NOLOG
    SQL> CONNECT SYS/password AS SYSDBA
    SQL> STARTUP NOMOUNT
    SQL> ALTER SYSTEM SET CLUSTER_DATABASE=FALSE SCOPE=spfile;
    SQL> SHUTDOWN
    SQL> STARTUP UPGRADE
    SQL> SPOOL patch.log
    SQL> @ORACLE_BASE\ORACLE_HOME\rdbms\admin\catupgrd.sql
    SQL> SPOOL OFF
    Till startup upgrade everything worked, after i made spool on as per the document and then the problem arives
    i executed this below statement
    SQL> @ORACLE_BASE\ORACLE_HOME\rdbms\admin\catupgrd.sql
    i got SP2-0310: unable to open file "C:\oracle\product\10.1.0\db_1\rdbms\admin\catupgr
    d.sql" error.
    i went into that path and i checked many files was there but this perticular file was not there.
    i am stuck here what i should do now?
    i have to upgrade the database and i should start the database.
    please help me out
    regards
    veeresh
    [email protected]

    hi virag,
    but in the document they have given not to install in new oracle home directory. for ur reference i have added that lines, please help me out. and 1 thing,after i installed 10.2 patch when i type sqlplus it give 10.1.0.2 only, it is not giving 10.2,why is this.
    Note:
    If you attempt to install this patch set in an Oracle home directory that does not contain an Oracle Database 10g release 10.2.0.1 installation, Oracle Universal Installer displays a warning dialog with the following error:
    OUI-10091: There are no patches that need to be applied from the patchset Oracle Database 10g Release 2 Patch Set 1
    10.2.0.2.0
    The Oracle Universal Installer does not allow the installation to proceed. Click OK, then click Cancel to end the installation.

  • Lightroom 5 import problems (missing folder and/or content)...how to solve??

    Hello
    I used LR4 with success (Sony a57 with ARW-files and Canon 5dMk3 with CR2 files).
    Now I use LR5. But I can't import new files any more (neither in LR4 nor LR5).
    in the import module LR doesn't display existing folders (like they would not exist) and /or
    LR shows the folder but no content (message: no pictures in folder)...but they are....
    please could help me someone?
    btw: adobe page is chaotic pur...to find support there is so terribly annoying
    thanks in advance
    mark

    Try deleting your preferences file
    http://helpx.adobe.com/lightroom/kb/preference-file-locations-lightroom-4.html

  • MSVCRT.DLL problem - missing DLL error

    I am interested if anyone else has run across the problem of
    post-installation error message referencing a missing MSVCRT.DLL
    dynamic link library even though several versions show up on the
    C: drive in various folders such as WIN32/SYSTEM? Also, the
    Dev6 Patch 1 makes reference to a missing web cartridge product
    that I thought would be part of the Developer Server side, not
    the client. I used the latest CDROM for the client NT 4.0 Sp 4
    Workstation installation. Any thoughts? Thanks in advance, GL
    null

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Missing Movies Folder in Sidebar

    When opening a Finder window, one of my sidebar folders is missing. I have the Applications, Documents, Pictures, Music and User folders, but the Movies folder is nowhere to be seen. I tried searching for it in Spotlight and got nothing. Because of this, I have no Movies directory to save my iMovie projects in. How can I take care of this problem?

    The special icon is automatically given by the Finder to a folder named Movies that resides in the users home folder, and automagically gives it the cool custom icon in the Sidebar when it is dragged there. People have been known to mess this up by pasting an icon on the folder themselves. Sometimes a restart of the Finder or the computer may be necessary to get the custom icon to display. There are a number of folders that the Finder treats this way in the home folder.
    Francine
    Francine
    Schwieder

  • Problem with Watched Folder endpoint

    Hi,
    We have a problem with a watched folder endpoint. The watched folder is set in a directory in a linux server. The directory then is mapped to a windows directory where files arrive from time to time. Everything works fine until the watched folder service stops for no particular reason. After that we need to restart the service from the admin UI console.
    I found in another post something related to the MySql database losing connection with livecycle after some inactivity, but I'm not sure if this is our case or even how to solve the problem.
    Here's what we found in the log
    2010-11-11 17:10:31,890 INFO  [com.adobe.idp.dsc.provider.service.file.write.impl.FileResultHandlerImpl] FileResultHandlerImpl ----- preserved- source ----/data/livecycle/lc_wrk/edi/stage/Wx130df02e731a9c7b14738905/C0158_208.dat--- to ---/data/livecycle/lc_wrk/edi/preserve/ /C0158_208.dat
    2010-11-11 20:39:46,366 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Handling 1 trigger(s) that missed their scheduled fire-time.
    2010-11-11 20:40:22,056 ERROR [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Error retrieving job, setting trigger state to ERROR.
    org.quartz.JobPersistenceException: Couldn't retrieve job: Prepared statement needs to be re-prepared [See nested exception: java.sql.SQLException: Prepared statement needs to be re-prepared]
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveJob(JobStoreSupport.java:1338)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.triggerFired(JobStoreSupport.java:2789)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$37.execute(JobStoreSupport.java:2757)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.ja va:3662)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.triggerFired(JobStoreSupport.java:2751)
    at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:313)
    Caused by: java.sql.SQLException: Prepared statement needs to be re-prepared
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2928)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1571)
    at com.mysql.jdbc.ServerPreparedStatement.serverExecute(ServerPreparedStatement.java:1124)
    at com.mysql.jdbc.ServerPreparedStatement.executeInternal(ServerPreparedStatement.java:676)
    at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1030)
    at org.jboss.resource.adapter.jdbc.CachedPreparedStatement.executeQuery(CachedPreparedStatem ent.java:90)
    at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStat ement.java:255)
    at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectJobListeners(StdJDBCDelegate.java:843)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveJob(JobStoreSupport.java:1319)
    ... 5 more
    2010-11-11 20:40:22,061 ERROR [org.quartz.core.ErrorLogger] An error occured while firing trigger 'WatchedFolder.WatchedFolder:1107'
    org.quartz.JobPersistenceException: Couldn't retrieve job: Prepared statement needs to be re-prepared [See nested exception: java.sql.SQLException: Prepared statement needs to be re-prepared]
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveJob(JobStoreSupport.java:1338)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.triggerFired(JobStoreSupport.java:2789)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$37.execute(JobStoreSupport.java:2757)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.executeInNonManagedTXLock(JobStoreSupport.ja va:3662)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.triggerFired(JobStoreSupport.java:2751)
    at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:313)
    Caused by: java.sql.SQLException: Prepared statement needs to be re-prepared
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2928)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1571)
    at com.mysql.jdbc.ServerPreparedStatement.serverExecute(ServerPreparedStatement.java:1124)
    at com.mysql.jdbc.ServerPreparedStatement.executeInternal(ServerPreparedStatement.java:676)
    at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1030)
    at org.jboss.resource.adapter.jdbc.CachedPreparedStatement.executeQuery(CachedPreparedStatem ent.java:90)
    at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStat ement.java:255)
    at org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectJobListeners(StdJDBCDelegate.java:843)
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.retrieveJob(JobStoreSupport.java:1319)
    ... 5 more
    2010-11-11 20:56:46,550 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Handling 1 trigger(s) that missed their scheduled fire-time.
    thanks

    Originally Posted by bjbradleyUSC
    Is there a problem with running the ZCM client and the Endpoint client on the same machine?? I am having problems getting both of them to install on a single machine.
    If I install the ZCM Client, it will pull down the policies and work correctly. Then I try to install Endpoint and it will not finish up it's checkin procedure and it will not get the policies set in place for it.
    Otherwise, I'll start with Endpoint on a fresh machine install it and it works great pulling down the policies. But the ZCM doesn't seem to pull down the policies correctly?
    Just wondering if this was known problem or is there something I am not doing correctly...
    Thanks
    BJ Bradley
    This is issue that you are seeing is just for the client, correct? The ZESM server and ZCM server are on separate machines, correct?

  • Missing user folder from Workspace and FR studio

    Hi All,
    Recently we upgraded the workspace and applications... Initially there were all the folders, but i noticed that user folder from workspace and FR studio was missing... If anyone have come across this issue please let me know how to solve it.
    Awaiting for response, Thanks in advance

    Just to make sure I understand. When you double click the hard drive icon either in the sidebar or on your desktop (if you have it shown there) there is no users folder shown? If that is the case then it must somehow have become invisible. If there was in actuality no user folder at all your Mac would not boot.
    If that is the case then you may have to use the terminal to get it back. I can't help you with that though, sorry. Another possibility is that there is some sort of corruption in a cache file. You could use a tool such as YASU or others to do a light cache cleaning which may solve the problem.

  • Win2k3 64 x86 and Appex instalation problems (missing OHS on companion CD)

    Oracle guys,
    I do understand that Windows is not preffered OS for Oracle...but most of us Oracle people have laptops and on them Windows OS (from Win2k, Win XP, Win2k3, Win2k364...tomorrow maybe Vista).
    <br><br>So we, with new 64 bit CPU, would like to use all the potential of the hardware. I do not want to describe why 2k3 is very stable and secure platform...but after Win2k this is one of the most complete OS from MS (IMHO).
    <br><br>So, please give us a note what to do if we want to use Win2k3 64 server x86 version and Oracle10gR2 64 for x86 and want to develop Appex on this database.
    <br><br>Missing point is OHS (it is not on companion CD)-so any suggestion what to do is appresciated (If standalone Appache is solution please let us know which version would suite best...and do we have to install "mod" parts...
    <br><br>P.S.
    <br>I know that Win2k3 64 bit and Oracle WinNT32 is not recommended combination (I have some listener problems so I decided to quit this combination)...so I'm exploring Oracle 64 bit usage-but now I'm stucked!
    <br><br>P.S. II
    <br><br>I have put this question on Appex group but no reply at all (some other users have joined me in questioning this). So please if this is not the right place, could you lead me where to post this topic?
    <br><br>THX!

    How about installing HTTP server as Oracle Application Server 10g. Even if it is not supported it may work since this is just for development on your laptop.
    Alternatively install Database XE which comes with Apex 2.1 ( but not the latest version 2.2).
    I have just hit the same problem. I have installed database and companion 10 R2 10.2.0.1.0 with patch 4547918 to 10.2.0.2 on my MS WIN x86 64 bit laptop. I wanted to install Apex 2.2 on top but have no HTTP server. Thanks for pointing out the release notes.
    The getting stated page of the documentation on the companion cd states you can install the following 2 installation types:
    * Oracle Database 10g Products: Includes Oracle Database Examples, natively compiled Java libraries for Oracle JVM and Oracle interMedia, and knowledge bases for Oracle Text.
    * Oracle Database 10g Companion Products: Includes Oracle HTTP Server, Oracle Workflow, and Oracle HTML DB.
    But as we have found you can only install Products not Companion Products on 10g Release 2 (10.2) for Microsoft Windows(x64).

  • MAC, CS2: File server migration problem/Missing Link/auto remap behavior.

    Hi,
    I'm just leaving a quite "trace" in case someone else get in similar problems and do a search of the forum, it's very technical and i'm also missing some information, so i wont make a special effort to make it easier to understand.
    We did a migration of a project from a OSX desktop station used as a server to a real OSX server (same root volume name, exact replication of the folders). Many of links in the indesign documents (not all) are missing.
    After trying a few things, including inspecting the links in a .inx export, i have discovered that the remapping mecanism (when a link is missing) doesnt work the same depending of the OSX version (maybe related to afp version?) and also depending of the Indesign version used.
    One of the case we have is a filepath that is encoded (in the inx file) using a "~sep~" in replacement of "_" (underscore) (documented, but very briefly in the inx specs documentation). It looks like the file was imported from a folder that was named "01_test" by exemple and later renamed "01-test" without doing the update in the indesign files.
    On our "old" serveur, the link with such encoded char is resolved without any error/warning (just like "_" would be the same as "-"), but on our new serveur the link are reported as missing. I did the same test using CS3 and the links are reported as missing using the old and new serveur.
    The new behavior of CS3 is better as it report adequately the change in filename (containing "-" instead of "_") instead of having a automatic remap (not working the same way accross different version of OSX) and also no commiting the change to the document (the remapping is not stored with the resolved link, the original link with "~sep~" is kept. One last odd behavior is that if we relink one path in a document, all the other links are resolved (on the new server) at document opening.. but if we unmount/remount the volume (restart indesign?), the link are still missing...
    I'm missing some information on the expected behavior of indesing missing link automatic correction, also related to afp version (spotlight indexing could be involved??).
    Currently i'm doing a log output of all the missing link to have a complete picture of the problem (in case the are other problems not related to the "_" and "-" in path name).
    Eric

    My apologies about the wall of text. After I made my original post, I thought maybe it would better to go back and put it in a pastebin instead. I was not able to edit that post once I sent it.
    In regards to your question, the  permissions on the
    /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist file is "read and write" for system, wheel and everyone.

Maybe you are looking for

  • HT3748 My exchange email account works in iPhone but it does not work in mac, how do i solve it?

    I've tried several times to add my work exchange email account on macBook Pro but it cant connect to the server. It works fine on my iPhone. Is there any solution to this problem?

  • Problems recording DVD+r

    I have an Intel Imac 17" with this optical drive: MATSHITA DVD-R UJ-846 i can't record any type of DVD+R (tried 3 different brands, philips, princo and verbatim) because i keep getting an error code (0x8002006D) at the beginning of the recording ...

  • Extreme Syncing Problems

    Whenever I try to sync my ipod (second Generation), bad things happen. First off, When itunes opens up, it normally says that it cannot connect to itunes store. Though when I go to the store part of itunes it works fine. Second, I always get a proble

  • DATE FORMAT (ORACLE PORTAL) -----   (DATABASE)

    I had a conversion ERROR while I was inserting DATE value from dynamic LOV to database(probably because of the different default DATE FORMAT of LOV query and database). I fixed the problem with TO_CHAR funtion in the LOV query,where I changed the dat

  • How long does the clean up process take on a microphoto its taking a good few hours

    it froze at th creative logo so i tryed a clean up in recovery mode an it seems to be takin forever wtf literaly taking hours is this normal or is it frozen in this state? what shall i do?