Ntlm authenticated apps fails after 3.1.1 upgrade

I upgraded my apex instance to 3.1.1 on Friday without any issues. I can log into application builder without any problems and the version 3.1.1.00.09.
Everything in app builder works as expected. However, when I try to run my NTLM authenticated application, I get errors and the page fails to load.
Furthermore, this only happens on my 11g database.
The exact same app, using the same NTLM authentication works just fine on 10g.
The Apache errors log states:
mod_plsql: /pls/apex/f HTTP-404 ORA-03113: end-of-file on communication channel\n
mod_plsql: Unable to reset state for mode 0: Err 3114 url=>/pls/apex/f           I have PlsqlErrorStyle          DebugStyle set, so the page returns a fair amount of data.
Wed, 28 May 2008 14:07:17 GMT
ORA-03113: end-of-file on communication channel
  DAD name: apex
  PROCEDURE  : f
  URL        : http://ecydblcyorwqt03.ecy.wa.lcl:80/pls/apex/f?p=127:51:339228564056494:::::
  PARAMETERS :
  ===========
  p:
   127:51:339228564056494:::::
  ENVIRONMENT:
  ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=ecydblcyorwqt03.ecy.wa.lcl
    REQUEST_METHOD=GET
    QUERY_STRING=p=127:51:339228564056494:::::
    PATH_INFO=/f
    SCRIPT_NAME=/pls/apex
    REMOTE_HOST=
    REMOTE_ADDR=165.151.57.100
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=ECY\taus461
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
    HTTP_HOST=ecydblcyorwqt03
    HTTP_ACCEPT=text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    HTTP_ACCEPT_ENCODING=gzip,deflate
    HTTP_ACCEPT_LANGUAGE=en-us,en;q=0.5
    HTTP_ACCEPT_CHARSET=ISO-8859-1,utf-8;q=0.7,*;q=0.7
    HTTP_COOKIE=WEBWPLCS_USER=TAUS461; WEBWPLCS_LAST=04.29.2008 11:41:38; ORA_WWV_R1=%23ALL; ORA_WWV_R2=%23ALL; ORA_WWV_R3=%23ALL; ORA_WWV_REMEMBER_UN=ADMIN:webwplcs; ORACLE_PLATFORM_REMEMBER_UN=ADMIN:webwplcs; ORA_WWV_USER=3B1A5D9EA835D646; WWV_CUSTOM-F_1021906798187125_122=9F806B35C3D9AF51
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://ecydblcyorwqt03/pls/apex/f?p=4000:4150:339228564056494::NO:::
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=1211983633:165.151.5.125:6156:6252:488,0
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=NTLM  xyz
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=/pls
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=There are no invalid objects in the FLOWS schema and the page sentry function I use for NTLM is also valid.
There isn't a database connection issue since both builder and SQL Plus works.
Here is my NTLM Page Sentry which is a slightly modified version of the GreenIT version
CREATE OR REPLACE FUNCTION modNtlmPageSentry(pApexUser IN VARCHAR2 DEFAULT 'APEX_PUBLIC_USER')
RETURN BOOLEAN
IS
  vAuthenticatedUsername  VARCHAR2(512);
  vCurrentSessionId       NUMBER;
  l_cnt binary_integer :=0;
