CCP 2.6 Javascript error and display issues

Hello ,
I am atttempting to run CCP2.6 and have tried clearing cache on IE (temp internet/website files, cookies, history) and removed all Java files including trace/log files, chaced apps and applets , and installed apps and applets.Also ran CCP as admin. Essentially followed all guidelines to solution to discussion "CCP 2.5 Javascript Error" but has not resolved issue.
I still get the error below and the bottom 2/3 of the CCP screen is not displayed/rendered. Content is only rendered within a sliver of entire window size , at top part of the window. It appears as if Java should be rendering content at mid/bottom section of window but never does, although a tempory splash screen does appear as if it is "attempting".
netscape.javascript.JSException: No such method "invokeLaunchDashboard" on JavaScript object
at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
at com.cisco.xdm.CounterpointSDMApplet.init(CounterpointSDMApplet.java:310)
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.init(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
I am using
System:
Windows 7 SP1
IE10
java version "1.7.0_21"
Flash 11.7.700.169
Looking forward to using the application.
Please Help!
Thanks
Pablo

Hello ,
I am atttempting to run CCP2.6 and have tried clearing cache on IE (temp internet/website files, cookies, history) and removed all Java files including trace/log files, chaced apps and applets , and installed apps and applets.Also ran CCP as admin.
But I still get the error below and the bottom 2/3 of the CCP screen is not displayed/rendered. Content is only rendered within a sliver of entire window size , at top part of the window. It appears as if Java should be rendering content at mid/bottom section of window but never does, although a tempory splash screen does appear as if it is "attempting".
netscape.javascript.JSException: No such method "invokeLaunchDashboard" on JavaScript object
at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
at com.cisco.xdm.CounterpointSDMApplet.init(CounterpointSDMApplet.java:310)
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.init(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
I am using
System:
Windows 7 SP1
IE10
java version "1.7.0_21"
Flash 11.7.700.169
Looking forward to using the application.
Please Help!
Thanks
Pablo

Similar Messages

  • MacBook Pro Startup and Display Issues

    I've been having some random problems with my MacBook Pro (2.16 GHz, 2 GB RAM, 100 GB 7200 rpm hard drive, ATI Radeon X1600 graphics). Specifically:
    1. Lines across the screen and purple boxes sometimes appear.
    2. The graphic effects (e.g. zooming a window) sometimes get "frozen" on the screen. In other words a remnant from the animation will stay until the window is refreshed.
    3. The Mac sometimes freezes during the startup process. Sometimes the login screen will be unresponsive and other times the Mac will almost bootup but fail when loading startup items.
    4. Less frequently the Mac will freeze randomly. I previously had iStat Menus installed and each time the MacBook Pro froze up it indicated both read and write disk activities.
    Yesterday I decided to wipe the machine clean and start from scratch in case there were a software issue or corruption on the hard drive that was causing my woes. I completely erased my hard drive and even zeroed the entire disk to make sure everything was completely wiped out. I also disconnected all peripherals to simplify things as much as possible.
    The first time I tried the reinstall everything completed successfully but the "Welcome" movie froze part way through. I then had problems running the install again. I was able to boot off the Leopard DVD, but the machine froze a couple of clicks into the install procedure. After numerous tries I was able to erase the hard drive once again and install Leopard. This completed successfully and I installed all updates.
    The problems started to show up again almost immediately, however. I installed iLife and iWork and all the updates and had the computer freeze up on me again during a reboot. I also noticed that the display issues started to show up again even before installing any third-party software.
    I've tried running disk tests with Drive Genius 2.1, but no errors have been reported. I've also used the freeware Rember program to run memory tests but have yet to see any errors. Sometimes my Mac powers up without any problems and once it's powered up it often stays running for days. The display issues appear quite frequently. I've using iStat Menus to keep an eye on the temperature sensors and everything appears to be normal - so it doesn't appear to be temperature related.
    Fortunately the computer's still covered under the extended AppleCare warranty, but I would like to have some idea what's going on before I take it in just in case they're not able to reproduce the issues.
    Any suggestions and insights would be GREATLY appreciated. Thanks in advance for reading my rather long-winded message.
    Cheers,
    Tim

    I took my MacBook Pro in for repair and it turned out to be an issue with the logic board. I had the logic board replaced (fortunately it was covered under my extended AppleCare warranty) and these problems are a thing of the past.

  • How to capture DB Errors and display as pop-up message

    Hi All,
    I am using Jdeveloper 11g Release 2 (11.1.2.3.0).
    In my AppModuleImpl.java, I defined a class to call PL/SQL procedure and exposed the same as Client interface. Pulled this method from data control on to a page a Button. The functionality is working fine.
    Can you suggest me, what is best way to achieve the below functionality.
    1. If there is any DB errors during PL/SQL procedure, how to catch and display the Errors / Warning in Pop-up message.
    2. How to display info message on successful completion in Pop-up.
    regards

    Hi,
    +1. If there is any DB errors during PL/SQL procedure, how to catch and display the Errors / Warning in Pop-up message.+
    Throw a custom exception that extends the JboException class.
    See:
    http://www.oracle.com/technetwork/issue-archive/2013/13-mar/o23adf-1897193.html
    http://jobinesh.blogspot.de/2011/03/customizing-business-components-error.html
    +2. How to display info message on successful completion in Pop-up.+
    Option 1.
    you can either return "true" or "false" from the method so that you can call
    OperationBinding plsqlOperationBinding = .... get access to themethod binding to invoke the PLSQL method call ....
    String result = plsqlOperationBinding.execute();
    if(result.equlasIgnoreCase("true"){
    RichPopup popup = ... get reference to popup defined on the page
    RichPopup.PopupHints hints = new RichPopup.PopupHints ();
    popup.show(hints);
    Option 2
    OperationBinding plsqlOperationBinding = .... get access to themethod binding to invoke the PLSQL method call ....
    plsqlOperationBinding.execute();
    if(plsqlOperationBinding.getErrors().size == 0){
    RichPopup popup = ... get reference to popup defined on the page
    RichPopup.PopupHints hints = new RichPopup.PopupHints ();
    popup.show(hints);
    Frank

  • JavaScript error and CATW record locking problem

    Hello,
    We're having two problems with ESS (CATW and Personal Information (PZM3)) in EP 6. We have an ITS-R/3 landscape.
    The JavaScript problem appears intermittently within Personal Data services (Address, Emergency Contact, ...). The actual error reads "object required" and originates from ITS. A user may be able to click through all the ESS services once fine, but on a second click receive the error. Sometimes they can't use the services at all.
    The record locking problem happens in Time Sheet (CATW). Even though a user Saves and Releases the Time Sheet, it remains locked and cannot be approved. Alternatively, some users are experiencing locked records when they try to complete their own time sheets.
    I'm not sure if these are related.
    Has anyone here seen these problems? Any suggestions are most welcome!
    Cheers,
    Colleen

    The best way to nail down the javascript error would be to use the firefox JavaScript debugger extension plugin and put the breakpoints where the problem occurs.
    This will exactly tell you which object it is looking for which is not found. Moreover you might be able to find that when it is working fine as you said. So give that a try and I am sure you will be able to figure out the problem.
    To me this mostly looks like at time some .js file is not coming through to the browser... but this is just a wild guess based on the symptoms.

  • Consistent windows errors and installation issues with win 7

    I am experiencing repeated blue screen errors (bad pool error and failed to clock interrupt among others) and now have issues with enabling windows firewall (error 8007042c) among various other windows errors also windows restore is not working would appreciate
    any advice thank you.

    Hi,
    Please refer to this KB to troubleshoot the windows firewall (error 8007042c), begin with scanning for malware.
    http://support.microsoft.com/kb/2530126
    Regarding to the blue screen, I sugegst you keep Windows up-to-date, install latest drivers, if this doesn't help, please upload the latest dump files to a public location like OneDrive, then paste the downlaod link here for further analysis. (default location:
    %SystemRoot%\MEMORY.DMP or minidump)
    http://windows.microsoft.com/en-in/onedrive/share-file-folder
    Yolanda Zhu
    TechNet Community Support

  • Adobe CS5 error and exit issue

    Hi There,
    I have a computer installed Adobe CS5 suite, while using Flash CS5, sometimes, there will be error message like "Memery cant be read" or "Access error" and then after close the error message, CS5 exit, need to restart it.
    I have tried to reinstall the OS and reinstall CS5, it just doesn't work, do guys have any good ideas on this?
    Computer Hardware:
    HP workstation xw8600
    4 core cpu.
    4GB memory.
    OS: WinXP SP2.
    Before install CS5, our company use CS3 and it works well for years.
    many thanks!

    Hi,
    Remove the all the files from
    /Volumes/Mac HD1/Adobe Encore Projects/BD/AuthorScriptHDMVSessions/
    This will resolve this issue.
    This happens if any file corrupted in Volumes/Mac HD1/Adobe Encore Projects/BD/AuthorScriptHDMVSessions/ folder
    Thanks,
    Pankaj Gauba

  • CCP 2.5 JavaScript Error

    When I try to Open CCP 2.5, I get following Error:
    netscape.javascript.JSException: No such method "invokeLaunchDashboard" on JavaScript object
        at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
        at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
        at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
        at com.cisco.xdm.CounterpointSDMApplet.init(CounterpointSDMApplet.java:306)
        at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
    System:
    Windows 7 SP1
    IE 9
    java version "1.6.0_24"
    What can I do ?
    Thanks
    Bernd

    Hello ,
    I am atttempting to run CCP2.6 and have tried clearing cache on IE (temp internet/website files, cookies, history) and removed all Java files including trace/log files, chaced apps and applets , and installed apps and applets.Also ran CCP as admin.
    But I still get the error below and the bottom 2/3 of the CCP screen is not displayed/rendered. Content is only rendered within a sliver of entire window size , at top part of the window. It appears as if Java should be rendering content at mid/bottom section of window but never does, although a tempory splash screen does appear as if it is "attempting".
    netscape.javascript.JSException: No such method "invokeLaunchDashboard" on JavaScript object
    at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
    at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
    at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
    at com.cisco.xdm.CounterpointSDMApplet.init(CounterpointSDMApplet.java:310)
    at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.init(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    I am using
    System:
    Windows 7 SP1
    IE10
    java version "1.7.0_21"
    Flash 11.7.700.169
    Looking forward to using the application.
    Please Help!
    Thanks
    Pablo

  • Accessory may not be supported error and charging issues with iphone4

    Hello,
    From past 2 weeks my Iphone4 (say A) keeps throwing error message "Accessory may not be supported" and doesn't charge the iphone after couple of minutes of charging. This happens when device is connected (for charging) to power outlet or to computer (USB port). I tried multiple original iphone/apple cables.  The same cable allows me to copy pictures from this device/Iphone4 when connected to computer via same USB cable, but the device/iphone4 does not charge. The same cable and charger charges my other Iphone4 (say B) perfectly fine. 
    I am really frustrated as to why this is happening.
    Searching on internet, it seems lot of people are facing this problem with their iphones and ipad devices and refer this issue as a software bug, which I also seem to think. How can it be the hardware issue when same charging port and same cables allows you to copy your pics etc. from your iphone device to your laptop but does not allow you to charge the same device? Same charging cable works with my other iphone4 and i tried multiple cables so I dont think it's a cable issue.
    Any help is appreciated. I was expecting apple products to be better in quality but lately I have seen this issues quite often.
    -RP

    Make sure you are using an Apple approved charger and cable.  The best would be the charger and cable that came with the iPhone in the original box.

  • GPMC Crashing and Display issues.

    Today I went to open the GPMC on my Windows 8 Desktop and after going to edit a policy we have created all the menu items were blank. I could see the icons for them, but they had no name. After trying to navigate for a few moments MMC Crashes and gives me
    this error in event viewer:
    Faulting application name: mmc.exe, version: 6.2.9200.16384, time stamp: 0x5010a074
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505aaa82
    Exception code: 0xc0150010
    Fault offset: 0x0007df5e
    Faulting process id: 0xfc8
    Faulting application start time: 0x01cdb7783eb3c748
    Faulting application path: C:\WINDOWS\SysWOW64\mmc.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll
    Report Id: 8bacb439-236b-11e2-be6b-984be1ebad9b
    Faulting package full name:
    Faulting package-relative application ID:
    with this information afterwords:
    Fault bucket -1088739078, type 1
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: mmc.exe
    P2: 6.2.9200.16384
    P3: 5010a074
    P4: ntdll.dll
    P5: 6.2.9200.16420
    P6: 505aaa82
    P7: c0150010
    P8: 0007df5e
    P9:
    P10:
    Attached files:
    C:\Users\pomeroyt\AppData\Local\Temp\WER66CC.tmp.WERInternalMetadata.xml
    C:\Users\pomeroyt\AppData\Local\Temp\WER6C3B.tmp.appcompat.txt
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_mmc.exe_636e6b2f6e27a9c7f7e820f7a0adb57213626294_05c36ce6
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 8bacb439-236b-11e2-be6b-984be1ebad9b
    Report Status: 1
    Hashed bucket: 098ebb650f3c851a055c696107776b03
    I'm not really sure where to go from here. Has anyone else had this issue? 
    Were running a 2008 domain. 

    I'm also having this problem. Error text from my system below.  It's a fresh install of Windows 8, joined to our domain and updated. VMWare Tools was installed automaticaly, but not even antivirus aside from that. It seems I can use most of the
    features of the console, I've even succesfully modified a GPO. If I select the comain in the left pane though, guarenteed crash.  I've tried rebooting.
    Anyone make any progress?
    Problem signature:
    Problem Event Name:                       
    APPCRASH
    Application Name:                            
    mmc.exe
    Application Version:                          
    6.2.9200.16496
    Application Timestamp:                    
    50ece2e8
    Fault Module Name:                         
    gpmgmt.dll
    Fault Module Version:                       
    6.2.9200.16518
    Fault Module Timestamp:                 
    510ca9a6
    Exception Code:                                 
    c0000005
    Exception Offset:                               
    0000000000154f4b
    OS Version:                                         
    6.2.9200.2.0.0.256.4
    Locale ID:                                            
    1033
    Additional Information 1:                 
    f5d5
    Additional Information 2:                 
    f5d5f2edea5447000260123656b930b4
    Additional Information 3:                 
    f883
    Additional Information 4:  f883ee6437fb5cbaf147d7c9ea29db21

  • Adobe CS5.5 Production Premium Install Errors and Other Issues

    Hi,
    I just  installed Adobe CS5.5 Production Premium on my computer and had some  errors pop up at the end of installation.  I  will paste the summary below.   I've tried to install Procction Premium a couple of times.  I've used  the Adobe Cleaner Tool.  From what I've researched, the Flash Issue  is a  a false error since Flash was already installed on the computer.   Is  the rest of it connected to the Flash issue as well?
    Thr programs all seem to work fine except for the issue below.
    My  other question is that when I am in Windows Explorer and I Right-Click  on say a .jpg file and select Open With...  I am not able to select  Adobe Photoshop or Illustrator for that matter.  I have Dreamweaver CS4  and that shows up as an option.  I have gone through the process of trying to add the  Adobe Photoshop .exe file, but it still doesn't work.  However, if I open Adobe Bridge, I am able to select Photoshop or Illustrator to open a file.  Is this  connected to my install or is there something else going on?  I did  uninstall an ancient version of Adobe Photoshop 7.0 that I've had for  years, but that was prior to installing Production Premium CS5.  Could  that have caused an issue?  I read that uninstalling an old Photoshop  can cause problems like this.
    Any help would be greatly appreciated.
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 2 warning(s)
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current
    State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files (x86)
    \Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit
    2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging 0X1.7E8FC6P-
    1021rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f80493091e8e552c84a28 97e9da68fce  for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe  Production Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target  C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {43A1C48E-3E50-410e-951C-E17A66BBF824} Adobe Flash Player 10 Plugin 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part
    of the setup did not finish as expected. Contact your support personnel or package vendor. Action
    NewCustomAction1, location: C:\Users\RYANAN~1\AppData\Local\Temp\InstallPlugin.exe, command: -
    install plugin -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run
    as part of the setup did not finish as expected. Contact your support personnel or package vendor.
    Action NewCustomAction1, location: C:\Users\RYANAN~1\AppData\Local\Temp\InstallPlugin.exe,
    command: -install plugin -msi
    ERROR: DW050: The following payload errors were found during install:                                                  
    ERROR: DW050: - Adobe Flash Player 10 Plugin: Install failed
    Message was edited by: rynohose

    Yes, your installation errors appear to be the innocuous false errors related to the brain-dead Flash installer. If the programs seem to be working fine, don't worry about it. As far as not being able to open images with Photoshop from Windows Explorer, I recommend taking that question to the Photoshop forum.

  • How to get value stored in  javascript function and display in a JSP

    i am doing a questionaire which is for user to input data in every question, After user input the data, a javascript function will be called to do some score calculation. Since each question will carry its final score after the calculation by the javascript function, so i use an array to store those scores and then display those scores in the same page.
    However, i have to make a confirmation page to display both data and calculated score in another jsp, i only know how to display the data as it is a textfield that i can get the value by "request.getParameter("textfield1"); but i dun know how to get those scores as they are stored in an array in the javascript function, what way i can do??

    thank you for all your help!
    I have chosen to set the score value to the hidden field when every time run the function
    <script language="javascript">
    function cal(index){
    var thisForm = document.MC;
    thisForm.score1.value=score[index];//set value to the hidden field     
    </script>
    <input type="hidden" name="score1" value="">
    <input type="hidden" name="score2" value="">
    <input type="hidden" name="score3" value="">
    The function will calculate only one score when every time being called. So that i can only assign one score to one hidden value at a time.
    e.g, assign score[1] to thisForm.score1.value
    assign score[2] to thisForm.score2.value
    assign score[3] to thisForm.score3.value
    how can i do this??

  • HTTP Error 403 - Customized Error Page Display Issue

    Hi,
    I have included 403 in <error-code> in my web.xml and defined proper security constraints. But when I try to access my JSPs directly on Mozilla I see my error page but I try in Internet, I can't see the same page.
    Can someone help me?

    BalusC wrote:
    Then don't send the HTTP error status code in the headers. It would trigger IE to display friendly error pages.
    Best solution would be to let the error page invoke a redirect to self (or another error page) when the HTTP status code is 403, so that it becomes 200 (or anything in range of 200-399) so that IE won't be triggered to display friendly error pages. Best solution would be to let the error page invoke a redirect to self (or another error page) when the HTTP status code is 403You want to say that I should define a error page in my JSP where, when its called, I need to handle the 403 error. Please correct me if I'm wrong. I have defined *403 error code in my web.xml*.
    Again if possible can you please put down a sample how to do it?

  • Java and Display Issues in Plus

    Hi everyone
    Please reply whether you have or have not seen any of the following:
    I'm working on a client site where we have some machines working just fine and others are giving corbaserver errors. Copying data from a worksheet into Excel using CTRL-C | CTRL-V does not seem to work for some machines and so they have to use the Copy and Paste buttons. Curiously, when they do this they get an additional empty column whereas on the machines where CTRL-C | CTRL-V works they don't get the blank column.
    The other issue we are seeing is that after a short period of time, Plus stops running the queries automatically. Any change the user makes, such as adding a new item, adding a sort, moving a column position does not take effect until the Refresh button is clicked.
    There is a combination of IE6 and IE7, with all machines being XP with most on SP2 and many on SP3.
    I am suspicious of the XP SP3 when combined with IE7 but would like to know whether anyone else has experienced issues. We are running 10.1.2.3 with CP4 and our Java is Sun 1.6.0_15
    Please reply with either a we are having no problems with this combination or whether you have noticed similar issues. If you have seen issues and got a fix or workaround please let me know. I'm also interested in knowing which combination of Java, Discoverer, operating system and IE works for you.
    Best wishes
    Michael

    Michael,
    Our production server was recently upgraded to 10.1.2.3, CP5 with Java 1.4.2_06. Prior to this upgrade we recommended that users function with I.E. 6.0 and Firefox 2.0. We experienced issues with later browser versions. On my personal workstation I have Windows XP, SP2, I.E. 6.0, Firefox 2.0 and now Java 1.6.0_16. We are now testing the later version of Java on our test OAS. And we are testing out the later browser versions as we speak. The first thing that I would recommend is to add the Java Runtime parameter of -Xmx256M, in the Java Control Panel. I had some session locks prior to my adding this parameter. I am testing access to both servers with Java 6 installed on my workstation. Access to Java 6 performed better after I added the runtime parameters. Access to Java 4 with I.E. gives a warning message and performs very slowly. Mozilla Firefox does to seem to care, no warning and similar performance as Java 6 on the server side. I have not done very much testing with I.E. 7.0 and Firefox 3.0 as of yet with the newer Java version. I am now accessing that environment and it is running very slowly. Part of the issue may be my PC performance but I do not like what I see. Way too slow. This is the browser functionality not the workbook execution time. I added the Java Runtime parameter of
    -Xmx256M and it now performs better.
    I did the Ctrl-C|Ctrl-V with both I.E. and Firefox and did not experience the problem you discribed. I aslo did not encounter the other problems that you reported. We the corbaserver errors in a Discoverer pop-up window, Java Console or OEM session log?
    You may be correct with the SP3 as being at least one of the culprits. I do not have that patch on either workstation so I cannot test for you.
    Jerre

  • Linux installation and display issues

    PROBLEM:
    During installation, the following error occurs:
    No Java virtual machine could be found from your PATH
    environment variable. You must install a VM prior to
    running this program.
    RESOLUTION:
    Install Java 1.5 and make sure that it's in your PATH environment. To
    doublecheck that Java 1.5, simply
    type 'java -version'.
    PROBLEM:
    When opening any display view, the following error occurs and nothing shows
    up:
    ERROR GuardianApplication [main] : Registry does not exist, creating
    default registry
    Unhandled event loop exception
    Reason:
    No more handles (java.lang.UnsatisfiedLinkError:
    /<GUARDIAN_INSTALL_DIR>/configuration/
    org.eclipse.osgi/bundles/72/1/.cp/libswt-mozilla-gtk-3139.so: libstdc++.so.5:
    cannot open shared
    object file: No such file or directory)
    RESOLUTION:
    Add your browser's library dependencies by editing the /etc/ld.so.conf and
    add /<PATH>/firefox or /
    <PATH>/mozilla directory.
    Example: /usr/lib/firefox-1.5.0.7
    Make sure that the path to firefox or mozilla contains the
    /usr/lib/firefox-1.5.0.7/libxpcom.so. After
    that, run ldconfig command to update your library.
    Install compat-libstdc++-33 library. For Fedora users, simply type: "yum
    install compat-libstdc+
    +-33.i386" as root. Relaunch Guardian.

    I am really interested on comments. Anyway check also those sites about Linux on Toshiba notebooks:
    http://linux.toshiba-dme.co.jp/linux/index.htm
    http://newsletter.toshiba-tro.de/main/index.html

  • Help please? Static audio, Crashes, ActionScript Errors and more issues with Flash Player 16

    So, this is the first time I'm posting in here and I'm sorry if I mess up or smth.
    Anyway, this is what happened:
    - Firefox tells me Flash Player 15 is vulnerable
    - I update to the newest version
    - After the update I run into several things that are highly annoying.
    First of all:
    - I can't watch any livestreams anymore, neither on picarto nor on twitch. The video keeps loading and buffering, then works for a second or two and then goes back to buffering OR alternatively the video would stop whilst the sound continues or vice versa. (My wifi connection is super fast and I never had any problems until the update)
    - On youtube videos only load for a second or two, then the audio vanishes and the video crashes. (Never had that issue before, EVER)
    - The audio is incredibly wonky, aka, depending on the bass or sounds I hear static noises and weird sounds. (This only happens on videos that require flash, the sound is fine when playing CDs )
    - When watching videos and pausing it or going back a few seconds to rewatch something, the audio suddenly is completely gone.
    - Flash player crashes A LOT
    EDIT: Another Issue appeared:
    - When watchign videos using the Blip player (used by some websites) I get ActionScript errors which then result in crashes
    I'm using:
    Packard Bell EasyNoteLS
    Windows 7 Home Premium
    Firefox 34.0.5
    Adobe/Shockwave Flash 16.0.0.235
    What I've tried to do:
    - revert back to an older version of Flash (but it kept telling me to update so I gave up on it)
    - Try to enable "hardware accelaration" BUT, when right clicking on the Flash Symbol on Adobe's site FF freezes and tells me that Flash player crashed
    - Found out that I already have hardware accelaration enabled and it still keeps crashing
    - I deleted all of its local cache
    - downloaded and installed the debug version
    But none of it helped in the slightest.
    I really hope someone can help me fix this OR that adobe soon comes with a patch/update that fixes all these things ;_____;
    Thanks for reading and helping!

    Just to let you know, I don't tend to send all reports but here are a few from within the last week:
    [@ hang | WaitForMultipleObjectsEx | RealMsgWaitForMultipleObjectsEx | CCliModalLoop::BlockFn(void**, unsigned long, uns…
    https://crash-stats.mozilla.com/report/index/8f9d816a-8fa9-475a-9b6c-b660a2150109
    https://crash-stats.mozilla.com/report/index/a415ab2a-1321-4056-b263-83c212150109
    I tend to submit crash reports most of the times lately but yeah--
    Also, someting that really bugs me are these Actionscript errors because I can't upload a crash report for those--
    (they are more rare now but still happen occasionally)
    EDIT: Added photo of one of the Actionscript Errors when trying to play videos using the blip-player

Maybe you are looking for

  • Boot Camp 3.0 recognises Mac HFS drives but does not list all folders

    Hi I have just done a clean install of Boot Camp/Windows XP using the Boot Camp 3.0 drivers that come with Snow Leopard, and was pleased to find native support for Mac Drives (HFSJ). Whilst all of the Mac drives in my Mac Pro are recognised and can b

  • OS DB Migration in different customers

    Hi, We are planing to do OS/DB migration from ECC6.0 IBM AIX/Oracle 10.2 to Windows 2003/MS SQL2005 . source and target clients are different customers but both are sister companys and having the agriment to view the data. Now my question is source s

  • PRINTER USER NAME AND PASSWORD

    Pproduct:  HP Photosmart Premium c309a      OS: Windows 7   Error Message: Need printer's User Name and Password Trying to print from my iPhone I am asked for printer User Name and Password.  Where do I find them?

  • Re-set clipping mask

    I made a circle with the pen tool under 'paths'. Then, on the same path layer, I made another circle inside. usually when I make it an active selection / marquee, it acknowledges to combine these 2 paths and leave the inner most circle alone. Sometim

  • IPhoto '11 - Calendar not showing imported events

    Created a new calendar project, picked the calendars to import into it, everything showed just fine. I quit iPhoto, opened it up a couple days later, and all the pictures were there, but the events were blank. Nothing on any date. Not even the holida