Update to 10.4.11 causes loss of application launching

For some weird reason after updating Leopard Server 10 10.4.11 Build 8S169 from 10.4.10 causes the loss of application launching after a few minutes of activity.
All services appear to be running. All clients are able to connect to the server and FM Server 8.0V2 which is also running on this server still seems to be running fine. The configuration is 3.5GB RAM, Dual 500GB SATA using SoftRAID mirroring.
I can connect to the FM Server using FM Server Admin but CANNOT connect with the Server Admin Tools which have also been updated to 10.4.11.
I can't login using slogin either. I CAN connect using ChickenoftheVNC but it doesn't do me any good as I cannot launch anything.
I have reapplied the combo update 10.4.11 to no result as the same thing happens after 10 minutes. Any applications that ARE running continue to behave normally.
The error I am getting is -10810 which is a non-specific unexpected internal error.
Anyone have any ideas?
Thanks!
Asa

Hi
I remember a few people with this problem after updating - but having searched briefly, I can't find a specific fix.
However - I do suggest you download & apply the 10.4.6 Combo Update.
The combo update does seem to fix a number of different issues that users have had after installing the standard 10.4.6 update.... so it's certainly worth a try.

Similar Messages

  • Update to 10.4.6 causes loss of wireless mouse

    I just updated to 10.4.6, and now my Apple Wireless Mouse doesn't work correctly. It shows in the list of bluetooth-connected devices, and the button functions, but moving the mouse does not move the cursor.
    Have tried starting from scratch multiple times. In Bluetooth Setup Assistant, turning on the mouse produces flashes from the mouse LED as usual, until the Assistant announces that the connection is successfully established, when the LED goes out, and stays out. Neither moving the mouse on a surface, nor waving something past the optical sensor causes the LED to emit. Hence, I've now got a working bluetooth mouse button, but no mouse.
    Anyone having similar problems?

    Hi
    I remember a few people with this problem after updating - but having searched briefly, I can't find a specific fix.
    However - I do suggest you download & apply the 10.4.6 Combo Update.
    The combo update does seem to fix a number of different issues that users have had after installing the standard 10.4.6 update.... so it's certainly worth a try.

  • Update to 10.5.2 caused loss of wireless connectivity

    After updating from 10.5.1 to 10.5.2 I couldn't connect to Network (wireless). Router function checked out ok with ISP. (I could get online wirelessly with my PDA.) I could get connectivity with my MBP via ethernet cable. I also couldn't connect wirelessly to my printer (which I could do before). Spent a lot of time with AppleCare tech. but didn't solve anything. Wound up reloading OS and restoring w/Time Machine. I'm back to v.10.5, and all works well. I'm reluctant to upgrade to anything further at the moment (maybe to 10.5.1...?). I'm concerned that I'll wind up with the same problem if I go up to 10.5.2. Any thoughts where I should go from here?

    I'm "replying" to my own message because I need to modify it! With v.10.5 that I wound up with, I lost functionality of iTunes, plus a couple of other apps. Feeling masochistic, I then updated (again!) to 10.5.2. The various functions are back working fine, but AirPort cannot connect. I therefore connected my MBP to the router with an ethernet cable. Everything works OK, but it would sure be nice to function wirelessly like I did before the update! Any suggestions would be appreciated. BTW, on my system, I have Parallels and WinXP, but I haven't used it in several weeks; might there be some sort of conflict there, even if I'm not using Parallels?
    nhuser

  • HT1766 i update my phone today but i loss backup important data & there is no backup in icloud

    i update my phone today but i loss backup important data & there is no backup in icloud

    This feature is only availabe if you are currently running ios 5.
    Update as always.
    Turn on computer.
    Open itunes
    Connect iphone

  • ORA-14402: updating partition key column would cause a partition change

    Hi,
    When I am trying to execute an update statement where i am tring to update date values emp_det from 11-oct-2010 to 12-nov-2010.
    Oracle throws an error :
    ORA-14402
    updating partition key column would cause a partition change
    I think that this is because emp_det is a partitioning key of a partitioned table.
    Oracle documentation says that
    "UPDATE will fail if you change a value in the column that would move the
    row to a different partition or subpartition, unless you enable row
    movement" .
    alter table t enable row movement;
    I did not understand what is meant by "enable row movement".
    I cannot drop the partitions and recreate it after updating the table and also i don't have proper priviliges for enale row movement syntax
    because of the lack of privileges. How to solve this is issues with out row movement and recreate partition.
    Can this be done by a developer or is there any other way to execute update in this case? its urgent.. pls help..
    thanks in advance..
    By
    Sivaraman
    Edited by: kn_sivaraman on Nov 1, 2010 2:32 AM

    kn_sivaraman wrote:
    I did not understand what is meant by "enable row movement". Each partition in partitioned table is physically separate segment. Assume you have a row that belongs to partition A stored in segment A and you change row's partitioning column to value that belongs to partition B - you have an issue since updated row can't be now stored in segment A anymore. By default such update is not allowed and you get an error. You can enable row movement and Oracle will move row to target partition:
    SQL> CREATE TABLE SALES_LIST(
      2                          SALESMAN_ID NUMBER(5,0),
      3                          SALESMAN_NAME VARCHAR2(30),
      4                          SALES_STATE VARCHAR2(20),
      5                          SALES_AMOUNT NUMBER(10,0),
      6                          SALES_DATE DATE
      7                         )
      8    PARTITION BY LIST(SALES_STATE)
      9    (
    10     PARTITION SALES_WEST     VALUES('California', 'Hawaii'),
    11     PARTITION SALES_EAST     VALUES('New York', 'Virginia', 'Florida'),
    12     PARTITION SALES_CENTRAL  VALUES('Texas', 'Illinois'),
    13     PARTITION SALES_OTHER    VALUES(DEFAULT)
    14    )
    15  /
    Table created.
    SQL> insert
      2    into sales_list
      3    values(
      4           1,
      5           'Sam',
      6           'Texas',
      7           1000,
      8           sysdate
      9          )
    10  /
    1 row created.
    SQL> update sales_list
      2    set  sales_state = 'New York'
      3    where sales_state = 'Texas'
      4  /
    update sales_list
    ERROR at line 1:
    ORA-14402: updating partition key column would cause a partition change
    SQL> alter table sales_list enable row movement
      2  /
    Table altered.
    SQL> update sales_list
      2    set  sales_state = 'New York'
      3    where sales_state = 'Texas'
      4  /
    1 row updated.
    SQL> SY.

  • Updating partition key column would cause a partition change

    while i am executing this query in sql i am getting an error message saying
    that
    updating partition key column would cause a partition change
    SQL> update questionbnkmaster set sectionid=23 where qno=19;
    update questionbnkmaster set sectionid=23 where qno=19
    ERROR at line 1:
    ORA-14402: updating partition key column would cause a partition change
    what can do to update the table without changing to the other fields
    tyhanx in advance
    cinux

    try this
    ALTER TABLE questionbnkmaster ENABLE ROW MOVEMENT
    /Cheers, APC

  • HT5704 Hi, Two recent updates for my iPhone have caused crashes (down the white lead via iTunes).I have "fixed" but not sure of the cause?

    Hi,
    Two recent updates for my iPhone have caused crashes (down the white lead) via iTunes.
    I have "fixed" but I don't know the cause?
    Each time the update does n't complete.
    The download does n't happen.
    The computer & internet connection are good.
    It is as if the Apple server does n't complete?
    The phone stays in recovery mode, until you reset and rebuild in iTunes.
    All software is up to date, but I can't find the cause
    ANY IDEAS?
    Regards,
    P.
    <Email Edited by Host>

    No error messages.
    It just fails to complete the download, so recovery mode is the next step.
    This can be over a period of eight hours or more!
    I have so many (original) Apple USB leads that I would n't know if I have been using the same one (if it was faulty).
    Does this sound like a "common" problem?

  • Exported Final Cut XML from Imovie09 causes loss of Audio Sync

    I have recently upgraded to ILife09 and tried a process that always worked in ILife08 but now get Audio Sync problems.
    I have created an Imovie project that is 2hours and 50 mins long and wanted to export it to Final Cut Express as XML. This used to work 100% with Imovie08. However, with this latest version of Imovie, when exported to Final Cut Express, the first 45 mins of the XML movie is well out of sync (Audio / Visual).
    Has anyone experienced this?

    Hi Roberic,
    there is a bug in iMovie '09 that causes loss of audio sync when you use custom slow/fast motion. This has been experienced by many users. See for example this thread:
    http://discussions.apple.com/thread.jspa?messageID=9152271
    I don't know if this applies to exports to .xml but it could well be that your problem lies here. There are some workarounds, being the easiest one to only use what the slow motion slider snaps to instead of entering custom speed percentages.

  • Upgrade XF86 causes loss of X and Kde(solved)

    Upgrade this day caused loss of X and KDE.
    Reference made to shared libx11 not opened.
    Side issue:  Knoppix cannot access internet in version 3.4 or version 3.7 on the affected machine.
    Virus?

    Startx message:  error while loading shared libraries:libx11.so.6 : cannot open shared object file:  no such file or directory.

  • Application launcher update problem

    I have one user that travels between 2 sites and whenever they go to one
    site or the other they run nalexpld.exe which tells them there is a new
    version of application launcher and they must reboot. Both of these sites
    are running SP3 with a Zen patch for COMCTL32.dll on top of that so they
    SHOULD be the same.
    The user in question might spend alternate days between sites so this is
    quite annoying for them. I have done a search under NAL* in the public
    directory and some of the files are slightly different date wise.
    What files are looked at when NALEXPLD.EXE runs and can I manually copy
    across one set from one server to the other without causing a problem to
    finally get these fiels in sync.

    Simon, look at this TID:
    What files does NAL update automatically when launched?
    http://support.novell.com/cgi-bin/se...?/10054188.htm
    If all these files are at the same version on both servers, then the
    user shouldn't get the message. Also pay attention the timestamps of the
    files and the timezone settings of the servers and the workstation.
    You also use naldesk.exe instead of nalexpld.exe - it will just start
    nal without updating any files.
    Deyan
    [email protected] wrote:
    > I have one user that travels between 2 sites and whenever they go to one
    > site or the other they run nalexpld.exe which tells them there is a new
    > version of application launcher and they must reboot. Both of these sites
    > are running SP3 with a Zen patch for COMCTL32.dll on top of that so they
    > SHOULD be the same.
    >
    > The user in question might spend alternate days between sites so this is
    > quite annoying for them. I have done a search under NAL* in the public
    > directory and some of the files are slightly different date wise.
    >
    > What files are looked at when NALEXPLD.EXE runs and can I manually copy
    > across one set from one server to the other without causing a problem to
    > finally get these fiels in sync.

  • Goodnight. as you know apple has evolved considerably until today but there are people who do not have ability to buy new products. in my case I would like to know why the apple do not let the iphone 3g update to iOS 4.3 as are several applications that c

    goodnight. as you know apple has evolved considerably until today but there are people who do not have ability to buy new products. in my case I would like to know why the apple do not let the iphone 3g update to iOS 4.3 as are several applications that can not put on my iphone 3g due to this reason. Why does not Apple make a repository with applications for ios 4.2.1? or else do not work in an update to ios 4.3 on iphone 3g?

    This has nothing to do with Apple, as Apple does not make the apps.
    This is the decision of the app maker.
    Contact those app makers and ask them why they do this.

  • I updated to Mountain Lion and now my Parallels application no longer works; please help! What to do???

    I updated to Mountain Lion and now my Parallels application no longer works; please help! What to do???

    Make sure you have the latest version of parrallels. Think older versions are not compatible.

  • TS1702 I use iphone5, I see an app update on the app store. but when App store and click on the update tab, it doesn't show me which application to update.. just give me a blank page.!!!! what is the solution for this.!!!!

    I use iphone5, I see an app update on the app store. but when App store and click on the update tab, it doesn't show me which application to update.. just gives me a blank page.!!!! I wouldn't able to know what app has to be updated, untill and unless i get check for each every app on the app store installed on my iphone... what is the solution for this.!!!! can any1 one help me out.!!!!

    Cc2528 wrote:
    The iTunes Store on my iPad is set up with all my music already. And at the very bottom it shows my apple Id username. The only place it shows the previous owners id is in the App Store...
    You can probably change the ID in the "iTunes and App stores" settings on the iPad....click on the wrong account ID , select sign out, then log in with your own ID, I have not done this but I think it works.....
    but I would be more inclined to to the factory reset and start afresh.

  • Tried to check on updates for CS6 64 bit - Received message saying application manager may be damaged - download and install new copy - when I try this I receive message ERROR 404 I have a PC - any help would be gratefully received - thanks - William

    Tried to check on updates for CS6 64 bit - Received message saying application manager may be damaged - download and install new copy - when I try this I receive message ERROR 404 I have a PC - any help would be gratefully received - thanks - William

    reset your preferences:
    dreamweaver:  http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    indesign:  https://forums.adobe.com/thread/526990
    lightroom:  http://www.lightroomforums.net/showthread.php?14226-Resetting-%28or-Trashing-%29-the-Light room-Preferences-file
    photoshop:  https://forums.adobe.com/thread/375776
    if that fails, uninstall ps, clean (Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6) and reinstall.  then use the manual updates.

  • Apps icon shows updates when i go there the update all icon is not highlighted if you go to any of the UPDATE box's you are directed to the application????

    apps icon shows updates when i go there the update all icon is not highlighted if you go to any of the UPDATE box's you are directed to the application????

    ATtempt to power off your device and power it back on, if that doesn't work reset all settings should resolve it for you

