Editing a large PHP file, using {, }, (, ), or comma causing DW to lock-up

I have a PHP file totalling around 7,000 lines of code. When I write { or }, ( or ), or a comma, at any point in the file, DW locks-up for a few seconds, then continues. This has been happening ever since I started using Dreamweaver CS4 - it never occurred with older versions.
Any ideas?
[Post moved to more appropriate forum -Forum Moderator]

I don't have PHP files that are as long as that, so have no way of testing. However, one possibility is that Syntax Error Alerts are turned on. Dreamweaver CS4 doesn't check for PHP syntax errors; the syntax checker is for JavaScript. However, having the option turned on might cause the problem, because PHP and JavaScript both use braces and parentheses. Try turning off real-time syntax checking. It's toggled on and off by clicking the button in the Coding toolbar, as shown in the following screenshot:
When turned on, the button looks pressed in like the two immediately above it in the screenshot.
If that doesn't improve the situation, I suggest that you file a report to the Dreamweaver engineering team through the bug report form at http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform. Give as much detail as possible to help the engineers try to reproduce the problem.

Similar Messages

  • 405 error loading a php file using fastCGI

    I'll start off by admitting I'm brand new to JWS. I really appreciate anyone willing to help with this configuration:
    GOAL: Install the PHP Engine as a FastCGI Server
    http://developers.sun.com/webtier/reference/techart/php2.html#4
    I've read a lot of pages on this, and "thought" I had my configuration right.
    I'm running SLES 10, and installed php fastcgi using yast2. The path to my php is /usr/bin/php-cgi5. I have copied that file to my plugins directory, as I heard it has to be in a location that web server can reach: /sun/webserver7/plugins/php/php-cgi5.
    My configs:
    obj.conf
    <Object name="default">
    AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
    NameTrans fn="restart" from="/" uri="/admingui/"
    NameTrans fn="ntrans-j2ee" name="j2ee"
    ##Me added
    # Make everything in URI "/php" come from"/path/to/php" and
    # be executed as PHP using the directives in the Object
    # named "fastcgi" (defined below)
    NameTrans fn="pfx2dir"
    from="/php"
    dir="/path/to/php"
    name="fastcgi"
    ##End Me added
    PathCheck fn="uri-clean"
    PathCheck fn="check-acl" acl="default"
    PathCheck fn="find-pathinfo"
    PathCheck fn="find-index-j2ee"
    PathCheck fn="find-index" index-names="index.html,home.html,index.jsp"
    ObjectType fn="type-j2ee"
    ObjectType fn="type-by-extension"
    ObjectType fn="force-type" type="text/plain"
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
    Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
    Service method="TRACE" fn="service-trace"
    Error fn="error-j2ee"
    AddLog fn="flex-log"
    ##Me Added
    # Execute all things with a MIME type of
    # "magnus-internal/fastcgi" with options (this requires that
    # mime.types be updated to assign this type
    # for specified extensions - see below):
    # bind-path: localhost:8082
    # app-path: /export/my/cgi/php
    # min-procs: 1
    # PHP_FCGI_CHILDREN: 1
    # PHP_FCGI_MAX_REQUEST: 200
    # LD_LIBRARY_PATH: /usr/local/php/lib
    # PHPRC: /path/to/php/config/dir
    # The LD_LIBRARY_PATH can be used to indicate the location
    # of the local system's MySQL libraries, etc.
    # Note that the PHPRC variable points to the directory
    # containing php.ini, not to php.ini itself.
    # This can be a single line or a line continued using
    # the syntax below
    Service type="magnus-internal/fastcgi"
    fn="responder-fastcgi"
    bind-path="localhost:8082"
    app-path="/export/my/cgi/php"
    min-procs="1"
    app-env="PHP_FCGI_CHILDREN=1"
    app-env="PHP_FCGI_MAX_REQUEST=200"
    app-env="LD_LIBRARY_PATH=/usr/local/php/lib"
    app-env="PHPRC=/path/to/php/config/dir"
    ##End Me added
    </Object>
    <Object name="j2ee">
    Service fn="service-j2ee" method="*"
    </Object>
    <Object name="es-internal">
    PathCheck fn="check-acl" acl="es-internal"
    </Object>
    <Object name="cgi">
    ObjectType fn="force-type" type="magnus-internal/cgi"
    Service fn="send-cgi"
    </Object>
    <Object name="send-precompressed">
    PathCheck fn="find-compressed"
    </Object>
    <Object name="compress-on-demand">
    Output fn="insert-filter" filter="http-compression"
    </Object>
    ##Me Added
    # Object to handle assigned names from the Default object
    <Object name="fastcgi">
    # Anything that ends up here has its type forced to
    # "magnus-internal/fastcgi"
    ObjectType fn="force-type"
    type="magnus-internal/fastcgi"
    # Run the request through the FastCGI handler with
    # the following options:
    # bind-path: localhost:8082
    # app-path: /export/my/cgi/php
    # min-procs: 1
    # PHP_FCGI_CHILDREN: 1
    # PHP_FCGI_MAX_REQUEST: 200
    # LD_LIBRARY_PATH: /usr/local/php/lib
    # PHPRC: /path/to/php/config/dir
    # The LD_LIBRARY_PATH can be used to indicate the location
    # of the local system's MySQL libraries, etc.
    # Note that the PHPRC variable points to the directory
    # containing php.ini, not to the php.ini itself.
    # This can be a single line or a line continued using
    # the syntax below
    Service type="magnus-internal/fastcgi"
    fn="responder-fastcgi"
    bind-path="localhost:8082"
    app-path="/sun/webserver7/plugins/php/php-cgi5"
    min-procs="1"
    app-env="PHP_FCGI_CHILDREN=1"
    app-env="PHP_FCGI_MAX_REQUEST=200"
    app-env="LD_LIBRARY_PATH=/usr/local/php/lib"
    app-env="PHPRC=/etc/php5/fastcgi/"
    </Object>
    magnus.conf
    Init fn="load-modules" shlib="libj2eeplugin.so"
    Init fn="load-modules" shlib="libdavplugin.so" funcs="init-dav,ntrans-dav,pcheck-dav,service-dav"
    Init fn="init-dav" LateInit="yes"
    Init fn=load-modules shlib="libfastcgi.so"
    mime.types (relevant sections only)
    type=magnus-internal/parsed-html exts=shtml
    type=magnus-internal/cgi exts=cgi,exe,bat,php
    type=magnus-internal/fastcgi exts=php,php3,php4,php5
    I'm not convinced that I have specified all the php directories as requested. Perhaps something looks off there?
    I currently have nothing configured in the fastCGI section of the web admin for the server.
    The default page still loads just fine, it's only php files i'm having issue with.
    The error I'm receiving is (IP removed):
    for host X.X.X.X trying to GET /foo.php, handle-processed reports: HTTP2205: The request method is not applicable to the requested resource.
    Thanks,
    Nick

    Thank you so much for the reply. yes, that appeared to be a typo in my config. Here's the new relevant section
    <Object name="default">
    AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
    NameTrans fn="restart" from="/" uri="/admingui/"
    NameTrans fn="ntrans-j2ee" name="j2ee"
    ##Me added
    # Make everything in URI "/php" come from"/path/to/php" and
    # be executed as PHP using the directives in the Object
    # named "fastcgi" (defined below)
    NameTrans fn="assign-name" from="/php/*" name="fastcgi"
    NameTrans fn="pfx2dir" from="/php/*" name="fastcgi"
    ##End Me added
    PathCheck fn="uri-clean"
    PathCheck fn="check-acl" acl="default"
    PathCheck fn="find-pathinfo"
    PathCheck fn="find-index-j2ee"
    PathCheck fn="find-index" index-names="index.html,home.html,index.jsp"
    ObjectType fn="type-j2ee"
    ObjectType fn="type-by-extension"
    ObjectType fn="force-type" type="text/plain"
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
    Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
    Service method="TRACE" fn="service-trace"
    Error fn="error-j2ee"
    AddLog fn="flex-log"#####################
    I wasn't sure from your prior message if both of the following lines should be in there:
    NameTrans fn="assign-name" from="/php/*" name="fastcgi"
    NameTrans fn="pfx2dir" from="/php/*" name="fastcgi"
    I tried with both, tried with just the first, and still getting a 405. Not sure if i need to, but I am restarting the instance after making changes.
    I also tried putting my test file in both the webroot directory:
    /sun/webserver7/https-myhostname/docs/foo.php
    and in a php subdir of that
    /sun/webserver7/https-myhostname/docs/php/foo.php
    Still no luck.
    Thanks,
    Nick
    Edited by: wefawefds on Oct 30, 2009 1:54 PM

  • Reading and Writing large Excel file using JExcel API

    hi,
    I am using JExcelAPI for reading and writing excel file. My problem is when I read file with 10000 records and 95 columns (file size about 14MB), I got out of memory error and application is crashed. Can anyone tell me is there any way that I can read large file using JExcelAPI throug streams or in any other way. Jakarta POI is also showing this behaviour.
    Thanks and advance

    Sorry when out of memory error is occurred no stack trace is printed as application is crashed. But I will quote some lines taken from JProfiler where this problem is occurred:
              reader = new FileInputStream(new File(filePath));
              workbook = Workbook.getWorkbook(reader);
              *sheeet = workbook.getSheet(0);* // here out of memory error is occured
               JProfiler tree:
    jxl.Workbook.getWorkBook
          jxl.read.biff.File 
                 jxl.read.biff.CompoundFile.getStream
                       jxl.read.biff.CompoundFile.getBigBlockStream Thanks

  • Reading large XML file using a file event generator and a JPD process

    I am using a FileEventGenerator and a JPD Subscription process to read a large XML file. The large XML file basically contains repeated XML elements. My understanding is that the file subscription method reads the whole file in memory which causes lots of problem for huge file size like 1MB. Is there a way to read the file size-wise or is there a way to read chunks of data from a large size file..or any other alternative. I would like to process the file in a loop iteration by iteration.

    Hitejain,
    Here are a couple of pointers you could try. One is that the file event generator has a pass by reference (filename) functionality which you could use so that you could do the following inside of your process.
    1) Read file name from the reference
    2) Move the file to a processed directory (so it doesn't get picked up again. Note: I don't know how the embedded archive methods of the file event generator plays with pass by reference.
    3) Open a stream to the file.
    4) Use a SAX or SAX - DOM combined approach to parse your XML while managing the memory usage inside of your process
    There is another possibility which might fit your needs and it is related to the RawData object that BEA provides. If I understand it correctly provides wrapping functionality around a stream object, but depending on your parsing methods might just postpone the problem.
    Hope this helps
    Chris Falling
    Stormforge Software

  • Error uploading large txt file using GUI_UPLOAD

    Hi everyone.
    The situation is as follows: I have to process (batch input) an extremely large text file, of about 80 MB. As you can imagine, all I receive when I run my program is a dump somewhere inside the GUI_UPLOAD function routine due to excessive memory usage.
    Does anybody know of a way to deal with this kind of files? Is there any function that allows partial processing or something like that?
    Thanks a lot,
    Fernando.

    If you have to process it all at once, you can have basis FTP it to your application server and then use OPEN DATASET and TRANSFER rather than GUI_UPLOAD. this would probably be the quickest solution.
    Rob

  • Loading Large XML files  using plsql

    I have a process where there is a need to load large xml files (i.e. easily over 500k or more) into Oracle via an interface. Preference would be to use plsql or some plsql based utility if possible. I am looking for any suggestions on the best method to accomplish this. Currently running on 9.2.0.6. Thanks in advance.

    I have a process where there is a need to load large xml files (i.e. easily over 500k or more) into Oracle via an interface. Preference would be to use plsql or some plsql based utility if possible. I am looking for any suggestions on the best method to accomplish this. Currently running on 9.2.0.6. Thanks in advance.

  • How to see html code in a php file using CS5.5 without using testing server?

    In CS5.5 when I open a page with php extention, DW does not show any html code in design view without me having to set up a testing server. In DW 8 it would open the same files and show me the html in design view. I have no need to test php code, I just need to alter the html. Is there a setting I can change to enable this in CS5.5? Thanks.

    Below is the code. I discovered that if I create a new php document not from
    a template, then I can see the html elements in design view. If I create a
    new page from a template and save it as html, design view still works, but
    if I save a new page from template and save it as php, I only see symbols
    for php and nothing else in design view.
    Thanks for your help on this.
    <!--
    body
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to
    zero padding and margin on lists. For consistency, you can either specify
    the amounts you want here, or on the list items (LI, DT, DD) they contain.
    Remember that what you do here will cascade to the .nav list unless you
    write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where
    margins can escape from their containing div. The remaining bottom margin
    will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements
    within the divs, instead of the divs themselves, gets rid of any box model
    math. A nested div with side padding can also be used as an alternate
    method. */
    a img { /* this selector removes the default blue border displayed in some
    browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including
    the group of selectors that create the hover effect. ~~ */
    a:link
    a:visited
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard
    navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ This fixed width container surrounds all other divs ~~ */
    .container
    /* ~~ The header is not given a width. It will extend the full width of your
    layout. It contains an image placeholder that should be replaced with your
    own linked logo. ~~ */
    .header
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements
    within these divs have padding on their sides. This saves you from any "box
    model math". Keep in mind, if you add any side padding or border to the div
    itself, it will be added to the width you define to create the *total*
    width. You may also choose to remove the padding on the element in the div
    and place a second div within it with no width and the padding necessary for
    your design.
    2) No margin has been given to the columns since they are all floated. If
    you must add margin, avoid placing it on the side you're floating toward
    (for example: a right margin on a div set to float right). Many times,
    padding can be used instead. For divs where this rule must be broken, you
    should add a "display:inline" declaration to the div's rule to tame a bug
    where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element
    can also have multiple classes applied), the columns have been assigned
    class names instead of IDs. For example, two sidebar divs could be stacked
    if necessary. These can very easily be changed to IDs if that's your
    preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float
    these columns the opposite direction (all right instead of all left) and
    they'll render in reverse order. There's no need to move the divs around in
    the HTML source.
    /* sidebar1 = left */
    .sidebar1
    .content
    .sidebar2
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol
    /* ~~ The navigation list styles (can be removed if you choose to use a
    premade flyout menu like Spry) ~~ */
    ul.nav {
        list-style: none; /* this removes the list marker */
        border-top: 1px solid #666; /* this creates the top border for the
    links - all others are placed using a bottom border on the LI */
        margin-bottom: 15px; /* this creates the space between the navigation on
    the content below */
    ul.nav li {
        border-bottom: 1px solid #666; /* this creates the button separation */
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that
    your links retain their button look even after being visited */
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the anchor block properties so it fills
    out the whole LI that contains it so that the entire area reacts to a mouse
    click. */
        width: 160px;  /*this width makes the entire button clickable for IE6.
    If you don't need to support IE6, it can be removed. Calculate the proper
    width by subtracting the padding on this link from the width of your sidebar
    container. */
        text-decoration: none;
        background: #C6D580;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the
    background and text color for both mouse and keyboard navigators */
        background: #ADB96E;
        color: #FFF;
    /* ~~ The footer styles ~~ */
    .footer
    /* ~~ Miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page.
    The floated element must precede the element it should be next to on the
    page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page.
    The floated element must precede the element it should be next to on the
    page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a
    or empty div as the
    final element following the last floated div (within the .container) if the
    .footer is removed or taken out of the .container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    TD.mincart {
        font-size: 10px;
        font-family : Verdana;
        position:relative:
        left: 10px;
        top: -30px;
    P.mincart {
        font-size: 10px;
        font-family : Verdana;position:relative:
        left: 10px;
        top: -30px;
    #search 
    #minicartdiv
    P.smaller{
        text-align:center;
        font-size: 12px;
        position: relative;
        top: 1px;
    #tagline {
        font-weight: bold;
        color: #03F;
        height: 18px;
        width: 350px;
        font-size: 18px;
        position: relative;
        left: 10px;
        padding-bottom: 10px;
    #contact {
        font-size: 12px;
        float: right;
        height: 18px;
        position: relative;
        padding-right: 10px;
        font-weight: bold;
        font-family: "Courier New", Courier, monospace;
        padding-top: 7px;
    Call 541-424-5555 Mon-Fri 7am-4pm Pacific Time. Email:
    [email protected]
    Bluetooth and More! No Sales Tax!
    body, this
    is a test
     [Home | index.php] - Store Policies - Products
            - Search - Checkout
            email: [email protected] Call
    541-424-5555</p>
      <!-- end .footer --></div>
      <!-- end .container --></div>
    SSL
    COT("images/cot.gif", "SC2", "none");
    </html

  • How To Edit Excel or Word Files Using iPhone?

    I am trying to do SIMPLE edits of Excel or Word files...
    in my emails I can view them, but not able to edit them...
    -Glenn

    Not necessarily. The problem is that the SDK forbids saving data to the iPhone itself. That means, if you write a letter, say, and save it, you can only save it via the internet to either a server (like iDisk) which you can then access on your desktop, or through a program like Google Documents.
    Until Apple permits saving files to your iPhone itself for direct sync (which is currently forbidden) you need to use 3rd party workarounds. I have no idea what Dataviz is working on, nor whether it will be approved once they do complete a program, nor how you will have to save data.
    WIthout being able to save data for sync directly through your iPhone itself rather than the internet, it really makes editing on the iPhone end of the deal pretty worthless for a lot of is.
    I use OmniFocus for my To-Do lists, for example. It does not sync directly with the desktop version, but you have to sync your desktop with the server (in my case iDisk) and the iPhone with the Server -- it keeps both my iPhone and Desktop in sync, but ONLY works because data is stored on iDisk as the "library" so to speak....if I were to be in an area without data access, I would not be able to keep up-to-date to-do lists.

  • Editing very large MP3 Files

    Hello,
    Sorry for my bad English! I am French!
    I recently bought a Sony digital recorder (ICD-PX312) that records MP3 files.
    I recorded my noisy neighbour, in continuous mode for three days. (I was not at home)
    PX312 recorder has produced several files which maximum size is  511,845 kB corresponding to a lenght of 24H 15min.
    Every file, checked with Mediainfo, have the same properties. (48kbps 44.1KHz)
    I can read them with VLC media player without any problem, but I need to edit these files to keep only the interesting parts.
    If I open (drag and drop or open file) these files with Audition 1.0 (I came from Cool-Edit), I found a very strange behavior.
    The 24H 15min files are opened with a lenght of 1H and a half or so!.
    I gave a try opening with Audition 3.0 and the result is strange too, and more "funny":
    The lenght of one 24H15min file is 1H and a half
    The lenght of another 24H 15min file is 21H or so.
    In the Audition TMP directory, Audition has created several 4 GB temporay files that correspond to the limit of the WAV files.
    I made a test with a 128kpbs, 44.1khz. This 511,845 kB file is  9H 5min long
    Audition read it as 4H40min
    The TMP file is 2,897,600 kB, far below the 4 GB limit
    It seems Audition 1 and 3 (I read CS5 has the same problem too) does not share the WAV conversion very well.
    Is it due to Audition itself or to the Fraunhofer MP3 codec?
    Is there any workaround from Adobe?
    As I am an AVS4YOU client, I tried AVS Audio Editor. It opens every file with the good lenght but does not have the needed editing functions. That demonstrates that it is possible to share very large files.
    Many thanks in advance for any help or idea, because Audition is the editor I need!
    Best Regards

    SteveG wrote :
    t's not their 'bug' at all. MP3 files work fine, and Adobe didn't invent the wav file format, Microsoft did. It's caused by the 32-bit unsigned integer to record the file size headerincorporated into wav files, which limits their size to one that can be described within that limit - 4Gb.
    May be I was not clear enough in my explanation
    I Agree partly with you.
    I Agree with you when you wrote that the 4 GB limit is inherant to the Microsoft WAV format.
    When reading 24H MP3 Files, Audition 3.0 creates, in TMP folder, two chunk of 4 GB and another smaller chunk, to try to overcome the limit. This cutting process is exactly what I am expecting from such a software.
    The problem - and the bug - is that the duration  that is "extracted" in audition is smaller than that of the original MP3 (e.g. 21H 30min instead of 24H 15min). Some part of the original MP3 files has been skipped in the cuttng/conversion process.
    I dont think Microsoft is involved in this "cutting" process that belongs to Adobe an/or Fraunhofer. This is why I am surprised

  • Issue with generating large pdf file using cfdocument tags in CF9

    We are in the process of upgrading our code to use cf9 and the cfdocument tag (from the old cfx_pdf tags).  We have successfully gotten one piece of our code to work but the file size of the pdf that we are generating now is huge in comparison to what it was using the CFX_PDF tags. (I.E.  with the new code the file is 885 KB in comparison to the old code generating only a 11KB file). We are not embedding fonts so the Fontembed = "no" didn't work for us.  We do have all of our images as .jpgs but unfortunately due to the volume of images that we have we can not switch all these files into another format.  Is there is way to shrink or optimize the pdf file size that we are generating? 
    Thanks so much for your help.
    Claudia

    We are in the process of upgrading our code to use cf9 and the cfdocument tag (from the old cfx_pdf tags).  We have successfully gotten one piece of our code to work but the file size of the pdf that we are generating now is huge in comparison to what it was using the CFX_PDF tags. (I.E.  with the new code the file is 885 KB in comparison to the old code generating only a 11KB file). We are not embedding fonts so the Fontembed = "no" didn't work for us.  We do have all of our images as .jpgs but unfortunately due to the volume of images that we have we can not switch all these files into another format.  Is there is way to shrink or optimize the pdf file size that we are generating? 
    Thanks so much for your help.
    Claudia

  • Generate large swap file (Use qtparted to generate partition

    Desire to generate a 30GB swap file in Linux using the full capacity of a hard drive as swap.
    Can this be done with the arch0.5 install CD?
    I assume I must skip the auto feature to do so.  I do not know if the CD program will allow skipping the program install steps and just install lilo.
    Perhaps someone has done a similar thing?

    i3839;
    Thanks for the comments.
    The desired entry is not to hdd but to ram such that all operations take place in ram...no hdd used...no CD orDVD used (except tp start the ram install). 
    While in ram, all video is improved when uncompressed video is entered (.vob for instance) and the result is higher quality and better resolution.
    The basic question is in reference to arch install CD and whether it can be utilized to generate a HDD with just swap (one or more partitions) . 
    My experience with the arch CD indicates it doesn't like the install to skip any steps.  Perhaps I can try a partition install and then abort the rest.  I think it will allow three separate swap (type 82) partitions:  at the least one of 2GB.  Perhaps it is programmed however, to require a root and a boot as well as a swap.
    I suggest you read the previous post which describes the install to ram...called 'toram' in knoppix.  This doesn't use the hdd, just the dvd reader.  It can however utilize a hdd file entered in a dvd install....tohd.. and add the cheat code ...toram..
    The end result is a ram only OS which can utilize USB hotplug devices for entry and storage, turning them off when not in use.
    The present system here has 2.5GB of ram but it is not able to accept the DVD of 2GB when attempting ..toram.   The same ...toram..cheat code is available for the CD version which operates well in ram (only 680MB).  The use of swap to augment ram is recommended.
    Dvd versions have close to 5GB of programs in compressed form in the 2.1GB DVD media.
    I hope this post helps describe the need for the swap a little better.

  • Handling, editing, sharing large HD files

    Having moved from my trusty SD Panasonic to the Canon XF105 HD digital, I've had trouble handling the gigantic files through FCP. For example, I needed to upload footage quickly to my client's Dropbox and the upload took hours. Any suggestions for workflow?

    If this is for client review, and not for further editing/grading. etc, I think you could upload H.264 @ 10 Mbps and it would be very good quality and about one tenth fifth your current sizes. You could also drop the resolution to 720p and save additional space. Even at 3 Mbps, 720P can look quite respectable.
    Choosing Web Hosting in the Master File Settings pane will produce a 1080 MOV and choosing Computer will give you an MP4 @ roughly 10 Mbps. 720P will be about half that. Compressor or MPEG Streamclip will allow more control over size and quality trade-offs.
    Good luck.
    Russ

  • Handling large xml files using tree

    hi,
    I have an issue with a tree having xml data as the
    dataprovider. The front end makes a http service call to a servlet
    at a server to get the string representation of an xml file . The
    string format is changed to xml in the flex front end and made to
    display as a tree. Everything works fine when the xml data is small
    but as xml data grows in size the handling of data into the tree is
    very slow and the application does not respond sometimes..Can
    anyone tell me how i could get this issues solved or is there a
    better way to solve it. Or is there a way that the tree gets
    displayed only when all the nodes or loaded properly and there are
    no lags while user tries to navigate through it..
    Thanks in advance...

    Hi,
    Did you get a reply for this? If so,can you pl share it with me too?
    i need to send a XML +also need to set 2 parameters over Http Post to a servlet...
    Thanks,
    -uday.
    [email protected]

  • Using IE 10 opening or trying to save file using the link cause IE to restart

    I am using IE 10 and adobe reader 11.0.4 . ie When I try to open or save a PDF I get a message IE has stopped and checking on line for solutions and then just restarts IE. I have checked a similar post which mentions editing the registery but when I check it doesnt have that setting. I am also using windows 7 32 bit.
    Cheers

    Does the problem occurs with any PDF?  Can you try opening this PDF: http://helpx.adobe.com/pdf/adobe_reader_reference.pdf? 

  • Unable to edit php files in CS3

    Hi,
    I have users that need to edit content in php files in Contribute CS3, just editing text and adding images etc. Every time they try to edit a page they just get a grey screen with the words 'headerMenu', which happens to be the page title of a file that is included using the php include command. They cannot edit anything on the page. I have checked the admin options and they are allowed to edit scripts etc..
    Any ideas on what might be causing this?
    Thanks,
    David

    Hi imadb,
    Since you have the Acrobat Pro DC 30-day trial, please try opening that to edit your PDFs (rather than opening them in Reader, and clicking the Edit PDF button).
    If you search your computer, you should have both an Adobe Acrobat Reader DC and and Adobe Acrobat Pro application. They can coexist, but it does make things a little confusing.
    If you want to evaluate  Acrobat Pro DC, it's best that you open it directly. That way, you can get the real "lay of the land" with Acrobat before making any purchase decisions.
    Best,
    Sara

Maybe you are looking for

  • Original MacBook Pro.....to NEW Macbook Pro!

    What is the best way to transfer files from my old MB Pro (I got this in April 2006) to my brand new MB Pro? The guy at Apple said to just connect a firewire. But....it seems that the old one only has a 400 port and the new one only has an 800 port..

  • 7200 RPM hd on 15"

    Finally Core2 Duos! ive been waiting since august to buy a new MBP. But i noticed that the 15" C2D MPBs dont have the 7200rpm HD option that the Core duos have, any reason why? is there anyway i can request one when i purchase? I would much rather ha

  • Roadmap for Blackberry / Java Developers new to Mac

    Hi, I am totally new to the mac environment, and hope one day to start developing iPhone apps. I currently develop Blackberry Apps. What I would like to see is a Clear Roadmap for developers who may have never seen a "Mac" before. So far from my reas

  • How to get files in 'Audiobooks'

    I have a few audio books on cd which I have uploaded onto my pc and then trasfered them onto my ipod but I can't figure out how to get them into the audiobook folder. It doesn't come up as a playlist. And it is kind of annoying when I have my ipod on

  • Expected PO Receipts and scheduled out sales orders

    Hi Guys: in MRP Net requirements Calculation, for Example  If want Consider Schedule out Sales orders( requested Delivery Date 02/02/2012) which is determined by planning horizon( 6 months 06/30/2012) , Since this sales order is within Planning Horiz