NLS patch for 12.1.2 to enable ARABIC..

HI EVERYBODY,
I am a newbie to EBS
Its a new installation of 12.1.1 on OEL (5.3). Upgraded to 12.1.2 by applying patch 7303033. Forgot to apply a patch on 12.1.1 to enable ARABIC LANGUAGE. As the NLS patch should be applied on the base release. Is there anyway i can apply this patch or do i have to do reinstallation for complete application. Ur suggestions would be highly appreciated.
Regrads,

Hi,
Follow the steps in (Note: 788053.1 - Oracle Applications NLS Release Notes, Release 12.1). You may also see (Note: 252422.1 - Requesting Translation Synchronization Patches).
Regards,
Hussein

Similar Messages

  • NLS patch for EBS 12.0.6

    Hi ,
    I have a EBS 12.0.6 fresh install. Now I wanted to install japanese language and i am looking for the NLS patch number. I am able to find the 6394500 for 12.0.4. Should I use the same for 12.0.6 also. Please help.
    thanks in advance
    Kala

    Hi,
    Can you help where can I find NLS patch for Japanese Language for R12.0.4 Check Oracle e-Delivery website and/or MOS. If you could not locate the files then log a SR.
    Thanks,
    Hussein

  • NLS Language patch for Oracle12.1.1

    Hi
    I Did Oracle12.1.1 Fresh Installation
    Now I am going to apply NLS Patch.
    My Question here After Applying NLS Patch is any need to apply Translation Synchronization Patch ?
    Thanks
    With Regards
    Abu Omair Hafeez

    Hi Abu;
    >
    Now I am going to apply NLS Patch.
    My Question here After Applying NLS Patch is any need to apply Translation Synchronization Patch ?In additon to Taher please check below and see its helpful
    need help for installing R12 on Solaris 10 SPARC 64-bit
    Re: NLS patch for EBS 12.0.6
    Hope it helps
    Regard
    Helios

  • AAC/MPEG-4 support patch for abcde

    I got bored to day and made up this patch for abcde that adds support for AAC using the M4A extension.
    It uses FAAC as the encoder and also patches abcde to version 2.2.3
    I have not tested it yet so bear with me...i'll post my test results later.
    You'll have to manually add the "M4AENCOPTS=" variable to the config
    usage is: abcde -o m4a
    UPDATED: fixed a plethora of typos
    another side note is the fact FAAC must be compiled with mpeg-4 support, the Archlinux package for FAAC isn't, so therefore this could be a problem unless you compile FAAC yourself. I submitted a feature request to get mp4 support added.
    the following is the 2.2.0 to 2.2.3 update+AAC patch. I will submit a AAC patch for the newest release to the developers of abcde later on.
    --- abcde-old-2.2.0 2005-03-08 12:42:14.000000000 -0500
    +++ abcde2 2005-03-08 12:11:07.000000000 -0500
    @@ -11,7 +11,7 @@
    # Copyright for this work is to expire January 1, 2010, after which it
    # shall be public domain.
    -VERSION="2.2.0"
    +VERSION="2.2.3"
    usage ()
    @@ -21,7 +21,7 @@
    echo "-1 Encode the whole CD in a single file"
    echo "-a <action1[,action2]...>"
    echo " Actions to perform (cddb,read,normalize,encode,tag,move,playlist,clean)"
    -echo "-A Experimental actions (retag, transcode)"
    +#echo "-A Experimental actions (retag, transcode)"
    echo "-b Batch mode: enable album normalization and nogap encoding"
    echo "-c <file>"
    echo " Specify a configuration file (overrides system and user config files)"
    @@ -366,6 +366,9 @@
    mpc)
    run_command tagtrack-$1 true
    + m4a)
    + run_command tagtrack-$1 true
    + ;;
    esac
    done
    @@ -489,6 +492,10 @@
    ## FIXME ## to the encoder ends up empty.
    run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
    + m4a)
    + # AAC/MPEG-4 format (.m4a) is done locally, with inline tagging.
    + run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $M4AENCODER $M4AENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -w "$IN" -o "$OUT"
    + ;;
    esac
    done
    # Only remove .wav if the encoding succeeded
    @@ -737,6 +744,9 @@
    if [ "$INTERACTIVE" = "y" ]; then
    while [ "$DONE" != "y" ]; do
    read ERASEPLAYLIST
    + if [ "$ERASEPLAYLIST" = "" ]; then
    + ERASEPLAYLIST=e
    + fi
    case $ERASEPLAYLIST in
    e|E|a|A|k|K) DONE=y ;;
    @@ -764,7 +774,7 @@
    ARTISTFILE=$(mungefilename "$TRACKARTIST")
    # If we want to start the tracks with a given number, we need to modify the
    # TRACKNUM value before evaluation
    - if [ -n $STARTTRACKNUMBER ] ; then
    + if [ -n "$STARTTRACKNUMBER" ] ; then
    # Get the trackpadding from the current track
    CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
    TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - 1 ))
    @@ -843,7 +853,7 @@
    cdparanoia|debug)
    if [ "$WEHAVEACD" = "y" ]; then
    vecho "Querying the CD for audio tracks..."
    - TRACKS=$( $CDROMREADER -Q 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    + TRACKS=$( $CDROMREADER -d $CDROM -Q --verbose 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    CDPARANOIAAUDIOTRACKS="$TRACKS"
    else
    if [ -f "$ABCDETEMPDIR/status" ] && checkstatus cdparanoia-audio-tracks ; then
    @@ -1354,7 +1364,7 @@
    EDITCDDB=n
    fi
    if [ "$EDITCDDB" = "y" ]; then
    - CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
    + CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d" " -f1);
    # Use the debian sensible-editor wrapper to pick the editor that the
    # user has requested via their $EDITOR environment variable
    @@ -1387,7 +1397,7 @@
    # Some heuristics first. Look at Disc Title, and if it starts with
    # "Various", then we'll assume Various Artists
    - if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2 -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    + if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    echo "Looks like a Multi-Artist CD" >&2
    VARIOUSARTISTS=y
    else
    @@ -1470,7 +1480,7 @@
    echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
    if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
    - if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d " " -f 1) ]; then
    + if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d" " -f1) ]; then
    # This works but does not have the necessary error checking
    # yet. If you are familiar with the CDDB spec
    # (see http://www.freedb.org/src/latest/DBFORMAT)
    @@ -1577,7 +1587,7 @@
    WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
    OUTDATA="$ABCDETEMPDIR/track$UTRACKNUM.$OUTPUTTYPE"
    if [ -r "$CDDBDATA" ]; then
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2 -d= | tr -d [:cntrl:])
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d [:cntrl:])
    echo "Grabbing track $UTRACKNUM: $TRACKNAME..." >&2
    else
    echo "Grabbing track $UTRACKNUM..." >&2
    @@ -1692,6 +1702,7 @@
    SPEEXENCODERSYNTAX=default
    MPPENCODERSYNTAX=default
    NORMALIZERSYNTAX=default
    +M4AENCODERSYNTAX=default
    OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
    # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
    @@ -1738,6 +1749,7 @@
    SPEEXENC=speexenc
    # mpp (Musepack)
    MPPENC=mppenc
    +M4AENC=faac
    ID3=id3
    ID3V2=id3v2
    @@ -1773,6 +1785,7 @@
    SPEEXENCOPTS=
    # mpc
    MPPENCOPTS=
    +M4AENCOPTS=
    ID3OPTS=
    ID3V2OPTS=
    @@ -2039,6 +2052,7 @@
    spx) [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX=speexenc ;;
    mpc) [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX=mppenc ;;
    + m4a) [ "$M4AENCODERSYNTAX" = "default" ] && M4AENCODERSYNTAX=faac ;;
    *) echo "abcde error: Invalid OUTPUTTYPE defined" >&2
    exit 1
    @@ -2100,6 +2114,12 @@
    MPPENCODER="$MPPENC"
    esac
    +case "$M4AENCODERSYNTAX" in
    + faac)
    + M4AENCODEROPTS="$M4AENCOPTS"
    + M4AENCODER="$M4AENC"
    + ;;
    +esac
    # and which tagger
    @@ -2144,7 +2164,7 @@
    ${NEEDCOMMENTER+$VORBISCOMMENT} ${NEEDMETAFLAC+$METAFLAC}
    ${NEEDNORMALIZER+$NORMALIZER} ${NEEDEJECT+$EJECT}
    ${NEEDDISKTOOL+disktool} ${NEEDCDSPEED+$CDSPEED}
    - ${NEEDVORBISGAIN+$VORBISGAIN}
    + ${NEEDVORBISGAIN+$VORBISGAIN} $M4AENCODER
    do
    # Cut off the command-line options we just added in
    X=$(echo $X | cut -d' ' -f2)
    @@ -2207,37 +2227,6 @@
    esac
    fi
    -if [ "$STRIPDATATRACKS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
    - case "$CDROMREADERSYNTAX" in
    - cdparanoia|debug)
    - # cdparanoia can query the CD, so let's process the TRACKQUEUE list with the results.
    - if checkstatus cdparanoia-audio-tracks; then
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-audio-tracks )
    - else
    - ## FIXME ##
    - vecho "Querying the CD to obtain a list of valid audio tracks..."
    - $CDROMREADER -Q > $ABCDETEMPDIR/cdparanoia-query 2>&1
    - # Obtain a list of valid audio tracks from the results of the query
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-query | egrep '^[[:space:]]+[[:digit:]]' | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    - fi
    - # Obtain the track padding value from the before-processing list and pad the CD list
    - TRACKNUMPADDING=$( echo $TRACKQUEUE | awk '{print $1}' | tr -d " n" | wc -c )
    - for TRACK in $CDTRACKQUEUE ; do
    - TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
    - PADNEWTRACKQUEUE=$(echo $PADNEWTRACKQUEUE $TRACKNUM)
    - done
    - CDTRACKQUEUE=$PADNEWTRACKQUEUE
    - # Now, compare if the values in the list are valid tracks in the CD
    - for TRACK in $TRACKQUEUE; do
    - if echo $CDTRACKQUEUE | grep $TRACK >/dev/null ; then
    - NEWTRACKQUEUE="$NEWTRACKQUEUE $TRACK"
    - fi
    - done
    - TRACKQUEUE="$NEWTRACKQUEUE"
    - esac
    -fi
    # Create playlist if needed (backgroundable) and start reading in tracks
    @@ -2446,7 +2435,7 @@
    # TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${UTRACKNUM} + 0))
    TRACKNUM=$UTRACKNUM
    CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2 -d= | tr -d [:cntrl:] | sed 's/ +$//')
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d [:cntrl:] | sed 's/ +$//')
    splitvarious
    fi
    fi
    the patches can also be found here http://www2.rudefyet.com:8080/patch
    please post any other issues you have

    not yet, i'm going to work all the kinks out before i submit it
    as of right now I noticed some major typos, on my part, that cause it to fail...i'm working on that right now

  • Problem in applying the  6078836 OS Library Patch for Oracle HTTP Server

    Hi ,
    While installing Oracle ebusiness suite R12on a RHEL5 linux box (2.6.32-300.10.1.el5uek)
    After running the installation, the post-installation System checks revealed that the HTTP, Virtual Directory, Login Page, Help Page & JSP services were failing. All the errors have the same error code RW-50015. ! Require Installing an OS Library patch for HTTP server according to Note ID
    Oracle Applications Installation and Upgrade Notes Release 12 (12.0.4) for Linux (32-bit) [ID 402310.1]     
    I am unable to stop the Database after stopping the Apps tier services.  while trying to login into sqlplus hitting up this Error ! Please Advise
    sqlplus: error while loading shared libraries: /oracle/VIS/db/tech_st/11.1.0/lib/libnnz11.so: cannot restore segment prot after reloc: Permission denied
    [Oracle@OracleLinuxServer 11.1.0]$ cd
    sqlplus / as sysdba
    sqlplus: error while loading shared libraries: /oracle/VIS/db/tech_st/11.1.0/lib/libnnz11.so: cannot restore segment prot after reloc: Permission denied
    Following is the Output of some commands which may help in understanding the Issue !
    *[Oracle@OracleLinuxServer ~]$ cd /oracle/VIS/db/tech_st/11.1.0*
    *[Oracle@OracleLinuxServer 11.1.0]$ find / -name libclntsh\* -ls 2>/dev/null*
    *142017047 13416 -rwxr-xr-x 1 applmgr oinstall 13712482 Dec 19 01:27 /oracle/VIS/apps/tech_st/10.1.3/lib/libclntsh.so.10.1*
    *142016603 0 lrwxrwxrwx 1 applmgr oinstall 17 Dec 19 01:27 /oracle/VIS/apps/tech_st/10.1.3/lib/libclntsh.so -> libclntsh.so.10.1*
    *142443526 13400 -rwxr-xr-x 1 applmgr oinstall 13696149 Dec 19 01:28 /oracle/VIS/apps/tech_st/10.1.2/lib/libclntsh.so.10.1*
    *142443190 0 lrwxrwxrwx 1 applmgr oinstall 17 Dec 19 01:28 /oracle/VIS/apps/tech_st/10.1.2/lib/libclntsh.so -> libclntsh.so.10.1*
    *89850399 36348 -rwxrwx--- 1 Oracle oinstall 37174788 Sep 12 2008 /oracle/VIS/db/tech_st/11.1.0/inventory/prereqs/bin/linux/libclntsh.so.11.1*
    *89719502 0 lrwxrwxrwx 1 Oracle oinstall 17 Dec 18 23:33 /oracle/VIS/db/tech_st/11.1.0/lib/libclntsh.so -> libclntsh.so.11.1*
    *89719501 36276 -rwxr-xr-x 1 Oracle oinstall 37100033 Dec 18 23:33 /oracle/VIS/db/tech_st/11.1.0/lib/libclntsh.so.11.1*
    id
    uid=2000(Oracle) gid=2000(oinstall) groups=2000(oinstall) context=root:system_r:unconfined_t:SystemLow-SystemHigh
    *[Oracle@OracleLinuxServer 11.1.0]$ env|egrep 'ORA|PATH' | sort*
    LD_LIBRARY_PATH=/oracle/VIS/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/oracle/VIS/db/tech_st/11.1.0/lib:/usr/dt/lib:/oracle/VIS/db/tech_st/11.1.0/ctx/lib
    LIBPATH=/oracle/VIS/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/oracle/VIS/db/tech_st/11.1.0/lib:/usr/dt/lib:/oracle/VIS/db/tech_st/11.1.0/ctx/lib
    ORACLE_HOME=/oracle/VIS/db/tech_st/11.1.0
    ORACLE_SID=VIS
    ORA_NLS10=/oracle/VIS/db/tech_st/11.1.0/nls/data/9idata
    ORA_TZFILE=/oracle/VIS/db/tech_st/11.1.0/oracore/zoneinfo/timezlrg.dat
    PATH=/oracle/VIS/db/tech_st/11.1.0/perl/bin:/oracle/VIS/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/oracle/VIS/db/tech_st/11.1.0/appsutil/jre/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/Oracle/bin:.
    SHLIB_PATH=/oracle/VIS/db/tech_st/11.1.0/lib:/usr/lib:/oracle/VIS/db/tech_st/11.1.0/ctx/lib

    Also I 've checked the /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/ opatch_history.txt
    Find that the Patch version is same for every Patch: Please suggest..... Thanks!
    Following is the all contents of the file:
    *[Oracle@OracleLinuxServer opatch]$ vi opatch_history.txt*
    Command     : apply -verbose -silent /nfs/bld/d26/PRDXBLD9/apps/apps_st/comn/autobuild/patch/patch/7639602/7639602
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-25_23-17-01PM.log
    Date & Time : Wed Mar 25 23:18:41 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d22/AB/autobuild/passwd
    Command     : apply -verbose -silent /nfs/bld/d26/PRDXBLD9/apps/apps_st/comn/autobuild/patch/patch/7627743/7627743
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-25_23-18-41PM.log
    Date & Time : Thu Mar 26 01:23:19 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    Command     : lsinventory
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-26_01-23-19AM.log
    Date & Time : Tue Mar 31 03:13:12 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d22/AB/autobuild/passwd
    Command     : lsinventory -invPtrLoc /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/oraInst.loc
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-31_03-13-12AM.log
    Date & Time : Tue Mar 31 03:13:18 PDT 2009
    Oracle Home : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /nfs/bld/d22/AB/autobuild/passwd
    Command     : lsinventory -invPtrLoc /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/oraInst.loc
    Log File    : /nfs/bld/d26/PRDXBLD9/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2009-03-31_03-13-18AM.log
    Date & Time : Wed Dec 19 19:59:52 GMT+05:30 2012
    Oracle Home : /oracle/VIS/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /oracle/VIS/db/tech_st/11.1.0/OPatch
    Command     : lsinventory
    Log File    : /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2012-12-19_19-59-52PM.log
    Date & Time : Thu Dec 20 00:03:59 GMT+05:30 2012
    Oracle Home : /oracle/VIS/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /home/Oracle/6078836
    Command     : apply
    Log File    : /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2012-12-20_00-03-59AM.log
    Date & Time : Thu Dec 20 01:28:42 GMT+05:30 2012
    Oracle Home : /oracle/VIS/db/tech_st/11.1.0
    OPatch Ver. : 11.1.0.6.2
    Current Dir : /home/Oracle
    Command     : lsinventory -detail
    Log File    : /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2012-12-20_01-28-42AM.log

  • Central Output Server View Manager on Windows 7, need patch for jfPreview.exe

    Where can I obtain the latest version of JfPreView.exe?
    According to the following webpage:
    http://helpx.adobe.com/legacy/kb/central-central-pro-output-server-1.html
    Adobe Central and Central Pro Output Server 5.7, Windows support extended to Windows 7 (32/64 bit) and Windows Server 2008 R2 (64 bit)
    Issue 2 on this page is the problem that I am having:
    Issue 2
    View manager is a client application for Central Pro. When it is installed on Windows 7 (32/64 bit) and Windows Server 2008 (64 bit), it doesn't work properly.
    For Windows 7 and Windows Server 2008R2, IPv6 is installed and enabled by default. On a machine running the Central Preview Agent with IPv4 protocol, the Preview Agent fails to transfer the files. The Preview Agent also reports the following error in the jfserver.log.
    “Fails. Exception:  [1005] Connect to <host> failed: 10060”
    Solution
    A patch for JfPreView.exe.exe is available from Adobe enterprise support to address this issue.
    I need this patch.
    Thank you

    I have loaded KB2937636 to the server2012 wsus/sup but that still did not fix the communication issue.  I have since removed the KB2937636 from the 2012 server, because when the KB2937636 is installed on the sup server once the 7.6.7600.256 computers
    communicate with the server the WUA 7.6.7600.320 gets installed on the clients and then they stop communicating.  Very Frustrating!
    Please any help would be greatly appreciated.  
    Thanks
    ~ZbWinMan
    I have attached my WindowsUpdate.log file.  When I used CMTrace.exe you can clearly see that the computer talks fine at the beginning, then I installed WUA 7.6.7600.320 and All Communication breaks, then I uninstall to get back to 7.6.7600.256 and communication
    works again.
    If I uninstall 7.6.7600.320 then the computer communicates back to the SUP server.
    so you're using SSL? (port 8531)
    weird things might happen when in SSL if hastily configured, causing this weird error, like this for example:
    http://social.technet.microsoft.com/Forums/en-US/5d6ae350-9714-471f-aa67-375e657caa11/windows-update-cant-connect-to-wsus-server-which-happens-to-be-itself-after-switch-to-ssl?forum=winserverwsus
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • A problem with Client Security Solution patch for Mozilla Firefox3

    After I updated Client Security Solution to 8.20, the password manager cannot work in FF3 again.When I tried to reinstall the patch, it asked me whether to overwrite the files or cancel.  Then it indicates 'This patch has already been installed on this computer', but the problem exsits.

    Borntofly, I am glad that you brought this up as I have not been able to successfully use FF3 with CSS 8.1 or 8.2 and have provided feedback in this thread:
    http://forums.lenovo.com/lnv/board/message?board.id=Special_Interest_Utilities&thread.id=937&view=by...
    As much as I would like to upgrade to FF3, I have not had any success in either using the manual configuration changes noted in the above thread or by using the CSS Patch for FF3 provided by Lenovo on 8/6/08 found here:
    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-70132
    This patch appears to duplicate the manual efforts provided by member KTP in message 12 in the above provided link from what I can see.
    I have never had an issue using the TV password manager and IE7.  It is a very reliable combination.
    I have no issues at all using FF 2.0.0.16, CSS 8.1 or 8.2 (now on 8.2), and Thinkvantage (TV) Password Manager 3.00.0106.00 (came with CSS 8.2).  I have never had Lenovo Password Manager on my T60.  Everything works reliably well with this combination.
    In 3 hours of work yesterday, I was able to get TV Password Manager to show up in the FF3 add-ons as TV Password Manager 3.01 and this is the only way I was able to make it work, but only for a single browser session:
    1. Tools --> Add-Ons
    2. Disable TV Password Manager, then restart FF3
    3. Tools --> Add-Ons
    4. Enable TV Password Manager, then restart FF3
    5. TV Password Manager will work for the duration that I am using the browser session
    Once I close FF3 and reopen it, TV Password Manager no longer works.  The only method I have found to "reset" everything is to perform the above sequence, but again it only works for the single browser session.  It is very consistent.  Although in does not show this in the Add-Ons page, it almost appears that the TV Password Manager add-on is disabled after I close the browser and needs to be manually disabled then enabled as noted above.  If this is due to a conflict with other software on my laptop, I have not been able to determine this.
    In my efforts yesterday, I spent time uninstalling CSS 8.1 or 8.2, FF, and even removed registry entries related to these packages in order to start with a fresh install, all without any success.  I tried fresh installations and added the manual changes promoted by KTP and also tried fresh installations using the Lenovo patches, all without success.  I made attempts to troubleshoot to root cause by removing all add-ons except TV Password Manager, and also tried preventing certain software from installing at startup via msconfig, as well as multiple settings changes within FF3, all to no avail.  Again FF 2.0.0.16 continues to work very well with little effort on my part.  I simply install the software and ensure that TV Password Manager 2.0 in installed in the add-ons and that's it.
    In the above FF3 thread, it appears that others have had success with KTP's changes so I am a little frustrated that I cannot make FF3 and TV Password Manager work reliably.  I have FF2 and IE7 working so I have plenty of good alternatives at this time.  I will post this at the FF3 above as well to see if anyone has any feedback. 
    Moderator(s), do you wish for this thread to be integrated in the original thread for this issue?
    T60, 8744-5BU: 2.0 GHz T7200, 4 GB RAM, 15.4" WSXGA+, 1680x1050 ATI Mobility Radeon X1400, Win 7 Ultimate w/SP1 - 64-bit

  • How many Win 7 x64 Critical Patches for Sept 2012?

    Hi,
    How many Windows 7 SP1 x64 Critical Patches released by Novell for ZPM?
    We only see 2? Is that what others seeing or is something wrong on our system we did do a rest few day ago that also disabled all patches. Did anyone one else had similar experience when they did rest ZPM it hindes all patches?
    Kuru

    I have quite a few including the mentioned KB2736233(Recommended). Check to
    see how you are viewing the patches patched/not patched etc.
    MS12-063 Cumulative Security Update for Internet Explorer 7 for Windows XP
    (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 8 for Windows XP
    (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 9 for Windows
    Server 2008 R2 x64 (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 9 for Windows 7
    x64 (KB2744842)
    MS12-063 Cumulative Security Update for Internet Explorer 8 for Windows 7
    x64 (KB2744842)
    MS 2757760 Workaround for Vulnerability in Internet Explorer (Disabled) (See
    Notes)
    MS 2757760 Workaround for Vulnerability in Internet Explorer (Enabled) (See
    Notes)
    MS 982726 Outlook 2010 Junk E-mail Filter Update (September 2012) (All
    Languages)
    MS 2687407 Outlook 2007 Junk E-mail Filter Update (September 2012) (All
    Languages)
    Update Rollup for ActiveX Killbits for Windows XP (KB2736233)
    MS 2736233 Update Rollup for ActiveX Killbits for Windows 7 and Windows
    Server 2008 R2 (September 11, 2012)
    Windows Malicious Software Removal Tool - September 2012 (KB890830)
    Windows Malicious Software Removal Tool x64 - September 2012 (KB890830)
    Windows Defender Antispyware DAT Files 1.137.101.0 (September 20, 2012) (Rev
    2)
    Jim Koerner
    Server - ZCM 11.2.1 w/MU2 and Internal Database on Win2008R2x64
    Client - ZCM 11.2.1 w/MU2 on Win7SP1x64
    "Massimo Rosen" <[email protected]> wrote in message
    news:[email protected]...
    > On 26.09.2012 11:26, Shaun Pond wrote:
    >> Eumetsatzcm,
    >>
    >> I see 2
    >> MS12-063 Cumulative Security Update for Internet Explorer 8 for Windows 7
    >> x64 (KB2744842)
    >> MS12-063 Cumulative Security Update for Internet Explorer 9 for Windows 7
    >> x64 (KB2744842)
    >>
    >
    > Well, in that case indeed one is missing. Above is technically one update
    > (see identical KB Number). What's missing at least is the Updaterollup for
    > ActiveX Killbits, (KB2736233), released September 12th.
    >
    > http://technet.microsoft.com/en-us/s...visory/2736233
    >
    > There were other patches released this month, but those aren't critical
    > security patches. I'm not sure if ZPM is supposed to contain them or not.
    > Above one however needs to be there.
    >
    > CU,
    > --
    > Massimo Rosen
    > Novell Knowledge Partner
    > No emails please!
    > http://www.cfc-it.de

  • Jena Driver Patch for Oracle 11.1.0.6 is missing

    I can no longer find the Jena Driver server-side patch for Oracle 11.1.0.6. I downloaded this a month ago from OTN but the link seems to have been removed. The installation guide is still available on the Jena Adaptor documentation page but I cannot locate the actual patch: jenadrv_patch111rdf.zip. Any idea what's going on?

    We are working on putting Oracle Jena Adaptor software on Metalink. After that, those links will be re-enabled on OTN.

  • Patches for help pages on Arabic language on R12.1.1

    Hi Friends,
    I just installed Oracle Apps R12.1.1 and enabled Arabic language also.
    I am able to access the Application in Arabic but could see any help pages on Arabic.
    i got confused betwwen the patches (Patch 6746000 - Includes base Release 12.0 and 12.1.1 Online help,
    Patch 7303031 - Includes 12.1.1 Online help)
    Please let me know the list of patches to be applied to get Help pages on Arabic language on newly installed R12.1.1
    Regards,
    DB

    Hi;
    i got confused betwwen the patches (Patch 6746000 - Includes base Release 12.0 and 12.1.1 Online help,
    Patch 7303031 - Includes 12.1.1 Online help)
    I belive patch 7303031 is enough for Online help:
    Please check Note :Oracle Alert Release Notes, Release 12.1.1 [ID 566099.1] this patch strongly recomended.
    Also check:
    Oracle E-Business Suite Release 12.1.1 Maintenance Pack Installation Instructions [ID 752619.1] Section 2: Applying the Maintenance Pack
    iHELP is Not Working After The Upgrade to 12.1.1 : Topic Not Found [ID 848283.1]
    R12: Online Help / iHelp Patches [ID 783410.1]
    Regard
    Helios

  • Patch for MediaSou

    After applying the Gracenote patch for MediaSource, I am getting the following error: "MediaSource/ctcms.exe--abnormal program termination error" when trying to find CD info.
    It works but after getting info for the first CD, and you load a second CD to get info, the error will come up, and MediaSource will crash. After reopening, it will work, but it will crash each time a new CD is put in your dri've, and you have to go through the close and reopen routine.
    Is there a quick fix for this, or is this going to require a reinstall of the software.
    I do have my CD (which I'll have to dig up), as I noticed under the download page for the Sleek Photo, there is nothing there except the original firmware and the patch and a Zencast download. (As a suggestion, Creative should expand the Sleek Photo downloads somewhat).
    I also found a smaller patch from Gracenote, is this patch necessary at all, and again, is there a fix anyone knows about that doesn't require a reinstall.
    Thanks.

    micromouse wrote:
    Perhaps, you can give my earlier advice a try:
    Go to the menu "Tools->Settings". In the Audio CD/Rip tab page, did you enable "Automatically download CD information for new CD"? If so, you may want to disable this auto download of CD info. You can always click the Click Info to manually retrieve the CD info. Let us know whether this works for you.
    Note: My experience shows that it may help if you wait for a while for the CDROM dri've to "settle down" before you manually click Get Info.
    Tried it, didn't work. Not a big thing, more of an annoyance than anything.
    I used to use MediaSource to transfer files onto my device. Last night, I was transferring a hugh amount of music files using Sleek Photo Explorer, and this transfeered much faster than MediaSource, so I made a new discovery. I like the Sleek Photo Explorer, it is very useful.Message Edited by Tony3 on 09-9-2006 06:54 AM

  • NLS patch failure and afterwards...?

    Currently, System is running with R12.1.1 on RHEL 5.7
    Patch 8576725 applied for language performance as pre-requisite, and 4 languages are merged to be applied.
    Language license activated in OAM, and Maintain Multi-lingual Tables ran successfully.
    Then while applying the NLS driver for merged languages, errors came with
    AutoPatch error:
    Error copying source file to destination file.
    Source file is: /u01/patches/Language_Patches/target_merged_fi_sw_ru_lt/pa/forms/SF/PAXSUDRL.fmb
    Dest file is: /d01/oracle/stkmnfun/apps/apps_st/appl/au/12.0.0/forms/SF/PAXSUDRL.fmb
    There are some more files with the same error.
    Presumably, the error seemed caused by the lack of disk space as when I checked the disk space just several dozen of MB available at the mounted point...
    Or can there be also any other reason for this?
    If it is caused by the lack of disk space, then the question is
    When the disk space extended, can I re-run autopatch to apply the merged patch?
    What could be the right procedure for this after the disk space is extended...?
    Another question is;
    If the problem is persistent even after disk space increase, is it ok just copy those form related files from the source to the destination?
    Can anyone help me if somebody has tip for this?
    Thanks.

    Presumably, the error seemed caused by the lack of disk space as when I checked the disk space just several dozen of MB available at the mounted point...
    Or can there be also any other reason for this?How much space do you have left?
    If it is caused by the lack of disk space, then the question is
    When the disk space extended, can I re-run autopatch to apply the merged patch?Yes.
    What could be the right procedure for this after the disk space is extended...?Restart the failed workers or re-run the patch.
    Another question is;
    If the problem is persistent even after disk space increase, is it ok just copy those form related files from the source to the destination?
    Can anyone help me if somebody has tip for this?Yes, but you should not get the same error if the issue is related to the disk space.
    Thanks,
    Hussein

  • ADDT 1.0.1 Compatibility Patch for PHP 5.3

    It doesn't appear this link to Interakt's PHP 5.3 patch for ADDT 1.0.1 has been posted here yet.
    LINK: http://www.interaktonline.info/files/47-ADDT-1.0.1---PHP-5.3-compatibility-patch.html
    If you have trouble having the download dialog box open like I did, just right click on the Download File and save as.
    I had over a dozen websites developed with ADDT and this patched fix all my PHP 5.3 issues.
    I simply uploaded and replaced the 18 files that come in the patched zip.
    There is also a step-by-step guide on how to update the files on your own if you rather do that.
    GUIDE: http://www.interaktonline.info/article/42-Making-Adobe-Dreamweaver-Developer-Toolbox-compa tible-with-PHP-5.3.html

    The flavor of the Microsoft SQL Server Driver for PHP that you enabled in the php.ini file is the Thread Safe VC6 version. Therefore, you’ll need to install the appropriate version of PHP run-time (i.e. VC6 x86 Thread Safe) from http://windows.php.net/download/.
    When installing PHP, you should select the IIS/FastCGI option, and then establish a mapping between IIS and php-cgi.exe. In other words, your IIS configuration should point to the PHP CGI executable and not php5.dll that happens to be the Non Thread-Safe PHP run-time.
    Moreover, the library ntwdblib.dll is not needed anymore.
    On final note: it might be worth upgrading your IIS to at least version 6.0 that was optimized for FastCGI usage.
    Hope this helps,
    Serban
    Serban Iliescu - MSFT

  • Patch for /usr/bin/netcfg

    Hi all!
    I have submitted a bug report and made a patch for /usr/bin/netcfg, from initscripts-0.7.2-3.
    Now "netcfg --menu" works perfect with GPM enabled, so we can choose a different profile from a VC without shutting down GPM.
    Of course, "/etc/rc.d/network restart" (or start) will work too when having NET_PROFILES=(menu) in /etc/rc.conf - and executed from a VC.
    Hope it helps.
    You will find the patch and the bug report in the following link:
    http://bugs.archlinux.org/task/4916

    FANTASTIC!  Everyone who wants something add to Arch should take a leaf from your book - this is the way to get things done

  • Arabic Patch for EBS12.1.1

    Hello all
    Environment as the following win2003 R2, EBS 12.1.1 fresh install
    could you help by providing the guide lines about how to patch it to include Arabic also how to switch to Arabic numbers insted of indian.
    Regards
    horayes

    Hi Horayes,
    >
    Environment as the following win2003 R2, EBS 12.1.1 fresh install
    could you help by providing the guide lines about how to patch it to include Arabic also how to switch to Arabic numbers insted of indian.
    Please refer the Note 788053.1 :"Oracle Applications NLS Release Notes, Release 12.1 " for NLS implementation of 12.1 instance.
    To install Arabic language on ur 12.1 instance , first you need to check ur Database characterset and it should be compatible for Arabic language ( either AL32UTF8 or UTF8)
    Also you should have NLS DVD for Arabic language since it is fresh install and for rest of the details you check that NLS note.
    -RK

Maybe you are looking for

  • Need Help writing CLOB file

    I'm trying to write a servlet that receives a file upload and inserts the file into a CLOB in Oracle. Taking it one step at a time. I used the O'Reilly classes for file upload to receive the file and save it to disk. The next step of reading the file

  • Error while trying to access to the XI  tools

    Hi all, I am trying to access to the XI tools and i get the following error: 'Error 403 You are not authorized to view the requested source.' I am using a userid/pwd already created in su01 and i think it will be a issue related to roles or permissio

  • Has anyone tried plug-in JLG AutoSave for Illustrator?

    Huh?

  • Combine 2 forms in Livecycle

    I created a form to be emailed out for anexec vp. Then he decided to add a memo, but sent it in word. I have been trying to figure out how to add it as another page in my livecycle form. The closest I came was to creating a form for the memo by impor

  • In Photos years prior to 2013 not showing up

    I have photos on my device (camera roll)  that are dated prior to 2013 but in "years" view, they do not show up (no 2012 summary). Up until last couple of weeks, they were visible under "2012". is there any way to correct that?