Version 10.1.82.76 buffering nightmare

Please please please somone come up with an alternative to this product or fix it.  Various sites seeem to work fine the first time but after one video finishes 50 % of the time no other videos will load from that site.  Examples of sites that will not download and continue to buffer;
www.cnet.com
www.msnbc.com
www.cnn.com
www.foxnews.com
www.espn.com
Shall I go on.  I really doubt that these sites have any kind of upload speed issue and or programming bug.
I have been dealing with this for at least 2 months now.
I am running WindowsXp with 4GB of memory, solid state harddrive and Internet explorer 8 4mb download 768kb up at work and 25mb download 10000 up at home.  Therefore it is not download related.  I have tried all solutions offered including, Enablein/disabling harware acceleration, increasing/decreasing cache size, and updating video driver.
Machine scans clean with no viruses, all other internet content loads without an issue.  I am also having the same problem on 2 other machines with similar or better configurations.
Bottom line I am seriously considering dumping my entire Adobe Master collection and suggesting another product for my office if this does not get fixed by the end of September.
Please fix this, even if it means releasing an older version with the ability to press pause until the video loads.  The new version is not better it is worse...MUCH worse.

I have the IE Flash update but we use French updates:
Adobe Flash Player 10.1.82.76 (Internet Explorer) for Windows (Full/Upgrade)
(All Languages)
"dduvall" <[email protected]> a crit dans le message de
groupe de discussion : [email protected]..
>
> jortman83;2013979 Wrote:
>> I just show the other browsers patch not one for IE
>
> OK, now I'm not so freaked out. I'd rather not hit the magic reset
> button, AGAIN, on another patch management issue.
>
> Thanks for the reply.
>
>
> --
> dduvall
> ------------------------------------------------------------------------
> dduvall's Profile: http://forums.novell.com/member.php?userid=8422
> View this thread: http://forums.novell.com/showthread.php?t=418721
>