Maybe you are looking for

  • SAP XI server0 stopping after trying to start

    Hi All , I'm really new to SAP , recently my SAP XI development server (Java Stack) stopped and when i check the log It gives this error when it try to start services , anyone has any idea on this ? service dbpool ================= ERROR ============

  • QuickTime/Flash (*.swf) - no sound

    QuickTime Pro 7.1.6, Flash Player 9UB New problem. Everything copacetic until in middle of class, *.swf file embedded in Keynote presentation had no sound. Visual ok, but no sound when playing *.swf files. Even if just open *.swf file in QT, visual o

  • ITunes volume control script

    With the included scripts in Mainstage, I was surprised not to find one for controlling iTunes volume. This would allow me to mix the iTunes volume from the Axiom 61 sliders while in Mainstage fullscreen. Does anyone know of an AppleScript for this p

  • Remove workbook template after migration

    Hi @ll, we have migrated all our workbooks fom 3.5 --> 7.0. In 7.0 we have created a new workbook template. How can I remove the old template from the workbook and replace it with the new one? Thanks in advance.. Regards, Flo

  • I use cs6 and am trying to get my photos to look good on a web site with a 4meg limit

    have a bunch of photos I am shareing on a web site. I regulary see chrystal clear photos in the 30-50k range but by the time I convert my Nikon raw files to jepg  then reduce them to the 4meg limit they look sorry what am I doing wrong?