Download problems with grid control zip file

Hello,
Does anyone have any insight as to why I am having problems fully downloading the first zip file for linux? I was able to download file 2 and file 3 completely without any problems but the first file always stops at around 600 MB.
I have tried three different computers.
Thanks in advance.
A/A

Downloaded about 1 month ago without any problem. If it fails again, let me know. I can test it again.

Similar Messages

  • Problem with Java and Zip Files

    Hello there everyone. I have a problem with trying to zip up directories with empty folders in them. They zip fine with my code, but according to winzip, the number of files in the archive is incorrect. It's supposed to have a total of 288 files in it, but when it's zipped up, it only says 284. I mention specifically the "empty directories" note because the zipping works fine without empty folders.
    Below is the code for the zip method:
    public static void zip(File[] list, File zipfile, File zipRoot)
         throws IOException {
          if (!zipfile.exists()) {
                   zipfile.createNewFile();
              else if (!zipfile.isFile()) {
                   throw new IOException("The zip file, " + zipfile.getAbsolutePath()
                             + " is not a file.");
              if (list.length == 0) {
                  LOG.error("The list of files to zip up is empty.");
              for (int i = 0; i < list.length; i++) {
                   if (!list.exists()) {
                        throw new IOException("The file or directory, " + list[i].getAbsolutePath()
                                  + " does not exist.");
              FileOutputStream fos = new FileOutputStream(zipfile);
              ZipOutputStream zos = new ZipOutputStream(fos);
              for (int i = 0; i < list.length; i++) {
                   if (LOG.isDebugEnabled())
                        LOG.debug(i + ": " + list[i].getName());
                   String entryName = getRelativeName(list[i], zipRoot);
                   if (list[i].isDirectory()){
                        if (list[i].listFiles().length == 0){
                             ZipEntry entry = new ZipEntry(entryName + "/");
                             zos.putNextEntry(entry);
                   else {
                        ZipEntry ze = new ZipEntry(entryName);
                        zos.putNextEntry(ze);
                        byte[] buffer = new byte[8096];
                        FileInputStream fis = new FileInputStream(list[i]);
                        int read = 0;
                        read = fis.read(buffer);
                        if (LOG.isDebugEnabled())
                        LOG.debug("\tFound " + read + " bytes.");
                        if (read == -1){
                             //empty file, but add it for preservation.
                             //zos.write(buffer,0,0);
                        while (read != -1) {
                             zos.write(buffer, 0, read);
                             read = fis.read(buffer);
                        fis.close();
                        zos.closeEntry();
              zos.close();
    The files look like they're there, but I need the system to be able to determine the number correctly. 
    Here's the interesting thing:  It zips the files, and then when I use the size() method for zip files in java, it says 284 files.  But when I unzip, it says 288 again.  It's like there's files missing when compressed, but when decompressed, they return.  Note that the files are actually there.  If I open the archive in a third party app such as Winzip AND Winrar AND IZarc, they all show 288 files.  Any idea what would make the number of files appear incorrectly in a zip file when zipped by java with the code above?  Thanks in advance.
    - Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I figured out the problem. When zipping files in windows using winzip, it doesn't explicitly count folders as a "file/folder" as a file in itself. It will create the folders for files to go in, but the folder itself will not be 'counted' when you query the info of the file itself. You have more control of the zip file in java, and can count the folder as a file or not.

  • Problem with creating a ZIP file

    I have a program that uses java.util.zip to zip all the files in a user's directory (aproximately 7 files totalling 2 MB). When the files are extracted later using WinZip or a similar tool, the files appear to be the same (same file size & date), but they can not be opened by the program that uses them. When I use a binary diff tool to compare the before zip and after zip files, it shows about 20 random bytes that have changed. Anybody else seen this occur?
    Thanks

    Hi,
    I am successfull in putting all the files of a
    directory in a newly created ZIP file. But if my
    directory has a sub-directory, it's not workin....m
    not able to zip it properly. I mean, my program is
    doin it withour error but when i try to open it using
    WinZip...it's giving me an error sayin as not a proper
    archive...
    Do anyone have faced this problem??
    GauzYou need to call the following functions of ZipOutputStream after completing zipping in your code ?
         objZipOutputStream.finish();
         objZipOutputStream.close();Also for every file being zipped, you should to call
    objZipOutputStream.closeEntry()to close that zipEntry.
    Hope this helps.

  • I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...

    I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...what should I do?

    Hi Arika,
    The drivers that you need to install to make your executable work depends on what your executable is doing. To get started, you need to have the LabVIEW Run-Time Engine installed on your target machine (the Win2000 machine you are planning to use) in order to run your executable. Next, you need to determine what drivers your executable uses, if any. For example, if you are using GPIB instrument control, you will need to install the NI-488 drivers on your target machine. If you are performing data acquisition, you will need to install NI-DAQ drivers. If you are doing image acquistion, you will need to install NI-IMAQ drivers.
    All these drivers are available for downloading on ni.com. To get the drivers, go to ht
    tp://www.ni.com/support , click on the link that takes you to Drivers and Updates (under Option 3), and click on the links to get to the driver(s) you need. For example, if you need the LabVIEW 5.1.1 Run-Time engine, click on the All Drivers and Updates by Application link on the main page (http://www.ni.com/softlib.nsf/). Then click on the LabVIEW link, Windows 2000, Run Time Engine, and then you will see the link to get to the page to download the LabVIEW 5.1.1 Run-Time Engine.
    I hope this information helps.
    Best Regards,
    Wilbur Shen
    National Instruments

  • Can Oracle Application Diagnostics for Java used with Grid Control 10.2.0.3

    I have installed Grid Control 10.2.0.3 in Solaris 10.
    I was asked to install AD4J . Is it necessary to upgrade Grid Control to 10.2.0.4 for installing AD4J or can I use the present 10.2.0.3 version withour upgrading it ?

    Hello.
    We already have Grid Control 10.2.0.4 and just installed AD4J 10.2.0.4. This version of AD4J is not integrated with Grid Control, and can be setup on any server by unzipping the downloaded file (no installer). I did find the installation/configuration documentation lacking, but worked through it with a little help from Oracle Support.
    The AD4J console has the look and feel of Grid Control, but is totally separate app with its own Apache server, etc.
    Daren

  • Problem with saving a pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21).

    Need advice on a saving file issue. I'm having problem with saving a .pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21). This is new as this error message just recently started to pop-up.

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • Problem in tutorial and zip file. can anyone file it or correct it..

    hi jdev experts,
    am using jdev11.1.1.5.0.
    when am new to these webservice. i followed this tutorial
    http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_14/jdtut_11r2_14.html
    url wsdl link when use that wsdl.
    throws some error.
    what is the reason john says. ok at second post of the thread.
    Consuming a Web Service from a Web Page
    so if i change the wsdl means and somethings has to be changed in tutorial steps.
    if any newbie crossing this tutorials feels very difficult to work. so can change the wsdl url link and those steps.
    and another thing I installed 11.1.2.0 and download that zip file in that tutorial and i run throws the same error.
    so. problem in tutorial and zip file. can anyone file or correct..
    i think think this is the right place to tell this. or else re-direct me.

    this is to arun.
    As the exception stack clearly mentions that the endpoint is moved, it is up to the users to make use of any other webservice.trace says link is moved i know.
    thing am here is:
    please make note on that tutorials.
    * note :- just like this consume some other external webservices. dont use this webservice this webservices link is broken.
    this what saying.
    this to john.
    thanks. thanks again.

  • I have really slow internet, i bought OS X mountain lion & tried for days to download it. my internet cuts every time & the download restarts from the beginning is thr a way to download the software as a "zip" file or from a link not app store?

    I have really slow internet, i bought OS X mountain lion & tried for days to download it. my internet cuts every time & the download restarts from the beginning is thr a way to download the software as a "zip" file or from a link not app store?

    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro 
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion?view=discussi ons
    http://www.apple.com/support/macbookpro
     Take it somewhere that has better broadband. The best you can do sometimes is invest in new modem that works with your system instead of the rental etc in most cases.
    Do a Safe Boot.
    Make sure your firewall is set properly. Don't use 3rd party. AV software can get in the way.
    Make sure you are getting the service and a clean strong modem signal - slow is one thing but if it drops off and can't maintain a connection you have hardware issues, not software - and upgrade to a new OS doesn't tend to improve, it may even not work with older networking equipment once you do get it.
     I agree and think electronic only goes too far. And when you do get it: burn the package and manually set it aside first before running the intaller! make a flash memory installer, put it on DVDs too.

  • PeopleSoft 8.52 Plug-in Implementation Guide for use with Grid Control

    Per the Readme accompanying the download of PeopleSoft 8.52 Plug-in for use with Grid Control (11.1.0.1)-- "For the implementation reference guide, refer to "PeopleSoft Enterprise Environment Management Plug-in 8.52 for Oracle Enterprise Manager Implementation Guide" which you can download from Oracle Technology Network."
    I don't seem able to find it.
    Can anyone point me in the right direction?
    TIA
    Jeri

    Duh, I was looking on the wrong site.

  • Dataguard creation with Grid Control

    hi all
    i'm trying to create a physical standby database with grid control. (asm to asm)
    after setting various properties in the wizard, grid goes on creating a broker config and when it gets to the step "preparing standby database creation" it fails with "ERROR: invalid username and/or password."
    no more info on where it fails.
    preciate if anyone has any tips on what to check.

    Hi jstem,
    thank you for your help
    The initial status of the DATAGUARD is SUCCESS, and all is working fine with the BROKER.
    The"Availability"=>"Dataguard Administration" page is correct, all the indications are right, except :
    - Estimate Failover Time : Not available
    Here is the output of 'Verify Data Guard Setup'
    Initializing
    Connected to instance srv-bdd02:PHOENIX
    Starting alert log monitor...
    Updating Data Guard link on database homepage...
    Skipping verification of fast-start failover static services check.
    Data Protection Settings:
    Protection mode : Maximum Availability
    Redo Transport Mode settings:
    PHNXFIN: SYNC
    PHNXENT: SYNC
    Checking standby redo log files.....OK
    Checking Data Guard status
    PHNXFIN : Normal
    PHNXENT : Normal
    Checking inconsistent properties
    Checking agent status
    WARNING: No credentials available for target. srv-bdd01
    Attempting agent ping ... OK
    WARNING: No credentials available for target. srv-bdd02
    Attempting agent ping ... OK
    Checking applied log on PHNXENT...OK
    Processing completed.
    Yes, i've already investigated about credentials ...
    ALL the credentials are OK for hosts, instance, agent, .... don't know where to add more credentials ....

  • Problems installing Grid Control on sparc 5.8

    problems installing Grid Control on sparc 5.8......After entering the parent directory and clicking next, the "preparing to install, Please wait, this will take a moment" screen comes up. It seems like this goes into an infinite loop. Any ideas?

    Using paramFile: /u02/10gEM/10gEM_R2/install/oraparam.ini
    Checking installer requirements...
    Checking operating system version: must be 5.6, 5.7, 5.8, 5.9 or 5.10. Actual 5.8
    Passed
    Checking Temp space: must be greater than 250 MB. Actual 1777 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 1798 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 256 Passed
    All installer requirements met.
    Checking operating system patches: 108652-66,108921-16,108940-53,108773-18,111310-01,109147-24,111308-03,111111-03,112396-02,110386-03,111023-
    02,108987-13,108528-21,108989-02,108993-18 Passed
    Checking for patch 108652-66; found 108652-66
    Checking for patch 108921-16; found 108921-21
    Checking for patch 108940-53; found 108940-63
    Checking for patch 108773-18; found 108773-18
    Checking for patch 111310-01; found 111310-01
    Checking for patch 109147-24; found 109147-30
    Checking for patch 111308-03; found 111308-05
    Checking for patch 111111-03; found 111111-03
    Checking for patch 112396-02; found 112396-02
    Checking for patch 110386-03; found 110386-03
    Checking for patch 111023-02; found 111023-03
    Checking for patch 108987-13; found 108987-13
    Checking for patch 108528-21; found 108528-29
    Checking for patch 108989-02; found 108989-02
    Checking for patch 108993-18; found 108993-18
    The commandline for unzip:
    /u02/10gEM/10gEM_R2/install/unzip -qqq ../stage/Components/oracle.swd.jre/1.4.2.0.0/1/DataFiles/\*.jar -d /tmp/OraInstall2007-03-14_10-46-21AM
    The commandline for unzip:
    /u02/10gEM/10gEM_R2/install/unzip -qqq ../stage/Components/oracle.swd.oui/10.2.0.1.0/1/DataFiles/\*.jar -d /tmp/OraInstall2007-03-14_10-46-21A
    M
    The commandline for unzip:
    /u02/10gEM/10gEM_R2/install/unzip -qqq ../stage/Components/oracle.swd.oui.core/10.2.0.1.0/1/DataFiles/\*.jar -d /tmp/OraInstall2007-03-14_10-4
    6-21AM
    The number of files bootstrapped for the jre is 640.
    The number of files bootstrapped for the oui is 94.
    Execvp of the child jre : the cmdline is /tmp/OraInstall2007-03-14_10-46-21AM/jre/1.4.2/bin/java, and the argv is
    /tmp/OraInstall2007-03-14_10-46-21AM/jre/1.4.2/bin/java
    -Doracle.installer.library_loc=/tmp/OraInstall2007-03-14_10-46-21AM/oui/lib/solaris
    -Doracle.installer.oui_loc=/tmp/OraInstall2007-03-14_10-46-21AM/oui
    -Doracle.installer.bootstrap=TRUE
    -Doracle.installer.startup_location=/u02/10gEM/10gEM_R2/install
    -Doracle.installer.jre_loc=/tmp/OraInstall2007-03-14_10-46-21AM/jre/1.4.2
    -Doracle.installer.nlsEnabled="TRUE"
    -Doracle.installer.prereqConfigLoc=
    -Doracle.installer.unixVersion=5.8
    -Djava.net.preferIPv4Stack=true
    -mx150m
    -cp
    The commandline for unzip:
    /u02/10gEM/10gEM_R2/install/unzip -qqq ../stage/Components/oracle.swd.oui.core/10.2.0.1.0/1/DataFiles/\*.jar -d /tmp/OraInstall2007-03-14_10-4
    6-21AM
    The number of files bootstrapped for the jre is 640.
    The number of files bootstrapped for the oui is 94.
    Execvp of the child jre : the cmdline is /tmp/OraInstall2007-03-14_10-46-21AM/jre/1.4.2/bin/java, and the argv is
    /tmp/OraInstall2007-03-14_10-46-21AM/jre/1.4.2/bin/java
    -Doracle.installer.library_loc=/tmp/OraInstall2007-03-14_10-46-21AM/oui/lib/solaris
    -Doracle.installer.oui_loc=/tmp/OraInstall2007-03-14_10-46-21AM/oui
    -Doracle.installer.bootstrap=TRUE
    -Doracle.installer.startup_location=/u02/10gEM/10gEM_R2/install
    -Doracle.installer.jre_loc=/tmp/OraInstall2007-03-14_10-46-21AM/jre/1.4.2
    -Doracle.installer.nlsEnabled="TRUE"
    -Doracle.installer.prereqConfigLoc=
    -Doracle.installer.unixVersion=5.8
    -Djava.net.preferIPv4Stack=true
    -mx150m
    -cp
    /tmp/OraInstall2007-03-14_10-46-21AM:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/j
    lib/oneclick.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/srvm.jar:/tmp/Ora
    Install2007-03-14_10-46-21AM/oui/jlib/share.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2007-03-14_10
    -46-21AM/oui/jlib/xml.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/or
    ai18n-mapping.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/emCfg.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/ojmisc.jar:/tmp/OraIns
    tall2007-03-14_10-46-21AM/oui/jlib/InstImages.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp.jar:/tmp/OraInstall2007-03-14_10-46-2
    1AM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstH
    elp_fr.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp_ja.jar:/tmp/Or
    aInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2007-03
    -14_10-46-21AM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2007-03-14_10-46-21
    AM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/help4.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/help4-nls.jar
    :/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/ewt3.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2007
    -03-14_10-46-21AM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/swingaccess.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui
    /jlib/classes12.jar::/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2007-03-14_10-46-21AM/oui/jlib/jewt4.jar:/tmp/
    OraInstall2007-03-14_10-46-21AM/oui/jlib/jewt4-nls.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext/jlib/em_1click_help.jar:/tmp/OraInstall2007-03
    -14_10-46-21AM/ext/jlib/em_1click_help_de.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext/jlib/em_1click_help_es.jar:/tmp/OraInstall2007-03-14_10
    -46-21AM/ext/jlib/em_1click_help_fr.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext/jlib/em_1click_help_it.jar:/tmp/OraInstall2007-03-14_10-46-21
    AM/ext/jlib/em_1click_help_ja.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext/jlib/em_1click_help_ko.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext
    /jlib/em_1click_help_pt_BR.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext/jlib/em_1click_help_zh_CN.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext
    /jlib/em_1click_help_zh_TW.jar:/tmp/OraInstall2007-03-14_10-46-21AM/ext/jlib/cfmlogger_properties.jar
    oracle.sysman.emgc.oneclick.OneStartup
    -scratchPath
    /tmp/OraInstall2007-03-14_10-46-21AM
    -sourceLoc
    /u02/10gEM/10gEM_R2/install/../stage/products.xml
    -sourceType
    network
    -timestamp
    2007-03-14_10-46-21AM
    -nowelcome

  • How to monitor Oracle Glassfish with Grid Control 11g

    Hi,
    Could someone tell me how can i monitor Oracle Glassfish with Grid Control 11g ?? i think i need a plug-in but i don't know where could i download it
    I guess the information i can monitor depends on the plug-in :)
    Regards
    Carlos

    Hi Carlos,
    We do have partners that routinely write plug-ins to extend OEM. If you take a look at the EM Extensibility Exchange below, you will find various extensions that partners such as Blue Medora have written:
    http://apex.oracle.com/pls/apex/f?p=34841:1:26399399216901:::::
    Please keep in mind though that between SLM and JVM diagnostics, you would have a significant amount of visibility even without the Glassfish target.
    Cheers,
    Glen

  • URGENT ! JDEV 10.1.2 Problem with data control generated from session bean

    I got a problem with data control generated from session bean which return a collection of data transfer object.
    The dto's seem to be correct. The session bean load correctly the data into and the object's are plenty of data. Using the console to display the dto content is ok.
    When generating a data control from this session bean and associate the dto included in the collection only the first object level and one-to-one dto object are correctly setted in the data control. Object that represent collection into the dto (one-to-many foreign key) are setted as collection with an iterator but the structure of the object is not setted. I don't know how to associate this second level of collection with the dto bean class to obtain the attributes definition.
    I created a case with hr schema like the hrApp demo application in the tutorial with departments and employees table. I got the same problem.
    Is it a bug ?
    It exists a workaround to force the data control to understand the collection data structure ?
    Help is welcome ! this is urgent !!!

    we found the problem by assigning the child dto bean class to the node representing the iterator in the xml file corresponding to the master dto.

  • HT204382 Hi, Ive just got myself a Macbook Pro, and Im having problems with sound on movie files. The format is wmv and they play OK on a windows 7 laptop, and Im trying to play them now on the MAC. The picture is OK , but no sound. I have Flip4Mac - no d

    Hi, Ive just got myself a Macbook Pro, and Im having problems with sound on movie files. The format is wmv and they play OK on a windows 7 laptop, and Im trying to play them now on the MAC. The picture is OK , but no sound. I have Flip4Mac - no diference

    Download and install the free VLC for Mac - that should work:
    http://www.videolan.org/vlc/download-macosx.html

  • I've switched from Google to Firefox because I was so tired of Google crashed all the time. Now I have the same problem with Firefox, Bank id, file down

    Hej!
    I've switched from Google to Firefox because I was so tired of Google crashed all the time. Now I have the same problem with Firefox, Bank id, file downloading, accessing Web pages, none of it works. What is the error?
    Ronnie.

    When Firefox crashes, it usually records information about what was happening at that moment and displays the Mozilla Crash Reporter. Are you seeing that, or is Firefox just freezing and you're killing it?
    Assuming you have crashes, you can submit that data to Mozilla and share it with forum volunteers to see whether it points to the solution. Please check the support article "[[Firefox Crashes]]" (especially the last section) for steps to get those crash report IDs, and then post some of the recent ones here.
    If that's not possible, have you tried Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    Not all add-ons are disabled: Flash and other plugins still run
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference?

Maybe you are looking for

  • Scale a line, not it's outline/stroke...

    If I have a curved line, made up of several vertices, and I want to scale it only in the X, how do I do so without affecting/distorting its stroke/outline? It seems every method I try distorts the outline of the line, and I don't want this.

  • How to set conditions as a query in cfl?

    i have a combo box and a matrix. i have a cfl in the matrix column, once i select the particular value in the combobox the corresponding values must appear in the cfl. how can this be done?

  • Tracking email failure in BPEL 11g

    Hi All, I am working with email activity in Oracle BPEL 11g and its working fine.But i want to handle the failure of emails. Like whenever i send an email to a wrong email-id then it must bounce back to the From email-id with same subject line as spe

  • Questions regarding Dialog component.

    JDeveloper 11g + ADF BC + ADF RC I have two questions about the af:Dialog component. First, I notice there is a property called 'AffirmativeTextAndAccessKey'. Is there any way to set that to a double-click event? Second, is there any way to stretch a

  • Restoring Photos from Time Machine external backup

    HELP PLEASE ! Have accidentally deleted/removed all of my photos from iPhoto. Can I restore from backup? How please. THANKS a bunch!