BEGIN
  -- Get Authenticated User.
  vAuthenticatedUsername := UPPER(owa_util.get_cgi_env('REMOTE_USER'));
  vAuthenticatedUsername := substr(vAuthenticatedUsername,instr(vAuthenticatedUsername,'\')+1);
  if to_char(v('APP_ID')) = '127' -- WebWPLCS
  then
       apex_util.set_session_state('P18_USERNAME',vAuthenticatedUsername);
  elsif to_char(v('APP_ID')) = '124' --TMS
  then
  -- check to see if they are a listed TMS manager or overall admin
      select sum(cnt) into l_cnt
      from (
           select count(0) cnt
           from tms_managers
           where username=vAuthenticatedUsername
           union
           select count(0) cnt
           from tms_admin
           where username=vAuthenticatedUsername
           union
           select count(0) cnt
           from web_admin
           where username=vAuthenticatedUsername
      if l_cnt < 1
      then
     return FALSE;
      end if;
  end if;
  -- Check to ensure that we are running as the correct database user.
  IF USER ^= UPPER(pApexUser) THEN
    RETURN FALSE;
  END IF;
  IF vAuthenticatedUsername IS NULL THEN
    RETURN FALSE;
  END IF;
  -- Get SessionId.
  vCurrentSessionId := wwv_flow_custom_auth_std.get_session_id_from_cookie;
  -- Check Application Session Cookie.
  IF wwv_flow_custom_auth_std.is_session_valid THEN
    apex_application.g_instance := vCurrentSessionId;
    -- Check Authenticated User --> Username from wwv_flow_session$ for
    --   current Session.
    IF vAuthenticatedUsername = wwv_flow_custom_auth_std.get_username THEN
      wwv_flow_custom_auth.define_user_session(p_user => vAuthenticatedUsername,
        p_session_id => vCurrentSessionId);
      RETURN TRUE;
    ELSE
      -- Unset the Session Cookie and redirect back here to take other branch.
      wwv_flow_custom_auth_std.logout(p_this_flow => v('FLOW_ID'),
        p_next_flow_page_sess => v('FLOW_ID') || ':' || NVL(v('FLOW_PAGE_ID'), 0)
        || ':' || vCurrentSessionId);
      -- Tell Apex Engine to quit.
      apex_application.g_unrecoverable_error := TRUE;
      RETURN FALSE;
    END IF;
  ELSE
    -- Application Session Cookie not valid --> Define a new Apex Session.
    wwv_flow_custom_auth.define_user_session(p_user => vAuthenticatedUsername,
      p_session_id => wwv_flow_custom_auth.get_next_session_id);
    -- Tell Apex Engine to quit.
    apex_application.g_unrecoverable_error := TRUE;
    IF owa_util.get_cgi_env('REQUEST_METHOD') = 'GET'  THEN
      wwv_flow_custom_auth.remember_deep_link(p_url => 'f?' ||
        wwv_flow_utilities.url_decode2(owa_util.get_cgi_env('QUERY_STRING')));
    ELSE
      wwv_flow_custom_auth.remember_deep_link(p_url => 'f?p=' ||
        TO_CHAR(apex_application.g_flow_id) || ':' ||
        TO_CHAR(NVL(apex_application.g_flow_step_id, 0)) || ':' ||
        TO_CHAR(apex_application.g_instance));
    END IF;
    -- Register the Session in Apex Sessions Table, set Cookie, redirect back.
    wwv_flow_custom_auth_std.post_login(p_uname => vAuthenticatedUsername,
      p_session_id => nv('APP_SESSION'), p_flow_page => apex_application.g_flow_id
      || ':' || NVL(apex_application.g_flow_step_id, 0));
    RETURN FALSE;       
  END IF;   
END modNtlmPageSentry;Does anyone have any ideas on where to look next?
Regards, Tony
<b>Update</b>
For kicks, I added the page sentry function to the list in the <b>wwv_flow_epg_include_mod_local</b> function.
I bounced both the HTTP Server and the database.
None of these actions solved the problem.

Joel -
The alert log states that there is a 7445 error now from Apache
host_id='ECYDBLCYORWQT01' host_addr='165.151.5.123' module='Apache.exe'
pid='416'>
<txt>Exception [type: ACCESS_VIOLATION, UNABLE_TO_READ] [ADDR:0x0] [PC:0x69A2AB3, _pfrinstr_BRNCCOND()+39]
msg_id='1422874948' type='INCIDENT_ERROR' group='Access Violation'
level='1' host_id='ECYDBLCYORWQT01' host_addr='165.151.5.123'
prob_key='ORA 7445 [pfrinstr_BRNCCOND()+39]' upstream_comp='' downstream_comp=''
ecid='' errid='12252' ORA-07445: exception encountered: core dump [pfrinstr_BRNCCOND()+39] [ACCESS_VIOLATION] [ADDR:0x0] [PC:0x69A2AB3] [UNABLE_TO_READ] []The trace file just states the same 7445 error:
ORA-07445: exception encountered: core dump [pfrinstr_BRNCCOND()+39] [ACCESS_VIOLATION] [ADDR:0x0] [PC:0x69A2AB3] [UNABLE_TO_READ] []The incident trace file states that the current SQL was:
----- Current SQL Statement for this session (sql_id=bng4udk9mvtsh) -----
declare function x return boolean is begin
return mergedwplcs.modNtlmPageSentry; return false; end;
begin
wwv_flow.g_boolean := x; end;
----- PL/SQL Stack -----
----- PL/SQL Call Stack -----
  object      line  object
  handle    number  name
2B6ACD34      1020  package body FLOWS_030100.WWV_FLOW_CUSTOM_AUTH_STD
2B6ACD34       662  package body FLOWS_030100.WWV_FLOW_CUSTOM_AUTH_STD
2B6BB44C        59  function MERGEDWPLCS.MODNTLMPAGESENTRY
2B6BBD1C         2  anonymous block
2B6BBD1C         4  anonymous block
2B6BC674      1815  package body SYS.DBMS_SYS_SQL
2B6BD29C       296  package body SYS.WWV_DBMS_SQL
2B70B5D0      1352  package body FLOWS_030100.WWV_FLOW_SECURITY
2B70B5D0      1158  package body FLOWS_030100.WWV_FLOW_SECURITY
2B71BA2C      8847  package body FLOWS_030100.WWV_FLOW
2B72FB04       255  procedure FLOWS_030100.F
2B7E4F1C        31  anonymous blockWhich makes sense given that I was trying to log into the application. All of these functions and packages are valid.

Similar Messages

  • HT4528 Instragram app failed after the latest upgrade.

    My instragram app failed after i installed the lastest update...help!!

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps BEFORE doing the reset.
    You might try deleting and reinstalling the app
    Contact the app vendor

  • ISE 1.2 patch 6 - All Authentications begin failing after about 20 minutes

    Hi all,
    Another strange one I am throwing out to the forum. Basically I have a 5 node deployment (1 x Primary Admin, 1 x Primary Monitoring, 1 x Secondary Admin/Monitoring and 2 x Policy Nodes). The primary authentication method is EAP-TLS or PEAP for wireless only. The deployment in question has been in pilot for about 3 weeks with no issues what so ever.
    As of this morning we rolled into production and all seemed well - about 100 users successfully authed against PSN1 (PSN2 is configured in the WLC as a secondary radius). About 30 minutes after the production rollout authentications began failing for the exact same reason (see attached radius log). I checked all of the certificates as recommended in the log but this was a matter of course in that everything is as it should be.
    My next step was to essentially stop PSN1 (application stop ise) to see if the issue was a problem on the second PSN. All authentications were now succeeding via PSN2. I left it this way for 30 minutes with no drama. I started PSN1 again and authentications began to work....20 minutes later the issue was back. I replicated this issue again to be sure.
    At this point I decided to deregister PSN1 and application reset the node before rejoining with the ISE deployment. Authentications worked well until about 30 minutes later when the issue reappeared. At this point I reloaded all nodes in the ISE deployment to see if this made a difference but the issue still remained.
    Currently I have PSN1 shutdown and all is functioning well - anyone have any ideas??

    I got this fixed via TAC. Basically the following is the bug but it is worth noting that this deployment was a fresh build of 1.2
    https://tools.cisco.com/bugsearch/bug/CSCuj17272/?reffering_site=dumpcr
    Symptom:
    all auth fails when using the existing identity source sequences after upgrade from 1.1.3 to 1.2.
    Conditions:
    upgrade from 1.1.3 to 1.2 build 899 breaks all auth using identity sequences.
    Basically the fix was to recreate my ID sequences and reapply to the authentication policy. This fixed the issue on the policy node in question.

  • Clone to DEV fails after JRE plug-in upgrade to 1.7.0_75

    DB - 11.2.0.3 - zLinux - s390
    APP - 12.1.3 - Suse Linux - x86_64 - SP2
    We're attempting to clone from our PROD environment to one of our DEV environments - and the clone steps fail.After laying the filesystem down, I run
    perl adcfgclone.pl appsTier
    and I receive the error......
    sh: /ds01/mclebs/SID/apps/apps_st/comn/clone/bin/../jre/bin/java: No such file or directory
    Then based a note I saw online, I rename java executable to java_old and create a symbolic link to the location of java (/usr/bin/java)
    Then I try running the clone step (perl adcfgclone.pl appsTier) again
    This time I receive the following errors in the ApplyAppsTier_05011354.log file as shown below.......
    Started ApplyAppsTier at Fri May 01 13:54:38 CDT 2015
    Version:
      ApplyAppsTier.java : 120.4
    # Calling ApplyAppsTechStack...
    Executing runInstallDriver...
    Started unzipping files...
    Completed runInstallDriver.
    Executing home registration for s_weboh_oh...
    Registering using Registration Driver
    /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/driver/regclone.drv
    instantiate file:
       source : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/template/adouiweboh.pl
       dest   : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl
       backup : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl to /dl01/mclebs/$SID/inst/apps/$SID_$HOSTNAME/out/ouicli.pl
       setting permissions: 700
       setting ownership: applmgr:ebsapps
    instantiate file:
       source : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/template/adlnkweboh.sh
       dest   : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh
       backup : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh to /dl01/mclebs/$SID/inst/apps/$SID_$HOSTNAME/out/adlnkweboh.sh
       setting permissions: 700
       setting ownership: applmgr:ebsapps
    instantiate file:
       source : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/template/txkstubcfg1013.pl
       dest   : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl
       backup : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl to /dl01/mclebs/$SID/inst/apps/$SID_$HOSTNAME/out/txkstubcfg1013.pl
       setting permissions: 700
       setting ownership: applmgr:ebsapps
    instantiate file:
       source : /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/template/apachectl_sh_1013_oh.tmp
       dest   : /ds01/mclebs/$SID/apps/tech_st/10.1.3/Apache/Apache/bin/apachectl
       backup : /ds01/mclebs/$SID/apps/tech_st/10.1.3/Apache/Apache/bin/apachectl to /dl01/mclebs/$SID/inst/apps/$SID_$HOSTNAME/out/apachectl
       setting permissions: 700
       setting ownership: applmgr:ebsapps
    Executing script in InstantiateFile:
    /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/bin/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /ds01/mclebs/$SID/apps/apps_st/appl/au/12.0.0/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl
    RC-50208: Exception  in method TimedProcessProcess.run
    Raised by oracle.apps.ad.util.TimedProcess$TimedProcessProcess: java.io.IOException: Cannot run program "/ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/bin/perl": java.io.IOException: error=2, No such file or directory
    script returned:
    Exception in TimedProcess...Failed to  execute command = /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/bin/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /ds01/mclebs/$SID/apps/apps_st/appl/au/12.0.0/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl -nopromptmsg****************************************************
    Executing script in InstantiateFile:
    /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/adlnkweboh.sh
    script returned:
    adlnkweboh.sh started at Fri May  1 13:54:41 CDT 2015
    Log file located at /dl01/mclebs/$SID/inst/apps/$SID_$HOSTNAME/logs/ora/10.1.3/install/make_05011354.log
    Error while running adlnkweboh.sh.
      return code = .9
    Please check logfile located at /dl01/mclebs/$SID/inst/apps/$SID_$HOSTNAME/logs/ora/10.1.3/install/make_05011354.log
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/bin/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /ds01/mclebs/$SID/apps/apps_st/appl/au/12.0.0/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl
    RC-50208: Exception  in method TimedProcessProcess.run
    Raised by oracle.apps.ad.util.TimedProcess$TimedProcessProcess: java.io.IOException: Cannot run program "/ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/bin/perl": java.io.IOException: error=2, No such file or directory
    script returned:
    Exception in TimedProcess...Failed to  execute command = /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/bin/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /ds01/mclebs/$SID/apps/apps_st/appl/au/12.0.0/perl -I /ds01/mclebs/$SID/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /ds01/mclebs/$SID/apps/tech_st/10.1.3/appsutil/clone/txkstubcfg1013.pl -nopromptmsg****************************************************

    Hi,
    Have you checked the file location of the executable - java and perl.
    Check the file permissions.
    export PATH for the JAVA/perl and retry.
    Regards,
    Krish

  • SYSADMIN login failing after 12.0.6 upgrade

    Hi All,
    I had upgrade apps to 12.0.6 from 12.0.4 on HP UX . My SYSADMIN login is failing after this whereas other user logins are fine.
    Can someone give any clue on this.
    Thanks,
    Bharath.

    Hi,
    I had upgrade apps to 12.0.6 from 12.0.4 on HP UX . My SYSADMIN login is failing after this whereas other user logins are fine.
    Can someone give any clue on this.What is the error? Any details in Apache log files?
    Please verify that the SYSADMIN user is not end-dated. Also, change the password of the SYSADMIN user using FNDCPASS (or from the application) and see if you can login then.
    Note: 423274.1 - How To Change The Password For The SYSADMIN User
    Note: 437260.1 - How to Change Applications R12 Passwords using Applications Schema Password Change Utility (FNDCPASS)?
    Regards,
    Hussein

  • Stack Underflow and Archive Install fail after 10.4.9 upgrade

    After performing the 10.4.9 upgrade on my Black MacBook Core Duo, each of the Microsoft Office Applications (Word, Excel, Entourage, Power Point, and Office Updater and Office Installer) all abort on activation. The System Log indicates a stack underflow:
    Mar 24 11:36:38 Arakis /Applications/Microsoft Office 2004/Microsoft Word: CGGStackRestore: gstack underflow.
    Attempts to reinstall office fail. Drag and Drop method and Using Office Installer App both fail. The Installer App also aborts with the same error.
    After speaking with Microsoft Support and trying their suggestions for removing prefrence files and MS user directory, all fail with the same results. Last Microsoft reccomendation is to perform Archive and Install, and upgrade only to 10.4.8 using combo update.
    So I Cloned my boot disk before performing Archive and Install (and it's a good thing too).
    I started the Archive and install, and all went well until disk 2, specifically while it was installing iLife demo. When it said two minutes remaining, it froze. Last log entry indicates "specified processes cannot be found". I left it to continue overnight (about 8 hours). It was in the same state in the morning. So I forced a Power down and restarted. It requested disk 1 and began the Archive and Install again, with the same results.
    I was able to boot off my external clone and restore my boot disk. I am now back to 10.4.9, and Office apps still abort with stack underflow.
    One other point. I have a G4 iMac, A Dual G5 Power Mac, and a G5 Mac Mini, all with 10.4.9 and MS Office, and they all work fine. Problem only seems to be on DualCore MacBook, and only Microsoft Office Apps. MS messenger and MS Remote Desktop Client for MAC work. All other apps (apple and 3rd party) also work OK.
    One last thing. After 10.4.9 upgrade, Finder quite often crashes when right clicking or Cotrol-clicking on files or folders in finder windows. Looking at crash dump indicates that this is an unrelated issue, which I will address later, in another rpost.
    Are there any suggestions on how to sucessfully perform an archive and Install? Is it possible to disable the install of optional software like iLife demo? Any other suggestions would be appreciated.
    Jeff Cameron
    DualCore MacBook   Mac OS X (10.4.9)  

    After spending a bit of time, researching this problem, it seems I have been bit by the dyldupdateprebinding bug while updating to 10.4.9. This is outlined in the article located at:
    http://www.unsanity.org/archives/macos_x/shock_andawe.php
    However I am still unable to repair my problem by performing an Archive and install (possibly because of the dyldupdateprebinding). So if anyone can help me do the Archive & install without installing the iLife demo, or any of the optional software, I would be most appreciative.
    Jeff

  • Matlab script in LV6.1 built app fails after upgrade to Matlab 7 (R14).

    The LV6.1 built app, running under LV6.1 runtime, successfully invokes Matlab script server, R13. After Matlab upgrade to R14, the script server fails to activate. Use of the newest matscript.dll download is not a satisfactory solution, since it fails on systems still running Matlab R13. Is there a universal fix for this problem? I have already checked the related postings.

    voraciousniuser wrote:
    > Hey Joxyl! I think the reason why we are not able to do this on R14 is
    > because Mathworks has modified its ActiveX interface -- I dont know if
    > NI has a fix for it yet, but probably the way to go would be to use
    > the previous release. I hope NI brings out a patch for it soon. Hope
    > this helps -- Thanks VNIU
    This fix has been released just recently and announced in several
    threads on this forum yesterday.
    href="http://exchange.ni.com/servlet/ProcessReques​t?RHIVEID=101&RPAGEID=135&HOID=506500000008000000F​4E80000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEAR​CHCONTEXT_QUESTION_0=matlab+script+7.0&USEARCHCONT​EXT_QUESTION_S=0">this
    thread for more information.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • CSS: "authentic​ation failed" after successful fingerprin​t authentica​tion - twice!

    T61p
    CSS: 8.10.0006.00
    Vista 32 Ult
    After successful fingerprint login, CSS states that the Windows password had been changed (it hasn't) and then asked me to verify that the CSS password matched my Windows password; this failes, even though the password entered is correct. This dialog pops up until it is cancelled.
    I've also lost the ability to use my fingerprint reader to login to websites, it says that
     - the print is okay, with that green checkmark, but then
     - proceeds to say "authentication failed"
    The password manager does not show up any more if started.
    @ lenovo: any ideas, this is a very annoying one! And it is old, I think. Any ideas, before I go and buy
        an  Apple?
    Moderator Note; please update your profile with your correct country location as per the forum rules. Products, options and services vary from market to market. Knowing your location helps us help you
    Message Edited by andyP on 06-21-2008 09:54 PM

    I have the same issue here.
    The fingerprint software is working perfectly and it is properly linked with the Windows password so I can logon with no problems. However, right after I get the message the password has been changed when it hasn't.
    The issues start when I need to use the Thinkvantage Password Manager or any other CCS applications. It does recognize my finger but it says "authentication failed".
    I have emailed Lenovo and they recommended me to removed the CCS and the fingerprint software. I did it and it didn't work. Then they said I should take my laptop to a service center because it is no longer in warantee period.
    In my case, all these issues began when I updated the CCS to the newer version (8.2)
    I have read in other forums that it has to do with TPM or security chip encryption. It seems the CCS has not taken control over it. They state all will be fixed once the chip is clear which is done thru the BIOS>Security Chip>Clear Encryption. The big problem is that all encrypted data is erased in the process!!!
    I have used the password manager for so long now with no problems that I have forgotten most of the keywords.
    T60
    Vista Ultimate 32 bits
    CCS 8.2

  • Mail.app fails after a few minutes

    I've gat a really annoying Mail.app behaviour.
    The setup:
    Mac OS X 10.4.10 server with Xserve RAID (broken mirror ...)
    Mac OS X 10.4.10 client
    user has home directory on the RAID auto-mounted per afp
    Mail.app V2.1
    The app is run on the client, the home directory from/to which it reads/writes data is on the server.
    Mail will start fine, then, after the first successful read of all imap accounts (the mails from there are visible and accessable), it will sooner or later barf at me, complaining that the home direcrory is full and that it cannot access any files. (After which I can [and do] quit or retry.) Or, that there are lock files.
    The home directory is definitively not full (89% disk usage on the server). I have removed the Envelope Index-journal file several times (the presence of this will prevent mail from fetching new mail from the imap servers) and have also removed the Envelope Index file, letting Mail.app rebuild all indexes. The problem just keeps re-occuring! There is no other user on this account.
    It could be a network problem, as our network compontens have been acting up lately, but I'd be interested to know if others are also experiencing this kind of thing.
    Robert

    I've gat a really annoying Mail.app behaviour.
    The setup:
    Mac OS X 10.4.10 server with Xserve RAID (broken mirror ...)
    Mac OS X 10.4.10 client
    user has home directory on the RAID auto-mounted per afp
    Mail.app V2.1
    The app is run on the client, the home directory from/to which it reads/writes data is on the server.
    Mail will start fine, then, after the first successful read of all imap accounts (the mails from there are visible and accessable), it will sooner or later barf at me, complaining that the home direcrory is full and that it cannot access any files. (After which I can [and do] quit or retry.) Or, that there are lock files.
    The home directory is definitively not full (89% disk usage on the server). I have removed the Envelope Index-journal file several times (the presence of this will prevent mail from fetching new mail from the imap servers) and have also removed the Envelope Index file, letting Mail.app rebuild all indexes. The problem just keeps re-occuring! There is no other user on this account.
    It could be a network problem, as our network compontens have been acting up lately, but I'd be interested to know if others are also experiencing this kind of thing.
    Robert

  • Phone/Message/IE app failing after the update

    After today's OTA update I can't open the phone/message/ie app, I then reset my phone but the updates are still there. When receiving a phone call the phone just freezes and restarts. What should I do?? Thanks.

    Nevermind.. It turns out that the phone language has to be set to English...

  • Multiple apps failing after update to OS 10.6.8

    Process:         iTunes [2521]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         ??? (???)
    Build Info:      iTunes-1113011001003008~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [208]
    Date/Time:       2013-11-11 23:09:19.040 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          32639 sec
    Crashes Since Last Report:           3269
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      955517FE-D862-4E17-862B-14587CD541E3
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
      Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <67866EA0-11AD-E175-066C-48E996265855> /usr/lib/dyld
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545032B9A302, 298.09 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: My Passport 0748, 0x1058  (Western Digital Technologies, Inc.), 0x0748, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: USB Flash Memory, 0x0930  (Toshiba Corporation), 0x6544, 0xfa130000 / 6
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4

    Process:         iTunes [2521]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         ??? (???)
    Build Info:      iTunes-1113011001003008~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [208]
    Date/Time:       2013-11-11 23:09:19.040 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          32639 sec
    Crashes Since Last Report:           3269
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      955517FE-D862-4E17-862B-14587CD541E3
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
      Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <67866EA0-11AD-E175-066C-48E996265855> /usr/lib/dyld
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545032B9A302, 298.09 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: My Passport 0748, 0x1058  (Western Digital Technologies, Inc.), 0x0748, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: USB Flash Memory, 0x0930  (Toshiba Corporation), 0x6544, 0xfa130000 / 6
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4

  • Mail.app fails after 10.6.5 update

    upgraded to OSX 10.6.5 along with iTunes 10.1.1
    error on launch:
    11/14/10 1:28:25 PM [0x0-0x3d03d].com.apple.mail[609] dyld: Library not loaded: /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    Fix:
    Manually downloaded and installed OSX 10.6.5. After restart all worked fine.

    Reapplied OSX 10.6.5

  • 802.1x Authentication has Failed after snow leopard upgrade

    Hello Apple Community,
    I have a mid 2009 MacBook 4 GB of RAM on INTEL CORE DUO 2.
    I upgraded my OS X to 10.6 from 10.5.8 and after completing the upgrade I have not been able to use my Airport. Can anyone help me get this problem fix?
    Paul

    what is it saying? is there an error?
    Maybe take a look at
    http://www.esecurityplanet.com/views/article.php/3899996/How-to-Use-Enterprise-W iFi-Encryption-and-8021X-in-Mac-OS-X.htm

  • Telegraph App failing after iphone4 download

    Anyone help, since downloading iPhone 4 upgrade to my 3GS the Telegraph App opens for a couple of seconds and then vanishes taking me back to my main screen. Is this the download or an App fault with Telegraph?

    Hi Mate,
    Alot of the apps need to be tweaked to work on the OS4. This may be the case. If you have any apps that have recently been updated, try them and you will be able to test if theres any issues.

  • Cannot install apps from App Store after iOS 7.04 upgrade

    Hi everyone
    I am new to iPad and Apple, and wonder if someone can please help me with this problem. I upgraded to iOS 7.04 yesterday, and today I cannot install any new apps from the App Store. Before the upgrade I could do this no problem. The 2 apps I am trying to download are free ones - eBay and Yahoo Mail.
    I have tried to search for a solution in the discussions on here, but have only found threads from Sept 13, which point to Apple's servers being overloaded and people should wait until after the hubbub of the recent upgrade has died down. As it's now Feb 14, I would have thought things would be ok now, so feel my problem maybe nothing to do with that.
    Two other bits of advice I found, I have also checked...... The date and time in settings are correct, and I believe I am signed in (but only because a 'sign in' is not showing so that's my assumption). The only advice I have not tried is hitting reset on my iPad as I'm nervous of loosing my stuff.
    When I go into the App Store, select the app I want, click 'free' and then 'install', the blue spinning arrow appears. I leave it to install, but when I check later, it's still spinning. I've even left it a good 15 mins, which for those 2 apps would be way more time than needed.
    Has anyone else has this same problem, and successfully found a solution? I would really appreciate some advice please.
    Thanks, Vikki

    Try this, press and hold both the home and power buttons 10-15 seconds till the Apple logo appears. Release both buttons. Wait 15-20 seconds till your iPad starts on it's own. If they don't download at least the timer should stop.

Maybe you are looking for

  • Font not appearing in illustrator

    HAPPY NEW YEAR to everyone!  I have downloaded the free font Baveuse and installed it in my Font Book .. using a Mac, 10.8.2.  Font appears in photoshop but not illustrator.  I have validated the font, shut down illustrator, shut down the computer bu

  • Use XML Node Value as Node name and as attribute name

    im quite new to XML and XLST. I got an Open Office XML file that I transformed with XLST. <?xml version="1.0" encoding="UTF-8"?> <ooo_calc_export scriptVersion="2.2.0" scriptUpdate="2010-12-19" scriptURL="http://www.digitalimprint.com/misc/oooexport/

  • How to access a samba share?

    Hi everyone I tried setting up a diskless folding comp to push out a few more PPD, which I did succesfully. On my windows comp when I go to Network Places I can see it in the group "Diskless" I downloaded fahmon to see if I could monitor it, and all

  • OracleXMLQuery

    I am using a set of PL/SQL packages to maintain business logic. The PL/SQL packages return nested tables to Java Beans which interact with JSP's. I am having problems in Java when I get the oracle.sql.ARRAY and get the ResultSet to create an OracleXM

  • Acrobat CC auf OS X 10.9.3 startet nicht mehr -

    oder im Besten Fall nur sehr langsam (-> Regenbogenrad). Was kann das Problem sein? Ich habe das CC-Update vor 4 Tagen installiert – hängt das evtl. damit zusammen? Wenn ich PDFs mit der Leertaste anzeigen lasse, habe ich den gleichen Effekt. Hat son