Content analyser nd browser

hi...
wat is the functionality of content analyser nd content browser..plz explain with the definition, t.codes nd the navigation.
thanks in adv
regards
madhuri

Hi Roger,
you may of course find an answer here.
But mySAP PLM DMS is not a focus topic here (besides maybe connecting it into the SAP Portal and KM). Thus, you may be better off using a contact or a message to PLM.
Regards, Karsten

Similar Messages

  • Some Java applets do not work after silent installation, solved by toggling "Enable Java content in the browser" - Why?

    We have about 1,800 workstations running Windows 7 (both 32-bit and 64-bit) running various versions of the Java JRE from 6 update 32 through 7 update 51.  Most are on 6 update 45.  We would like to standardize on Java 7 update 51 (32-bit) and get everyone updated to that version for security reasons.
    For the past two weeks, we have been having trouble with our installation pre-pilot.  What we are seeing is that our procedure successfully closes any open Internet Explorer windows and Java-related processes, uninstalls all old versions of the Java JRE, and then claims to have successfully installed Java 7 update 51.  The Java Control panel works.  We can even take Internet Explorer to Verify Java Version or Java Tester - What Version of Java Are You Running? and confirm that the Java applets on those sites are loading (though the latter only works after adding the site to the exceptions site list); however, when testers try to access our Kronos Workforce Central 6.3.10 system, the Java applets used by that system do not load.
    We have tried the following things, none of which worked:
    Clear Internet Explorer browser cache and cookies.
    Clear the local Java cache.
    Reboot the computer.
    Reset Internet Explorer settings, including personal settings.
    The one thing which does work is going into the Java Control Panel, going to the Security tab, unchecking "Enable Java content in the browser", pressing Apply, pressing OK on the pop-up window, checking the "Enable Java content in the browser" box again, pressing OK, pressing OK on the pop-up window, and then restarting Internet Explorer.  It is only after this point that all Java applets, including the ones used by Kronos Workforce Central 6.3.10, work.
    What I need to know is how I can automate the procedure of reinitializing the "Enable Java content in the browser" checkbox after installation or am I doing something wrong or missing a step in the automated installation that is causing this to happen?
    We are using Microsoft SCCM 2007 R3 to accomplish this upgrade, and everything is being run on the client machine using the SYSTEM account.  First, the PowerShell script "javaclean.ps1" is run, with part of the command-line process changing the PowerShell script execution policy to Bypass.  This script handles the closing of Java-dependent applications and Java processes and uninstalls old Java versions.
    javaclean.ps1:
    #Find all Java products excluding the auto updater which actually gets uninstalled when the main install is removed.
    write-host "Searching for all installed Java versions" -ForegroundColor Yellow
    [array]$javas=Get-WmiObject -query "select * from win32_Product where (Name like 'Java %' or Name like 'Java(TM)%' or Name like 'J2SE%') and Name <> 'Java Auto Updater'"
    if ($javas.count -gt 0)
        write-host "Java is already Installed" -ForegroundColor Yellow
        #Get all the Java processes and kill them. If java is running and the processes aren't killed then this script will invoke a sudden reboot.
        [array]$processes=Get-Process -Name "Java*" #-erroraction silentlycontinue
        $processes += Get-Process -Name "iexplore" #-erroraction silentlycontinue
        $processes += Get-Process -Name "firefox" #-erroraction silentlycontinue
        $processes += Get-Process -Name "chrome" #-erroraction silentlycontinue
        $processes += Get-Process -Name "jqs" #-erroraction silentlycontinue
        $processes += Get-Process -Name "jusched" #-erroraction silentlycontinue
        $processes += Get-Process -Name "jp2launcher" #-erroraction silentlycontinue
        if ($processes.Count -gt 0)
            foreach ($myprocess in $processes)
                $myprocess.kill()
        #Loop through the installed Java products.
        foreach($java in $javas){
            write-host "Uninstalling "$java.name -ForegroundColor Yellow
            $java.Uninstall()
    After this script is complete, SCCM calls a the VBS script "install.vbs" to perform the actual installation of Java JRE 7 update 51.
    install.vbs
    '* Script: Install JRE 7 routine
    '* Date:   3/14/14
    '* Author: [REDACTED]
    '* Rev:    1.0
    '* Notes: 
    '/// Common
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objWshShell = CreateObject("WScript.Shell")
    ' Get system architecture
    Dim colSys : Set colSys = GetObject("WinMGMTS://").ExecQuery("SELECT AddressWidth FROM Win32_Processor",, 48)
    Dim objSys
    For Each objSys In colSys
        If objSys.AddressWidth = 64 Then bolIs64Bit = True
    Next
    ' Get operating system
    Dim colOS : Set colOS = GetObject("WinMGMTS://").ExecQuery ("Select * from Win32_OperatingSystem",,48)
    Dim objOS
    For Each objOS In colOS
        If Left(objOS.caption, 20) = "Microsoft Windows 8 " Then
            bolIsWin8 = True
            WScript.Echo "win8"
        End If
        If Left(objOS.caption, 22) = "Microsoft Windows 8.1 " Then
            bolIsWin81 = True
            WScript.Echo "win81"
        End    If
    Next
    ' Set 32 bit program files directory
    If bolIs64Bit = True Then
        strPFILES = "Program Files (x86)"
        strSYSDIR = "SysWOW64"
        Else strPFILES = "Program Files"
        strSYSDIR = "System32"
    End If       
    ' Set windows directory
    strWIN = objWshShell.ExpandEnvironmentStrings("%windir%")
    ' Set the current directory
    strCurrentDir = objFSO.GetParentFolderName(Wscript.ScriptFullName)
    ' Set computer name
    strCompName = objWshShell.ExpandEnvironmentStrings("%computername%")
    '/// Main script
        '/// Install via .msi & capture exit code
        'intExitCode = objWshShell.Run("msiexec.exe /i """ & strCurrentDir & "\package.msi""" & " TRANSFORMS=""" & strCurrentDir & _
        '    "\transform.mst"" ALLUSERS=1 Reboot=ReallySuppress /qn", 8, True)
        'wscript.quit(intExitCode)
        '****RUN COMMANDS HERE****
        ' Create folder structure if it doesn't exist already   
        strFullPath = "c:\Windows\Sun\Java\Deployment" '
        ' How many levels are there in the path?
        nLevel = 0
        strParentPath = strFullPath
        Do Until strParentPath = ""
            strParentPath = objFSO.GetParentFolderName(strParentPath)
            nLevel = nLevel + 1
        Loop
        For iLevel = 1 To nLevel
            ' Figure out path for directory at level iLevel
            strParentPath = strFullPath
            For j = 1 To nLevel - iLevel
                strParentPath = objFSO.GetParentFolderName(strParentPath)
              Next
        ' Does this directory exist? If not, create it.
            If objFSO.FolderExists(strParentPath) = False Then
                Set newFolder = objFSO.CreateFolder(strParentPath)
            End If
        Next
        ' Kill running processes
        objWshShell.Run "taskkill /F /IM iexplore.exe", 8, True
        objWshShell.Run "taskkill /F /IM firefox.exe", 8, True
        objWshShell.Run "taskkill /F /IM chrome.exe", 8, True
        objWshShell.Run "taskkill /F /IM javaw.exe", 8, True
        objWshShell.Run "taskkill /F /IM java.exe", 8, True
        objWshShell.Run "taskkill /F /IM jqs.exe", 8, True
        objWshShell.Run "taskkill /F /IM jusched.exe", 8, True
        ' Copy deployment files
        objFSO.CopyFile strCurrentDir & "\deployment.config", "c:\Windows\Sun\Java\Deployment\", True
        objFSO.CopyFile strCurrentDir & "\deployment.properties", "c:\Windows\Sun\Java\Deployment\", True
        ' Disable UAC
    '    If bolIsWin8 Or bolIsWin81 = True Then
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v PromptOnSecureDesktop /t REG_DWORD /d 0 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f", 8, True
    '    End If
        ' Install application
        intExitCode = objWshShell.Run("msiexec.exe /i """ & strCurrentDir & "\jre1.7.0_51.msi"" IEXPLORER=1 AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 WEB_JAVA=1 ALLUSERS=1 Reboot=ReallySuppress /qn", 8, True)
        ' Enable UAC
    '    If bolIsWin8 Or bolIsWin81 = True Then
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v PromptOnSecureDesktop /t REG_DWORD /d 1 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f", 8, True
    '        objWshShell.Run "reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 5 /f", 8, True
    '    End If   
        wscript.quit(intExitCode)
        '/// Install via .exe on network
        'objWshShell.Run """" & strCurrentDir & "\Setup.exe"" -s -sms -f1""" & strCurrentDir & _
        '    "\setup.iss"" -f2""" & strWIN & "\Temp\Install-app.txt""", 8, True
        ' Need to turn off the open file security warning first
        Set objEnv = objWshShell.Environment("PROCESS")
        objEnv("SEE_MASK_NOZONECHECKS") = 1
    '    intExitCode = objWshShell.Run("""" & strCurrentDir & "\jre-7u45-windows-i586.exe"" /s /v""/norestart " & _
    '        "TRANSFORMS=""" & strCurrentDir & "\Tribe-jre7.mst""""", 8, True)
    '    WScript.Quit(intExitCode)
        '****RUN COMMANDS HERE****
        ' Then turn it back on
        objEnv.Remove("SEE_MASK_NOZONECHECKS")
    '/// Additional functions
    Help on this issue would be much appreciated!

    It turns out that this is actually a problem with Kronos Workforce Central.  We had the "site.java.plugin.CLSID.familyVersion" setting in that application set to "clsid:CAFEEFAC-0016-0000-FFFF-ABCDEFFEDCBA", which is the Java CLSID for Java 6.  After updating this value to "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" (the Java universal CLSID), this problem did not occur upon the automatic upgrade of Java.
    We have both Java 6 and Java 7 in our environment, and did during our Kronos implementation, so I don't know why we were using the Java 6 CLSID in the first place.
    Case closed!

  • Content analyzer and browser

    Hi,
    What is Content analyzer and browser and what does the Tcode : RSBICA does...
    Regards,

    Martin
    I used the same document from help.sap.com to configure the setting. I am not sure what needs to be done. I  ran the transactions RSBICA, but no data is shown. I have loaded the DSOs and no data could be extracted.
    Thanks
    Latha

  • Premiere Pro CC - Content analysis modules (French)

    Hi,
    from the moment I updated to Premiere pro CC (on windows 7 64 bit), the content analysis module for French has been unavailable. I have downloaded it again for the latest version (which mentions compatibility for both CS6 and CC versions) and reinstalled it, but no change. I can't select this option. I have tried several things and found the folder in common files, but it is called CS6, maybe that's a clue to why it is broken.
    Anyway I urgently need this option for a very talky group of videos I have to edit and am desperate to have it working. And by the way it is broken in Prelude too, of course.
    Thank you for your feedback.
    David

    I did the same and it worked. There are three folders under CS6, fr_CA, fr_FR, and support. I copied the two fr folders to the 4.0 folder because there is already a support folder there and i didnt want to mess it up. It looks like the 4.0 is for the US speech engine. I guess even the big boys can sometimes dodo.

  • DRM for the contents in the browser

    I am considering to use FMS for our video conents and also
    want to adopt FMRMS for the DRM. Then what I got from the site is
    that FMRMS is just supporting AMP and AIR applications. So then
    what about the contents in the browser?

    Same happens to me! Help

  • Cannot enable Java content in the browser

    I have a mcbpro running OS X 10.10. I installed Java 8 update 25 on the mac and it installed a Java preference pane in the system preferences. If I wish to enable Java in the browser, I open the Java preference pane, select the security tab, and tick the box "Enable Java content in the browser". I am then asked to enter my administrator password. After doing this the setting is not saved.
    I have also installed the same Java version on an iMac and I do not get this behaviour. I have checked disk permissions but there were no issues found. Any suggestions?

    Hi Nubz,
    Thx for the suggestion. I tried to fix the problem with Java 8 hoping that it may be safer to use Java 8 rather than the older version of Java 6 (not that I trust any Java version; I only need to enable it for a specific site). I have actually solved the problem this afternoon by deleting:
    /Library/Application Support/Oracle
    ~/Library/Application Support/Oracle
    Reinstalling Java 8.
    I suspect that the Oracle folders were remainders of the previous Java 7 installation I had in Mavericks (before I upgraded to Yosemite) and were somehow incompatible.
    Many thx for thinking along
    dlinar01

  • "Dynamic Content Analysis" Feedback

    Hello,
    Has any of you guys used the new "Dynamic Content Analysis" feature on the 6.3 AsyncOS for Web ? Long enough to have a feedback.
    Do you experience false-positives ? Noticeable impact on the system resources ?
    Thanks a lot,

    Your template contains an IE Conditional Comment that is adding 30px of top padding to  #sidebar1.  This padding may required in older versions of IE but not IE9.
    &lt;!--[if IE]>
    &lt;style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    &lt;![endif]-->
    To fix it, change [if IE]  to [if lt IE 9]
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Sap Content server Direct Browser Access - docGet

    We use SAP Content Server for DMS doc storage. Docs are stored without digital signing.
    I am looking to access dms original files directly via web browser using the "docGet" command.
    My url looks as shown:
    http://pswdf009:1080/ContentServer/ContentServer.dll?docGet&pVersion=0045&contRep=K1&docId=361A524A3ECB5459E0000800099245EC
    When I call the url, browser does not seem to be able to read the file type of the server response. An "open/save" dialog appears and when "open" is selected a subsequent dialog appears asking which application to use to open the file. Once the correct application is chosen, the document is displayed correctly.
    Is there some way to instruct the browser the content-type is application/pdf?
    Will CSAdmin parameter changes have any impact?
    The browser is Internet Explorer 6.
    Any help is appreciated.
    Roger

    Hi Roger,
    you may of course find an answer here.
    But mySAP PLM DMS is not a focus topic here (besides maybe connecting it into the SAP Portal and KM). Thus, you may be better off using a contact or a message to PLM.
    Regards, Karsten

  • 39L4333DG - cannot display Flash content in web browser

    Hello,
    When I try to access Flash sites the web browser shows 'Missing plugin' in the frame where flash player should display the content.
    Am I omitting anything?
    I have installed the latest firmware: 7.1.90.34.01.1.
    For a 2013 TV it is annoying not to have a full featured web browser on a SMART TV.
    Is there any chance to have a full web browser in the next firmware version?
    Thank you.

    When I had similar problems the response from Toshiba was that the browser is only intended for limited use. My problem was not being able to access any site which required a password. Not rocket science you would think!

  • Displaying content based on browser

    Not sure if this is the right place or not, but is it
    possible in Flash to do something like this...
    detect the user's browser
    position movie elements according to each browser
    The issue is that my company is currently building sites
    using all Flash and frames. So, each browser displays frames
    differently. The issue with one site is, depending on the browser,
    the flash movie in the top frame will be misaligned from the bottom
    frame content, whereas on another browser, it looks fine. Right
    now, we are stuck using frames so please don't suggest we get out
    of frames. Our IT dept is working on that, but for now we are
    stuck. Any suggestions?

    Hey Lynda,
    At the moment you still cannot list the secure zone an user is logged into, however you could try this workaround:
    -say the user can choose between 2 secure zones to login into
    -each secure zone has its own landing page
    -create a blank landing page for each secure zones, we will use these as proxies
    After the user enters his credentials he is redirected to the blank landing page. On this page insert 2 bits of javascript:
         -one that sets a cookie so that you know which secure zone the user is logged into
         -one that redirects the user to the "Members only" page
    From the user's perspective he will just insert the credentials, login and be redirected to the Members only page. The difference is that by using the proxy pages you have a way of setting a cookie you can later use to determine what secure zone the user is logged into and customize the page appearance based on that.
    Hope this helps,
    Mihai.

  • Displaying XML content in the browser without creating the XML file

    Hi,
    In my web application, i am getting the data from the database and generating an XML file based on that. This file is created, read and its content is displayed in the browser when the user clicks a specific link on the jsp.
    As per the new requirement, i am not supposed to generate the XML file. Instead when the user clicks on the specific link on the jsp, the XML should get displayed in the browser directly without generating the XML file.
    Can someone plz help me in how to do this?
    Moreover, this XML generation application should support multiple clients. Do i need to make my application thread-safe explicitly even though i am using a servlet to do this?
    Please suggest
    Thanx

    Avoid multi post
    http://forum.java.sun.com/thread.jspa?messageID=9858529

  • Displaying xml content in the browser

    Hi,
    In my application i am generating an XML content which i was storing into a file. Now as per the new requirement, this xml content needs to be displayed in the browser. (The way it gets displayed when we double click on an xml file).
    Can some one plz tel me how to do this? I am using the jsp/servlet architechture..? plz help
    Thanx

    Program 1
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class SendXml extends HttpServlet {
      public void doGet(HttpServletRequest request, HttpServletResponse response)
          throws ServletException, IOException {
        //get the 'file' parameter
        String fileName = (String) request.getParameter("file");
        if (fileName == null || fileName.equals(""))
          throw new ServletException(
              "Invalid or non-existent file parameter in SendXml servlet.");
        // add the .doc suffix if it doesn't already exist
        if (fileName.indexOf(".xml") == -1)
          fileName = fileName + ".xml";
        String xmlDir = getServletContext().getInitParameter("xml-dir");
        if (xmlDir == null || xmlDir.equals(""))
          throw new ServletException(
              "Invalid or non-existent xmlDir context-param.");
        ServletOutputStream stream = null;
        BufferedInputStream buf = null;
        try {
          stream = response.getOutputStream();
          File xml = new File(xmlDir + "/" + fileName);
          response.setContentType("text/xml");
          response.addHeader("Content-Disposition", "attachment; filename="
              + fileName);
          response.setContentLength((int) xml.length());
          FileInputStream input = new FileInputStream(xml);
          buf = new BufferedInputStream(input);
          int readBytes = 0;
          while ((readBytes = buf.read()) != -1)
            stream.write(readBytes);
        } catch (IOException ioe) {
          throw new ServletException(ioe.getMessage());
        } finally {
          if (stream != null)
            stream.close();
          if (buf != null)
            buf.close();
      public void doPost(HttpServletRequest request, HttpServletResponse response)
          throws ServletException, IOException {
        doGet(request, response);
    Program 2
    import java.io.BufferedInputStream;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLConnection;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class ResourceServlet extends HttpServlet {
      public void doGet(HttpServletRequest request, HttpServletResponse response)
          throws ServletException, IOException {
        //get web.xml for display by a servlet
        String file = "/WEB-INF/web.xml";
        URL url = null;
        URLConnection urlConn = null;
        PrintWriter out = null;
        BufferedInputStream buf = null;
        try {
          out = response.getWriter();
          url = getServletContext().getResource(file);
          //set response header
          response.setContentType("text/xml");
          urlConn = url.openConnection();
          //establish connection with URL presenting web.xml
          urlConn.connect();
          buf = new BufferedInputStream(urlConn.getInputStream());
          int readBytes = 0;
          while ((readBytes = buf.read()) != -1)
            out.write(readBytes);
        } catch (MalformedURLException mue) {
          throw new ServletException(mue.getMessage());
        } catch (IOException ioe) {
          throw new ServletException(ioe.getMessage());
        } finally {
          if (out != null)
            out.close();
          if (buf != null)
            buf.close();
      public void doPost(HttpServletRequest request, HttpServletResponse response)
          throws ServletException, IOException {
        doGet(request, response);
    }Have fun

  • Unable to open PDF files from Fileserver Content Source using Browser

    The situation is this :
    A content source was created to search a fileserver
    Search facility finds the files using the browser
    Able to open MS Office files from the fileserver
    Able to open PDF files that are in the Sharepoint Portal
    Unable to open PDF files from the Fileserver
    Currently using Sharepoint 2010. PDF Filter is installed and configured on the Sharepoint Server
    Your assistance is always greatly appreciated.
    Have a great day.
    NRH

    Hello Nate,
    I have the necessary access to the folder.
    The content source addresses are
    \\172.25.136.53\KDrive\Home\Company\DAILYREP
    \\172.25.136.53\KDrive\Home\Company\TRINMAR
    \\172.25.136.53\KDrive\Process Safety Management
    NRH

  • Captivate 8 - can't zoom in/out to view content in web browser

    I'm running Captivate 8 on PC Win7-64bit. After publishing a simulation module (Flash SWF) to HTML for viewing in different browsers (Chrome, IE, Firefox), we can't zoom in or out of module like we can in Captivate 5. You'd typically can press CTLT +/- to zoom/out to resize text or graphics for better viewing. I can rescale the browser window but not the content inside. What's the resolution to this issue? Anyone out there?
    thanks,
    Robert

    Hi Robert,
    Same thing happened to me...I'm assuming this is because you didn't create your project as a "Responsive" project.  If you need to convert an old project, you have to go to File > New Project > Responsive Project and then open your old project and COPY/PASTE the slides into the responsive project.  Obviously, your shapes / objects might rearrange but they are usually easy to adjust. However, if you have a quiz attached I believe you will have to re-add from scratch (that was my experience anyways).  Also, don't forget to activate your "Mobile Gestures".  All of this will allow you to zoom as much as you want. The drawback of using the Responsive project is that it ONLY publishes in HTML5 (Not SWF, MP4, etc.)  Hope this helps!
    1) 

  • Safari acting odd, 70% of time, some page contents vanish when browsed over

    Hi there,
    & bear w/ me. It always hard to describe a problem when you've become confused, and run down lots of blind alleys.
    Safari has been having increasing trouble opening pages, often -- but not always __ hanging in midload much longer then I'm used to.
    Fearing a possible virus or such ( in my uninformed way ) I started a Norton AntiVirus scan of the HD. If there's a way to scan mail seperatety , I don't know it....perhaps that's the province of spam-filters ?
    While this hours long scan has been running, I've gone ahead & tried some normal business. ( foolishly ? )
    First on a Symantec page, then MySpace, moving the browser would cause all contents to "fold up" and dissappear ??! ( they were later seen to be fine )
    Would that be due to having the scan running, or have I got some broken Safari on my hands ?
    --TIA--
    ~~~=Dave
    iMac   Mac OS X (10.4.8)   Intel / 20 " / 2 GB Ram / "500" GB memory / LaCie 500 GB external. . .

    Hi again Dave,
    Sorry for the slow reply, I've been very busy last few days.
    Yes, if Safari is behaving best not to rush into anything.
    problems, always shy when you are armed with a screenshot: )
    I do wonder how Safari behaves in a test or other account.
    Do any other applications behave oddly?
    On Mac Intel, the worst Norton products to run are SystemWorks and Norton Utilities.
    Some talk on NAV, & other utilities from a topic with with some very experienced users.
    Productivity & Utilities Intel software
    Note the notice on the bottom of the download page.
    • On ClamXav- It seems to be more mac compatible but as you see both are mentioned.
    Yes my web-mail server does scan my emails for viruses, there was 1 cleaned email in my suspect folder just yesterday,which i deleted anyway, the best aspect of Earthlink, my ISP.
    • On Console~ go to Applications -> Utilities, click & hold the mouse down on the Console App, drag it to the Dock, [make sure the Console remains in the Utilities folder as well] for easy access..This just makes an Icon for the dock the original should remain in it's respective location, storing any applications in folders other then where they belong causes problems,
    such as they will not update when the os is updated.
    Once you have the console in the Dock, open it.
    Under the Console menu, "Preferences", set the console to bounce when an open log is written to.
    Now dock the console using the yellow candy button,thus making it an open log
    close: red button, yellow: dock [also called minimized], green minimize / maximize window size.
    If Safari does this oddness, as before & you see the console bounce,
    look to see what message is logged,
    Note that there is a lot written to the log that maybe inconsequential to the problem, for instance these sort of messages...
    Unsafe JavaScript attempt to access frame with URL https: //webmail.pas.earthlink.net/wam/index.jsp?x=-490342274 from frame with URL https: //ad.doubleclick.net/adi/
    [or]Safari ATSUFontFallback........etc.... a lot is written to it.
    See Console's Help for more info.
    It does sound as if the trial item you spoke of, Deja vu be best removed / it maybe the/ a culprit.
    Oh heavens if you want to read some writings that are hard to interpret, read some of my earlier attempts to help & not so early ; (... lol oh please don't waste your time~!!
    So many more interesting & comprehensive things to read & learn.
    a couple of links on the Console in AD and how to view & size..
    http://discussions.apple.com/thread.jspa?messageID=3062161&#3062161
    http://discussions.apple.com/thread.jspa?messageID=1894561
    This article maybe helpful, your fonts being out of order can also be problematic though usually it affects more then 1 application,
    Kurt Lang's ~ Font Management in Mac OS X e
    I don't know if any of this helps you any, I hope so. Please keep us posted
    Regards,
    Maria/Eme'~[)

Maybe you are looking for

  • Pages 08 Wrapping Issue

    I upgraded from Pages 06 to Pages 08. I can no longer get my text to wrap around my pictures so that there is text to the left or right of my image. Text simply jumps from top of image to bottom, with no text on the side. In the Inspector, I have che

  • Help with downloading Apps

    When I download any App on my iPhone 4 its tells me to log into my itues store on my computer, I do this and still nothing happens. Also when I open Facebook on my phone it opens and then closes. Any help is much appreciated. Thanks

  • Report for scheduling agreement

    Hi All, Please help me to know is there any Report available of open schedule agreements. Thanks

  • No motion in motion menus 4.2

    My motion menus (the drop zones from the templates) don't show up when I simulate or build ... the motion menu tap is checked ...they do show up when I replace them with a still (motion menu unchecked) . I just upgraded to 4.2 is this an up grade iss

  • What is my best option??

    Hi All, I have the new iMac with the built-in webcam and what I need to do is be able to chat with video and audio with a pc. My parents live in another city and I just moved out. Anyway what is the best option for us? They have Skype, but it is my u