Similar Messages

  • Trial Version of Elements 10 - video buffering issue

    Hi,
    I have just tried to work with a small .mov 25 sec video clip to test out this software.  It will only play very jerkily but the audio is fine.  The software should be compatible with .mov files, so can anyone explain why it won't play the video smoothly please?  It seems this software has a lot to offer, having struggled with Movie Maker for the last 4 years, I felt it was time to invest in some software that will enable me to produce home DVDs that are about 1.5hrs long.  I was hoping this was the answer, however, now I am already experiencing problems with the video footage, I am getting as frustrated with this as I was with Movie Makers poor performance! 

    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainspector.massanti.com/
    http://blogs.adobe.com/premiereprotraining/2011/02/red-yellow-and-green-render-bars.html
    If you have a red line over the timeline after importing a video and before adding any effects... your project is wrong for your video... read above about codecs
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project
    More information needed for someone to help... click these links and provided the requested information
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    Now, specific to PreElements
    User Guide PDF http://help.adobe.com/en_US/premiereelements/using/index.html
    Right click the PDF link in the upper right corner and select to save to your hard drive
    Steve's Basic Training Tutorials http://forums.adobe.com/thread/537685

  • Protocol Buffers support in TTCN-3 Titan

    Greetings.
    ASN.1 is a language for describing structured information and the way this information is sent across dissimilar communication systems. The structured information is encoded in binary. ASN.1 used to be popular in telecommunications but nowadays is not considered to be cool. In comparison, Protocol Buffers are a mechanism to describe structured information and encoding it in binary, and yes, unlike ASN.1 ,Protocol Buffers are hot.
    For years, the Earth was ruled by so called human-readable protocols , such as XML and JSON. It appears that humanity got bored of reading all that stuff, so we experience a return to binary encodings. (Either that, or machine-to-machine communication outweighs machine-to-human, and machines don't want us to meddle.)
    Anyhow, let's see how Protocol Buffers are supported in the Titan implementation of TTCN-3.
    Support comes in the form of scripts, PBPMG.sh and PBPMG.awk (see https://github.com/eclipse/titan.ProtocolModules.ProtoBuff )
    (where PBMG resolves as Protocol Buffer Protocol Module Generator -the PBPMG is currently based on the version 2.5.0 version of the Google Protocol Buffers);
    the PBMG.sh , when invoked, generates the TTCN-3 equivalent of the ProtoBuff file:
    For example
    PBPMG.sh protobuf.proto
    where the content of protobuf.proto is:
    package protobuf;
    message Request {
    required int32 command_id = 1;
    required int32 request_data_length = 2;
    required bytes request_data = 3;
    optional bytes attachment = 4;
    repeated string properties = 5;
    message Response {
    required int32 command_id = 1;
    required int32 response_status = 2;
    required int32 response_data_length = 3;
    required bytes response_data = 4;
    optional bytes attachment = 5;
    repeated string properties = 6;
    will generate the following protobuf.ttcn file:
    // TTCN-3 module generated from protobuf.proto
    module protobuf {
    // imports
    import from ProtoBuff_Types all;
    // public imports
    // encoder/decoder function declaration
    external function f_encode_protobuf_Request(in protobuf_Request pdu) return octetstring
    external function f_decode_protobuf_Request(in octetstring pdu) return protobuf_Request
    external function f_encode_protobuf_Response(in protobuf_Response pdu) return octetstring
    external function f_decode_protobuf_Response(in octetstring pdu) return protobuf_Response
    // definitions for enums
    // definitions for messages
    type record protobuf_Request{ // Request
    int32 command_id,
    int32 request_data_length,
    bytes request_data,
    bytes attachment optional,
    record of string properties
    type record protobuf_Response{ // Response
    int32 command_id,
    int32 response_status,
    int32 response_data_length,
    bytes response_data,
    bytes attachment optional,
    record of string properties
    plus the codecs protobuf_EncDec.cc, protobuf_EncDec.hh.
    The codecs are not based on the built-in binary codec , they are custom functions.
    Now we have everything to represent and encode/decode Protocol Buffers structures.
    module protobuff_test {
    // imports
    import from ProtoBuff_Types all;
    import from protobuf all;
    template protobuf_Request t_Request:= { // Request
    command_id := 10,
    request_data_length:= 20,
    request_data := 'AABBCCDDEEFF'O ,
    attachment:= 'AAAAAABBBBBB'O ,
    properties := {"AA","BB"}
    template protobuf_Response t_Response:= { // Response
    command_id := 10,
    response_status:= 100,
    response_data_length:= 20,
    response_data := 'AABBCCDDEEFF'O ,
    attachment:= 'AAAAAABBBBBB'O ,
    properties := {"AA","BB"}
    control
    log(f_encode_protobuf_Request(valueof(t_Request)))
    log(f_decode_protobuf_Request(f_encode_protobuf_Request(valueof(t_Request))))
    log(f_encode_protobuf_Response(valueof(t_Response)))
    log(f_decode_protobuf_Response(f_encode_protobuf_Response(valueof(t_Response))))
    The above code, when extracted, compiled and executed:
    cd ProtoBuff
    cd /bin
    ../install.script
    make
    ./proto
    will encode/decode back and forth the messages , as seen in the log file:
    13:12:06.020216 protobuff_test.ttcn:30 Execution of control part in module protobuff_test started.
    13:12:06.020256 protobuff_test.ttcn:33 '080A10141A06AABBCCDDEEFF2206AAAAAABBBBBB2A0241412A024242'O
    13:12:06.020345 protobuff_test.ttcn:34 { command_id := 10, request_data_length := 20, request_data := 'AABBCCDDEEFF'O, attachment := 'AAAAAABBBBBB'O, properties := { "AA", "BB" } }
    13:12:06.020405 protobuff_test.ttcn:36 '080A106418142206AABBCCDDEEFF2A06AAAAAABBBBBB3202414132024242'O
    13:12:06.020448 protobuff_test.ttcn:37 { command_id := 10, response_status := 100, response_data_length := 20, response_data := 'AABBCCDDEEFF'O, attachment := 'AAAAAABBBBBB'O, properties := { "AA", "BB" } }
    13:12:06.020489 protobuff_test.ttcn:37 Execution of control part in module protobuff_test finished.
    Using the appropriate transport, Protocol Buffers messages encoded in binary can be sent across to other machines that can understand the lingo.
    Makefile was generated with
    makefilegen -s -e proto *.ttcn *.cc *.hh
    Best regards
    Elemer

    Hi Jeff,
    Are you using JDevelopers internal client? The internal client does not support all authentication methods just the most popular ones (ext, pserver, ssh2).
    If you select an external cvs client in preferences on the Versioning -&gt; CVS page :sspi should now be one of the default access methods.
    Thanks,
    Geoff

  • USB Serial CDMA Mobile WWAN CCL PPP PL2303

    Hello all,
    I have an internet connection issue or issues. It seems this is a complicated issue because there are so many layers involved.
    Hardware:
    iMac9,1
    2, IOGear USB Extension cables (powered)
    Mobile phone manufacturer supplied USB-Serial Cable.
    Huawei branded CDMA 2000 1x RTT mobile phone with Qualcomm modem and Prolific PL2303 USB-Serial Bridge.
    R-UIM card for local ISP in Nepal (United Telecom Limited)
    Software:
    Mac OS 10.6.8
    I have tried a few different ways to make the connection and getting a connection isn't necessarily the issue.
    First I tried to use the Prolific PL2303 kext. It's widely known you have to add the devices Vendor ID and Product ID to the info.plist file for the driver to load the device at boot time. But, apparently we don't need that third-party kext because Apple has built in support for Huawei as evidenced in three existing kext files: WWANSupport, WWANSupport1, and AppleUSBMergeNub (that lives as a plugin inside IOUSBFamily.kext). Problem was that the phone was not being recognized by the system even though the Vendor ID was a match. Any guesses why?
    I figured a way for the device to be recognized via the CellPhoneHelper.kext. Huawei is not listed but duplicating the 'Qualcomm CDMA Technologies MSM (KPC680)' IOKitPersonality and then reconfiguring it to match my Huawei device by changing the Vendor and Product IDs worked perfectly. Once I cleared the system cache files and rebooted the phone was recognized immediately as a WWAN device and I could set it up in Network Preferences. Using the Generic and CDMA settings for the modem script I am able to connect. That's where the fun bit ends.
    The connection gets wonky. It randomly leaves me in limbo, seemingly connected but not able to receive any data. If I 'disconnect' using the WWAN menu, it shows me as being disconnected but actually I am not, the phone is still be connected to the tower. If I open up a serial program I can see that the phone is still sending data. The only way for me to end the connection is to unplug the USB cable. Then I can 'Connect' again and everything pretty much repeats. I will have a decent connection and then at some random point I will loose it and be unable to disconnect from the tower. This is a stationary setup; not roaming.
    One thing I have noticed is that the tower will give me a different WAN address randomly. Maybe this is the issue! While connected I will see in 'ppp log' that I am being logged out and logged in again and then I am given a different LAN address and WAN address. Sometimes I will get an error, 'Could Not Authenticate" and I will be disconnected. Sometimes it appears to work seamlessly. This all happens automatically. I am not sure from which side this is being initiated, my modem or software or the ISP's?
    I have poked around but don't really know what I am looking for. Is this an issue with the CDMA.ccl, or an issue with PPP, or is it a USB IOKit issue, or a kext issue? Who knows.
    When typing 'sudo dmesg' in Terminal I get something that seems odd to me, but might be completely normal.
    AppleWWANSupport1: Version number - 2.0, Input buffers 16, Output buffers 4
    AppleWWANSupport1: Version number - 2.0, Input buffers 4, Output buffers 2
    I took note of the Input and Output buffers in the CellPhoneHelper.kext info.plist and they are 16 and 4 for my device. I don't know why 4 and 2 immediately override those. I don't see anything in AppleWWANSupport1 that has 4 and 2 set for buffers. Could this be the issue, i.e. the connection freezing because the buffers get full? Or could it be because the mobile phone is using two channels for the modem, /dev/cu.wwan and /dev/cu.wwanCNTL and that is normal??
    I took a look at the CDMA.ccl modem script. I am not a modem script designer but I noticed that 'C' is set twice in the same init, &C1&C2. I am not exactly sure why that would be, any ideas?? Track remote DCD (&C1); Unix compatible DCD control (&C2). What about 'hsreset'? Not sure but I guess the Prolific PL2303 chip handles the serial port flow control options? The literature is a bit out of date on this.
    So, lots of questions and no answer so far. A bit too complicated as there are so many layers working together and this is not a supported configuration. I do see a lot of people asking similar questions but mostly it's on different systems, like Linux, etc.. and with different hardware.
    Would love to hear from someone with experience, a programmer or someone familiar with Apple's IOKit and modem inits.
    Regards,
    John

    Hello all,
    I have an internet connection issue or issues. It seems this is a complicated issue because there are so many layers involved.
    Hardware:
    iMac9,1
    2, IOGear USB Extension cables (powered)
    Mobile phone manufacturer supplied USB-Serial Cable.
    Huawei branded CDMA 2000 1x RTT mobile phone with Qualcomm modem and Prolific PL2303 USB-Serial Bridge.
    R-UIM card for local ISP in Nepal (United Telecom Limited)
    Software:
    Mac OS 10.6.8
    I have tried a few different ways to make the connection and getting a connection isn't necessarily the issue.
    First I tried to use the Prolific PL2303 kext. It's widely known you have to add the devices Vendor ID and Product ID to the info.plist file for the driver to load the device at boot time. But, apparently we don't need that third-party kext because Apple has built in support for Huawei as evidenced in three existing kext files: WWANSupport, WWANSupport1, and AppleUSBMergeNub (that lives as a plugin inside IOUSBFamily.kext). Problem was that the phone was not being recognized by the system even though the Vendor ID was a match. Any guesses why?
    I figured a way for the device to be recognized via the CellPhoneHelper.kext. Huawei is not listed but duplicating the 'Qualcomm CDMA Technologies MSM (KPC680)' IOKitPersonality and then reconfiguring it to match my Huawei device by changing the Vendor and Product IDs worked perfectly. Once I cleared the system cache files and rebooted the phone was recognized immediately as a WWAN device and I could set it up in Network Preferences. Using the Generic and CDMA settings for the modem script I am able to connect. That's where the fun bit ends.
    The connection gets wonky. It randomly leaves me in limbo, seemingly connected but not able to receive any data. If I 'disconnect' using the WWAN menu, it shows me as being disconnected but actually I am not, the phone is still be connected to the tower. If I open up a serial program I can see that the phone is still sending data. The only way for me to end the connection is to unplug the USB cable. Then I can 'Connect' again and everything pretty much repeats. I will have a decent connection and then at some random point I will loose it and be unable to disconnect from the tower. This is a stationary setup; not roaming.
    One thing I have noticed is that the tower will give me a different WAN address randomly. Maybe this is the issue! While connected I will see in 'ppp log' that I am being logged out and logged in again and then I am given a different LAN address and WAN address. Sometimes I will get an error, 'Could Not Authenticate" and I will be disconnected. Sometimes it appears to work seamlessly. This all happens automatically. I am not sure from which side this is being initiated, my modem or software or the ISP's?
    I have poked around but don't really know what I am looking for. Is this an issue with the CDMA.ccl, or an issue with PPP, or is it a USB IOKit issue, or a kext issue? Who knows.
    When typing 'sudo dmesg' in Terminal I get something that seems odd to me, but might be completely normal.
    AppleWWANSupport1: Version number - 2.0, Input buffers 16, Output buffers 4
    AppleWWANSupport1: Version number - 2.0, Input buffers 4, Output buffers 2
    I took note of the Input and Output buffers in the CellPhoneHelper.kext info.plist and they are 16 and 4 for my device. I don't know why 4 and 2 immediately override those. I don't see anything in AppleWWANSupport1 that has 4 and 2 set for buffers. Could this be the issue, i.e. the connection freezing because the buffers get full? Or could it be because the mobile phone is using two channels for the modem, /dev/cu.wwan and /dev/cu.wwanCNTL and that is normal??
    I took a look at the CDMA.ccl modem script. I am not a modem script designer but I noticed that 'C' is set twice in the same init, &C1&C2. I am not exactly sure why that would be, any ideas?? Track remote DCD (&C1); Unix compatible DCD control (&C2). What about 'hsreset'? Not sure but I guess the Prolific PL2303 chip handles the serial port flow control options? The literature is a bit out of date on this.
    So, lots of questions and no answer so far. A bit too complicated as there are so many layers working together and this is not a supported configuration. I do see a lot of people asking similar questions but mostly it's on different systems, like Linux, etc.. and with different hardware.
    Would love to hear from someone with experience, a programmer or someone familiar with Apple's IOKit and modem inits.
    Regards,
    John

  • Keep being met with the same error sign: 'Apple Application Support was not found. Apple Application Support is required to run iTunesHelper. Please uninstal iTunes, and install again. Error 2'

    iTunes would not open, telling me I needed to update to a newer vesion. I downloaded the latest but kept bing met with the error  'Apple Application Support was not found. Apple application Support is required to run iTunesHelper. Please uninstal iTunes, then install iTunes again. Error 2'. I have uninstaled and installed countless limes over the past few months and still get the same message. How do I install Apple application support??

    Like beaniespike and yourselves...I've tried everything to install itunes on my PC Vista Home Premium 32 bit system. Had older version of itunes running well on it but then just bought Ipod and hooked it up and was told to upgrade by uninstalling old version and reinstalling new version..oops..then the nightmares
    Uninstalled /reinstalled
    Disconnected all firewalls and antivirus and even uninstalled them with Revo..
    with that effort..I then used winrar to extract to a file and manually install each piece..
    all load EXCEPT Apple Application Support..but only if I do it manually..
    Quicktime had to be manually installed.
    Changed RegSZ to 0xFFFFFF value..still same error An error occurred during the installation of assembly policy 8.0 microsoft VC80. CRT, type =..blah, blah blah..ending HRESULT.... in middle of install..then at end error Apple Application Support not found error 2.
    Whew..sooOO frustrated! Have Visual C++ 2005..am having trouble installing upgrades to it..
    Windows Installer likes to quit alot..not sure how to fix that..urgh
    Want to trash Ipod and itunes all together since finding solution that works for 2 days straight has been in vain!
    Any help is much appreciated!

  • Browsers difference

    Hi,
    www.ekongo.org
    I tested this page on ie 6.0 it looked fine, but when i turned to chrome, firefox and safari (last versions) the page is a real nightmare.
    More strange again is when i compare the situation with that of this other page http://www.ekongo.org/spectacles/spectacles.php
    this time all the mentionned browsers show not significant difference.
    I am pretty sure i approached both pages design about the same way. Can someone please help me point to where something went wrong please?
    I will be passing deadline if i dont find a solution real quick (spent 80% of this project's time debugging and troubleshouting

    Results of HTML validation on your page:
    http://validator.w3.org/check?uri=http://www.ekongo.org/&charset=(detect+automatically)&do ctype=Inline&group=0
    Results of CSS validation on your page:
    http://jigsaw.w3.org/css-validator/validator?uri=http://www.ekongo.org/&profile=css21&user medium=all&warning=1〈=en
    It's no surprise that your page looks different on IE6.0 and Chrome, Firefox, and Safari. IE6.0 is at this point many years out of date. (See latest browser statistics: http://www.w3schools.com/browsers/browsers_stats.asp)
    Of course, that does not help you much. Checking out the validation errors (see the first two links above) may solve some of your problems, though.
    In addition to W3C validation tools, be sure to take advantage of the tools right in Dreamweaver. When errors are noted, solutions are noted as well, with a link to a help page.
    Beth

  • More transparency in My BT please!

    Just had a rather frustrating experience with a customer services rep about cancelling my contract. The girl was very helpful but the situation is ridiculous. My contract for BT Infinity and line rental expires on 18 June, or so I thought, and my TV contract expires 22 October, so I was happy to just buy out of the TV contract at the £3 a month rate.
    However, after spending time on the phone, I've now been told that my phone contract was automatically extended when I moved house so now I have three different contracts all ending at completely different times of year. And it took a very long phone call to even get that information.
    Why are the contract start and end dates not availabe in the account management section of the website? I know you don't want people to leave, but locking them in by having conflicting contract dates, penalising people who stay with you when they move, charging exorbitant early cancellation fees and making this information all but impossible to find is not the way to keep happy customers.
    If this information had been available online, I would have been able to plan this much more easily and wouldn't be so frustrated right now. I shall be leaving BT as soon as my web of contracts will allow and I most certainly will not be passing on any recommendations to my peers.
    Take a look at the new policies surrounding current account switching if you need inspiration.... 

    This is essentially a customer to customer and messages do not necessarily reach anyone in BT. It's often been suggested that contract dates would be a useful addition to MyBT, but it seems to have fallen on deaf ears. The release of the current version was a bit of a nightmare, and even now the services info is not accurate for many customers. I wouldn't hold my breath for any further improvements.
    You can click the white star next to this message if you think it was helpful.

  • Vista reporting of the amount of memory

    Under vista my macbook shows 3048GB of memory while under lepeord it shows the full 4gb? Anybody else running vista that gets funny memory size reported? The machine has 4GB in it.

    Stefan thanks for the update. I did some more investigation and found the fact is that Vista 32 supports 4GB but the memory for other devices is reserved in the contingous memory space. See Microsoft article below:
    The system memory that is reported in the System Information dialog box in Windows Vista is less than you expect if 4 GB of RAM is installed
    View products that this article applies to.
    Article ID : 929605
    Last Review : March 17, 2007
    Revision : 1.1
    On This Page
    SYMPTOMS
    CAUSE
    WORKAROUND
    MORE INFORMATION
    PAE-mode-induced driver compatibility issues
    SYMPTOMS
    If a computer has 4 gigabytes (GB) of random-access memory (RAM) installed, the system memory that is reported in the System Information dialog box in Windows Vista is less than you expect. For example, the System Information dialog box may report 3,120 megabytes (MB) of system memory on a computer that has 4 GB of memory installed (4,096 MB).
    Note You can access the System Information dialog box in the following ways:• Click Start, type System in the Search box, and then click System under Programs.
    • Double-click System in Control Panel.
    • Click Start, right-click Computer, and then click Properties.
    • Click Show more details in the Windows Vista Welcome Center window.
    Back to the top
    CAUSE
    This behavior is the expected result of certain hardware and software factors.
    Various devices in a typical computer require memory-mapped access. This is known as memory-mapped I/O (MMIO). For the MMIO space to be available to 32-bit operating systems, the MMIO space must reside within the first 4 GB of address space.
    For example, if you have a video card that has 256 MB of onboard memory, that memory must be mapped within the first 4 GB of address space. If 4 GB of system memory is already installed, part of that address space must be reserved by the graphics memory mapping. Graphics memory mapping overwrites a part of the system memory. These conditions reduce the total amount of system memory that is available to the operating system.
    The reduction in available system memory depends on the devices that are installed in the computer. However, to avoid potential driver compatibility issues, the 32-bit versions of Windows Vista limit the total available memory to 3.12 GB. See the "More information" section for information about potential driver compatibility issues.
    If a computer has many installed devices, the available memory may be reduced to 3 GB or less. However, the maximum memory available in 32-bit versions of Windows Vista is typically 3.12 GB.
    Back to the top
    WORKAROUND
    For Windows Vista to use all 4 GB of memory on a computer that has 4 GB of memory installed, the computer must meet the following requirements: • The chipset must support at least 8 GB of address space. Chipsets that have this capability include the following:• Intel 975X
    • Intel P965
    • Intel 955X on Socket 775
    • Chipsets that support AMD processors that use socket F, socket 940, socket 939, or socket AM2. These chipsets include any AMD socket and CPU combination in which the memory controller resides in the CPU.
    • The CPU must support the x64 instruction set. The AMD64 CPU and the Intel EM64T CPU support this instruction set.
    • The BIOS must support the memory remapping feature. The memory remapping feature allows for the segment of system memory that was previously overwritten by the Peripheral Component Interconnect (PCI) configuration space to be remapped above the 4 GB address line. This feature must be enabled in the BIOS configuration utility on the computer. View your computer product documentation for instructions that explain how to enable this feature. Many consumer-oriented computers may not support the memory remapping feature. No standard terminology is used in documentation or in BIOS configuration utilities for this feature. Therefore, you may have to read the descriptions of the various BIOS configuration settings that are available to determine whether any of the settings enable the memory remapping feature.
    • An x64 (64-bit) version of Windows Vista must be used.
    Contact the computer vendor to determine whether your computer meets these requirements.
    Note When the physical RAM that is installed on a computer equals the address space that is supported by the chipset, the total system memory that is available to the operating system is always less than the physical RAM that is installed. For example, consider a computer that has an Intel 975X chipset that supports 8 GB of address space. If you install 8 GB of RAM, the system memory that is available to the operating system will be reduced by the PCI configuration requirements. In this scenario, PCI configuration requirements reduce the memory that is available to the operating system by an amount that is between approximately 200 MB and approximately 1 GB. The reduction depends on the configuration.
    Back to the top
    MORE INFORMATION
    PAE-mode-induced driver compatibility issues
    Driver compatibility issues that are related to Data Execution Prevention (DEP) are typically physical address extension (PAE) mode-induced compatibility issues.
    Note PAE is required only on computers that have processors that support hardware-enforced DEP.
    DEP may cause compatibility issues with any driver that performs code generation or that uses other techniques to generate executable code in real time. Many drivers that experienced these issues have been fixed. Because DEP is always on for drivers that are on 64-bit versions of Windows, these drivers typically experienced compatibility issues. However, there is no guarantee that all drivers have been updated to fix PAE-mode-induced compatibility issues. However, there are few drivers that use these techniques. DEP alone does not typically cause driver compatibility issues.
    The primary driver compatibility issues that you may experience occur when you run PAE mode on 32-bit computers. PAE mode enables processors to use more than 4 GB of memory. The primary difference between PAE memory paging schemes and non-PAE memory paging schemes is the additional level of paging that is required in PAE mode. PAE mode requires three levels of paging instead of two levels of paging.
    Some drivers might not load if PAE mode is enabled because the device might be unable to perform 64-bit addressing. Or, the drivers might be written with the assumption that PAE mode requires more than 4 GB of memory. Such drivers are written with the expectation that the drivers will always receive 64-bit addresses in PAE mode and that the driver or the device cannot interpret the address.
    Other drivers might load in PAE mode but cause system instability by directly modifying system page table entries (PTE). These drivers expect 32-bit page table entries but receive 64-bit PTEs in PAE mode instead.
    The most common PAE compatibility issue for drivers involves direct memory access (DMA) transfers and map register allocation. Many devices that support DMA, typically 32-bit adapters, cannot perform 64-bit physical addressing. When these devices run in 32-bit mode, the devices can address all physical address space. In PAE mode, data can be present at a physical address that is larger than 4 GB. To enable devices that have these constraints to function in this scenario, Microsoft Windows 2000 Server and later versions of Windows provide double-buffering for the DMA transaction. Windows 2000 Server and later versions of Windows do this by providing a 32-bit address that is indicated by a map register. The device can perform the DMA transaction to the 32-bit address. The kernel copies the memory to the 64-bit address that is provided to the driver. When the computer runs with PAE mode disabled, drivers for 32-bit devices do not require that system memory be allocated to their map registers. This means that double-buffering is not required because all devices and all drivers are contained within the 32-bit address space. Tests of drivers for 32-bit devices on 64-bit processor–based computers have demonstrated that DMA-capable drivers that are client tested typically expect unlimited map registers.
    The third-party products that this article discusses are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, about the performance or reliability of these

  • How to save image which is inside an applet?

    In my web application, I am displaying some graphs using applet. I wish to let the user save the graphs as images from the browser.
    I would really appreciate if somebody could inform me about this.
    Thanks
    Sachin

    A couple of things...
    1) You will need to sign your applet afterwards, otherwise the user will not be able to save the graphic to their hard drive due to the Java security policy.
    2) I did something similar, a code snippet is below. Mine was a Servlet version though, and sent the buffered stream to a JSP page where it was displayed as a graphic. You can figure out how to modify this so that it goes to a File stream instead... You will
    OutputStream stream;
    BufferedImage bi = new BufferedImage(pieValueObject.getCanvasWidth(),                          pieValueObject.getCanvasHeight(),
    BufferedImage.TYPE_BYTE_INDEXED);
    Graphics2D graphics = (Graphics2D)bi.createGraphics();
    // paint all your stuff on the graphics object created above
    // use a JPEG encoder to actually take what is on the graphics
    // object inside the BufferedImage, and encode it to the stream.
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(stream);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
    param.setQuality(1.0f, false);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(bi);
    // Your graphic is now in the Output stream.

  • TYPELOAD_NEW_VERSION error for a job

    Hello Gurus,
    We have made few changes to a customized structure and a program. Moved to production, job is scheduled for every day.
    But few times it had ended in above short dump. No transport of objects taken place, when job was failed.
    we are unable to find the root cause, kindly suggest.
    Regards,

    Hi There,
    The TYPELOAD_NEW_VERSION dump can occur after changes have taken place to dictionary objects. The cause of the dump is explained in the attached note 162991 (Generation tools for ABAP programs) which may be of some interest. Rather than reactivate in SE11 directly, you may wish to use the TOUCHTAB report as described in note 162991 which ensures all related programs are regenerated at the same time. Afterwards you may need to restart the system to ensure the correct versions are loaded
    into your buffers.
    I hope this information helps.
    Warm wishes,
    Mohammed Hussain.

  • Search tool bar doesnt allow local searches

    new version of firefox makes searching a nightmare
    it only allows google.com
    not useful if you live in the uk and want local search results
    tried to add google.co.uk doesnt work.
    will this problem be resolved?

    new version of firefox makes searching a nightmare
    it only allows google.com
    not useful if you live in the uk and want local search results
    tried to add google.co.uk doesnt work.
    will this problem be resolved?

  • Should I uninstall PSE Ver 9 before installing PSE Ver 12 retail pack?

    MY laptop came with PSE Ver 9 preloaded.
    I have bought the discs for PSE Ver 12 ( Photoshop and Premier Elements ) In Amazon.
    Should I uninstall Version 9 using the Program Features Uninstall routine. BEFORE loading Ver 12?

    THanks Barbara
    interested when you say missing features, that can be copied over?
    Is  there any Performance degredation associated with leaving a redundant program there.? Ie will the unused program slow down ver 12? Eg will it clog up shared services etc.
    or more likely, ( after my nightmare trying to load PSE VER 12,  when it had to be uninstalled - it eventually took one of their top technicians 3.5 hours of manual clean up) is there a bigger risk in uninstalling ver 9.
    In light how badly Version 12 uninstalls is this a nightmare too?
    my preference is to go for ultimate performance over a few aextra features.
    I Got more than I need atm lol!

  • Can/Should I upgrade iPhone software?

    My iPhone is 3GS. I have software version 3.1 (don't think I've ever updated it!). I've noticed more and more apps are unavailable as I don't have current enough software but I'm worried if I update to the latest version I'll have problems with the battery etc. We currently have iTunes version 10.0.1.22 - do I need to upgrade iTunes also? I don't have a good track record with updating iTunes as it always seems to mess up the computer - it seems ok if you're starting from fresh with a new computer but updating an existing version of iTunes always seems a nightmare. Should I update the iPhone software or just accept that I'll have less and less access to apps? Thx.

    It is ultimately your decision whether to upgrade or not.
    That being said, there are a multitude of security enhancements, bug fixes, and performance enhancements that have been incorporated into iOS over the last two years.
    Why are you concerned about the battery? Because a handful of users have reported battery issues after upgrading? If you look through the forums, you will see the same issues reported after EVERY iOS upgrade dating back to version 1.0.
    Your version of iTunes is current, so there is no need to update that.
    Just make sure you have a good backup prior to starting the update, this is the first step in the process, but always better to be safe than sorry.

  • Broken - Novatel MC950D Ovation USB Modem

    This modem works fine under 10.5 - not even recognized by the computer under 10.6. Any advice on how to fix or do we have to wait for Novatel to rework the driver?

    Oh, I just installed it on a clean Snow Leopard and it's working fine - the driver listed is 3.18.02.0-00 (click About WWAN with Show WWAN status in menu bar selected on the network in System Preferences).
    04/09/2009 21:09:58 kernel Warning - com.novatelwireless.driver.3GData declares no kernel dependencies; using com.apple.kernel.6.0.
    04/09/2009 21:09:58 kernel Warning - com.apple.driver.InternalModemSupport declares no kernel dependencies; using com.apple.kernel.6.0.
    04/09/2009 21:09:58 kernel AppleWWANSupport1: Version number - 2.0, Input buffers 16, Output buffers 4
    04/09/2009 21:09:58 kernel AppleWWANSupport1: Version number - 2.0, Input buffers 4, Output buffers 2
    04/09/2009 21:09:58 kernel AppleWWANSupport1: Version number - 2.0, Input buffers 4, Output buffers 2
    04/09/2009 21:09:58 kernel AppleWWANSupport1: Version number - 2.0, Input buffers 4, Output buffers 2
    04/09/2009 21:10:27 kernel IOHIDSystem::relativePointerEventGated: VBL too high (33529824), capping to 20000000
    04/09/2009 21:13:43 configd[14] network configuration changed.
    04/09/2009 21:13:43 configd[14] network configuration changed.
    04/09/2009 21:13:43 pppd[191] pppd 2.4.2 (Apple version 412) started by [user removed], uid 501
    04/09/2009 21:13:44 ccl[193] CCLWrite : AT\13
    04/09/2009 21:13:44 ccl[193] CCLMatched : OK\13\10
    04/09/2009 21:13:44 ccl[193] Initializing phone: ATE0V1&F&D2&C1S0=0
    04/09/2009 21:13:44 ccl[193] CCLWrite : ATE0V1&F&D2&C1S0=0\13
    04/09/2009 21:13:44 ccl[193] CCLMatched : OK\13\10
    04/09/2009 21:13:44 ccl[193] Initializing PDP context: AT+CGDCONT=1,"IP","MOBILE.O2.CO.UK"
    04/09/2009 21:13:44 ccl[193] CCLWrite : AT+CGDCONT=1,"IP","MOBILE.O2.CO.UK"\13
    04/09/2009 21:13:44 ccl[193] CCLMatched : OK\13\10
    04/09/2009 21:13:44 ccl[193] Initializing with secondary command: AT$NWPDN=0
    04/09/2009 21:13:44 ccl[193] CCLWrite : AT$NWPDN=0\13
    04/09/2009 21:13:44 ccl[193] CCLMatched : OK\13\10
    04/09/2009 21:13:44 ccl[193] Dialing: ATD99**1#
    04/09/2009 21:13:44 ccl[193] CCLWrite : ATD99**1#\13
    04/09/2009 21:13:44 ccl[193] Waiting for connection
    04/09/2009 21:13:44 ccl[193] CCLMatched : CONNECT
    04/09/2009 21:13:44 ccl[193] Connection established
    04/09/2009 21:13:46 configd[14] network configuration changed.
    04/09/2009 21:13:47 ccl[193] CCLExit: 0
    04/09/2009 21:13:47 pppd[191] Connect: ppp0 <--> /dev/cu.wwan
    04/09/2009 21:13:50 pppd[191] Could not determine remote IP address: defaulting to 10.64.64.64
    04/09/2009 21:13:50 pppd[191] local IP address 10.122.239.153
    04/09/2009 21:13:50 pppd[191] remote IP address 10.64.64.64
    04/09/2009 21:13:50 pppd[191] primary DNS address 82.132.136.102
    04/09/2009 21:13:50 pppd[191] secondary DNS address 82.132.136.103

  • Xcode documentation

    Hi All, I'm using Xcode 4.3.1 now as I had to upgrade to work with Lion and have noticed that the documentation is not updated along with the software, or at least I can't find it. I'm tryingto follow tutorials from version 3.2 which are a nightmare to implement on 4.3. Any chance you could update some tutorials to work with the latest version of xcode. I'm particularly interested in the use of mediaplayer and the QTKit framework.
    cheers
    jasper

    Dos may need to be downloaded - check preferences.
    See the Dev Center for docs and samples.

Maybe you are looking for

  • Error while loading using 2LIS_02_SCL

    Hi Gurus, I'm trying to load data to 0PUR_C01 and stuck with error while processing the update rule The routine in update rule are as below $*$ begin of routine - insert your code only below this line        - fill the internal table "MONITOR", to ma

  • N900 wifi critical issue

    I'm having so much trouble using wifi. and I spent two weekends figuring out a workarround of my problem. When Ever I go out of range or switch off my wifi router while my n900 conntected to it. After some time it gives the following error in dmesg.

  • How to configure GG to merge two source tables into one destination table?

    I have two tables at source (say S1 & S2), I want to merge these tables and replicate to a single target table (Say T1). Does GG support this type of replication? If so, could any one let me know how to configure Table and Map parameters? Thanks in a

  • My Iphone 6 getting off after fully charge I am charging all night but morning phone is off anybody can help

    I phone 6 getting switch off after fully charge at night and one more problem in my home wifi is working good but in office wifi connection is keeping disconnect any body please help this is hardware problem or ios problem

  • Initializing an array question

    if i wanted to initialize elements of an array and get input from the user of how many there will be. where can i find some info on this? basically instead of initializing 0,1,2,3, and so on i wanted to do it in a for loop, but i have tried it a coup