Mysterious Deletion of Dreamweaver Content

I have a repeating bug. It started when using OSX.5 on a G4
powerbook running CS3
Occasionally, after working in Dreamweaver, My OS will freeze
up after an intentional shut-down.
After it starts back up again, every Dreamweaver file that I
worked on during that session immediately prior to the freeze is
completely erased. The file is still there with the same name, but
there is nothing inside, even if I saved before the shutdown.
Additionally, All of the sites in the site manager disappear at
this point. I have since been backing up my .ste files frequently.
Late last year, I replaced the G4 with an intel MacBook pro
and I upgraded to CS4. I installed everything from scratch, no
migration whatsoever. The Dreamweaver disappearances of sites in
the site manager and file content still occur, but with less
frequency.
Please Help!

fitzio wrote:
> I have a repeating bug. It started when using OSX.5 on a
G4 powerbook running
> CS3
>
> Occasionally, after working in Dreamweaver, My OS will
freeze up after an
> intentional shut-down.
> After it starts back up again, every Dreamweaver file
that I worked on during
> that session immediately prior to the freeze is
completely erased. The file is
> still there with the same name, but there is nothing
inside, even if I saved
> before the shutdown. Additionally, All of the sites in
the site manager
> disappear at this point. I have since been backing up my
.ste files frequently.
>
> Late last year, I replaced the G4 with an intel MacBook
pro and I upgraded to
> CS4. I installed everything from scratch, no migration
whatsoever. The
> Dreamweaver disappearances of sites in the site manager
and file content still
> occur, but with less frequency.
>
> Please Help!
First time I have heard about this bug, I would report to
Adobe if I was
you.
I would hazard a guess that its not Dreamweaver, but some
other OS
feature that has gone crazy, or maybe some security program
or utility
getting confused.
Dooza
Posting Guidelines
http://www.adobe.com/support/forums/guidelines.html
How To Ask Smart Questions
http://www.catb.org/esr/faqs/smart-questions.html

Similar Messages

  • How to delete the complete contents of database table ? should be empty !!

    Hi Guys,
    I have requirement where i have delete the contents of database table..i have make it empty (no records at all) and then i have to fill it with the records from the excel sheet.
    I can upload data from the excel sheet.
    Please tell me how to delete the complete contents of the database table ??
    Regards
    Rahul

    hi ,
    just write like this,
    delete from <database table>.
    commit work.
    sample code, here edpar is database table.
    delete from edpar." FROM TABLE g_tab_delete.
      call function 'DB_COMMIT'.
      loop at g_tab_edpar into g_wa_edpar.
        insert into edpar values g_wa_edpar.
        if sy-subrc  eq 0.
          move-corresponding g_wa_edpar to g_wa_edpar1.
          append g_wa_edpar1 to g_tab_edpar1.
        else.
          move-corresponding g_wa_edpar to g_wa_edpar2.
          append g_wa_edpar2 to g_tab_edpar2.
        endif.
      endloop.
    that's all it works.
    reward points if helpful.
    regards,
    seshu.

  • Short Dump while Complete deletion of data Contents from a Cube.

    Hello Experts,
    I am facing a runtime Short dump whenever i attempt to delete data from a Cube. Shown Below:-
    Runtime Errors         MESSAGE_TYPE_X
    Error analysis
        Short text of error message:
    Data request to the OLTP
        Long text of error message:
        Technical information about t
        Message class....... "RSM"
        Number.............. 000
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "MESSAGE_TYPE_X" " "
        "SAPLRSM1" or "LRSM1U43"
        "RSSM_UPDATE_RSBKREQUEST"
    Information on where terminated
        Termination occurred in the ABAP program "SAPLRSM1" - in
         "RSSM_UPDATE_RSBKREQUEST".
        The main program was "RSAWBN_START ".
        In the source code you have the termination point in line 117
        of the (Include) program "LRSM1U43".
    Line  SourceCde
       87   call function 'RSSTATMAN_GET_TYPE_FOR_DTA'
       88     exporting
       89       i_dta  = l_dta
       90     importing
       91       e_type = l_dta_type
       92     exceptions
       93       error  = 1
       94       others = 2.
       95   if sy-subrc <> 0.
       96     message id sy-msgid type sy-msgty number sy-msgno
       97             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       98   endif.
       99   call function 'RSSTATMAN_DELETE_STATUS'
      100     exporting
      101       i_dta      = l_dta
      102       i_dta_type = l_dta_type
      103       i_process  = 'ALL'.
      104
      105   sort l_t_iccont by rnsidlast ascending.
      106   loop at l_t_iccont.
      107     data: l_s_reqdone like rsreqdone.
      108     select single * from rsreqdone into l_s_reqdone where
      109            rnr = l_t_iccont-rnr.
      110     if sy-subrc <> 0.
      111       read table l_h_dtpreq with key
      112            requid = l_t_iccont-rnsidlast.
      113       if sy-subrc = 0 and
      114          ( l_h_dtpreq-ustate = '0' or l_h_dtpreq-tstate = '0' ).
      115         clear l_s_reqdone-archived.
      116       else.
    >>>>>         message x000.
       118       endif.
      119     endif.
      120     if l_s_reqdone-archived <> rs_c_false.
      121       call function 'RSREQARCH_RELOAD_REQUEST'
      122         exporting
      123           i_rnr         = l_t_iccont-rnr.
      124     endif.
      125     select single * from rsbkrequest into l_s_req where
      126            requid = l_t_iccont-rnsidlast.
      127     if sy-subrc <> 0.
      128       continue.
      129     endif.
      130
      131     read table l_h_rsbkdtp with table key
      132          dtp = l_s_req-dtp.
      133     if sy-subrc <> 0.
      134       l_h_rsbkdtp-dtp = l_s_req-dtp.
      135       insert table l_h_rsbkdtp.
      136     endif.
    This issue only exists in Production system not QTY or development thr Cube deletion is working fine.
    So far I have tried Deleting Index's and then deleting the Cube Contents & Run Elementary Checks from RSRV but not find any lead yet.Also unable to find appropriate notes for this issue aswell I am using SAP_Bw comp 700 with SP26.
    Any suggestion  would be of great help .
    Thanks & Regards
    Aman

    Hi Ap_SAP & Arvind,
    Any recent upgrades or system refresh done?
    In recent update just from SP24 to SP26 was updated and a DB stats Referesh was carried on.But this proublem existed before these activities.
    Except deleting can you able to perform all other operations like loading data..etc?
    Other than deletion I am able to do load data into cube extract from R3 and also i can delete data from PSA.Only deletion giving dump.
    You are trying to delete transactional or master data.
    I am tring for transaction data.
    WHen I try to delete request by request it also lead to the same short dump.
    @ arvind : I checked Sm12 there i see not table which has been locked.
    Thanks
    Aman

  • My laptop was stolen and I need to be able to connect my iPhone4 to the new laptop and transfer content (photos, mp3's, apps etc.) to the new laptop.  I'm afraid to try a sync in case it deletes all the content off the iPhone.  Any suggestions?

    My laptop was stolen and I need to be able to connect my iPhone4 to the new laptop and transfer content (photos, mp3's, apps etc.) to the new laptop.  I'm afraid to try a sync in case it deletes all the content off the iPhone.  Any suggestions?

    You should be importing all pics taken with the iphone to your computer regularly as you would with any digital camera.
    iOS: Importing personal photos and videos from iOS devices to your computer

  • If I have to format an external hard drive to make it Mac compatible, will it delete all the content in the external hard drive?

    If I have to format an external hard drive to make it Mac compatible, will it delete all the content in the external hard drive?

    As others have said, the answer to your question is a big YES.  Formatting a drive will delete everything!
    To keep your data, yet reformat the drive for optimal Mac compatibility, you will need to:
    1) copy your files to a different hard drive (I would recommend two different locations if you value your data)
    2) repartition/format the external drive
    3) then copy the files back to the external.
    You haven't given details but if you need the external to ONLY be compatible with the Mac (and no longer care if if can be read by Windows), then you will want to partition the drive using the GUID partition scheme, and format as the (HFS+) "Mac OS Extended (Journaled)" filesystem.  You can do so using the built-in "Disk Utility" application on your Mac (in the Applications/Utilities directory).  Here are instructions:
    http://support.apple.com/kb/ph5845
    If you need the drive to be compatible with both Mac and Windows computers then please post that so someone can recommend a solution for your specific needs.

  • Possible to delete Offline Files content for a specific user from the Client Side Cache (CSC) ?.

    Hello Everyone,
    We would like to implement a script to delete the offline files in the Client Side Cache (CSC) for a nominated user (on Windows 7 x64 enterprise).
    I am aware that;
    1. We can use a registry value to flush the entire CNC cache (for all users) next time the machine reboots.
    2. If we delete the user's local profile it appears that Windows 7 also removes their content from the local CSC.
    However, we would like to just delete the CSC content for a particular nominated user without having to delete their local user profile.
    In our environment we have many users that share workstations but only use them occasionally. We don't use roaming profile so we would like to retain all the users' local profiles but still delete the CSC content for any users that haven't
    logged on in a week.
    Any ideas or info would be appreciated !
    Thanks, Makes

    Hi,
    I don't think this is possible.
    If you want to achieve it via script, I suggest you post it in official script forum for more professional help:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?category=scripting
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Karen Hu
    TechNet Community Support

  • Deleting DB table contents using internal table

    Hi Gurus,
    I have a requirement of deleting DB table contents. Requirement is as follows,
    User will select the DB table description in the seletion screen using drop down list.
    Whichever description he selects,the corresponding table contents should be deleted and we should not hardcode the table name in if or case conditions.
    Is this possible?
    Regards,
    G.Srinivasan

    Hi,
    You can get the Table name from the desciption from table DD02T.
    Use the Key word DELETE to delete the contents of a table from program.
    PARAMETERS : p_ddtext type ddtext.
    select single * from dd02t into table db_tab where DDLANGUAGE = 'EN' and ddtext = p_ddtext.
    DELETE DB_TAB-TABNAME
    FROM ITAB. " Take F1 help on this Key word
    IMPORTANT --> Do not manually delete the contents of a DB table in SAP.
    The individual records only deleted through BDC or any other Acceptable Methods.
    Rest is left to you. Be careful about this activity. Take enough Authourizations/ Permissions or consult your BASIS or other team members.
    Cheerz
    Ram

  • I have a new imac how do i connect my phone to this computer if its registered with another without deleting all my content

    i have a new imac how do i connect my phone to this computer if its registered with another without deleting all my content. when i go on itunes it says that i can sync but will erase all the content and replace it with whats on the mac.

    Read this and follow carefully:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Program for deletion of table content.

    Hi,
    I have a requirement to delete the contents of table RSBERRORLOG , i cannot do it directly from table content delete option due to lack of authorisation. Is there any program that can be used for deletion of tabel contents ?
    Thanks .

    Hi,
    you can delete the RSBERRORLOG table by using the RSBM_ERRORLOG_DELETE report.
    Additional info:
    You can use the report RSB_ANALYZE_ERRORLOG to analyze which DTPs have created how many single record error messages, and to how many requests these messages are distributed. You can use the report RSBM_ERRORLOG_DELETE for single DTPs to delete the messages for requests up to a specified date.
    If numerous single record errors are frequently created for specific DTPs, you should analyze the relevant requests in more detail and, if required, eliminate the error cause (for example, adjusting the transformation routines).
    Regards
    Andreas

  • Dreamweaver content zeroed out - Lorem ipsum

    I created content in dreamweaver. Do I use business catalyst to publish it? I am a CC subscriber. My subscription includes web hosing, is this Business Catalyst? Everytime I attempt to create a Business Catalyst site in Dreamweaver, it wants to overwrite my content with the Lorem ipsum content. When I manage to put content up, it is promptly zeroed out. What is the problem?

    Hi Nancy,
    Thank you for the information but I think I was not clear in my question.
    It is my desire to create original content in Dreamweaver and publish it as I design it.
    It is not my desire to use Business Catalyst but it is difficult to get information from Adobe about site hosting.
    My Creative Cloud subscription allows me to host 5 web sites on Adobe but it is not clear how to use that aspect of my subscription. Adobe support does not appear to understand anything about this and refers me to Business Catalyst. For this reason, I ask "Do I have to use Business Catalyst?"
    My desire is to create content in Dreamweaver. I would love to have an FTP account that allows me to put my Dreamweaver content up some of my 5 hostings that come with my Creative Cloud subscription. Adobe cannot tell me how to do that.
    Dreamweaver has a button to create a Business Catalyst site. When I do this, a test site is created that contains Lorem ipsum placeholder content in a structured site. I want to create my own in Dreamweaver. If I am not careful, Dreamweaver will download this placeholder content and overwrite my content on my computer. I have lost work this way and now create a backup before risking letting Dreamweaver and Business Catalyst do their thing on my computer.
    When I do manage to push content up to my test site, the content is promptly zeroed (the file sized change to zero and my content is lost).
    Is there a way to talk to someone at Adobe that understands their web hosting?
    Any help?
    Thank you.

  • New extension for deleting Project/Workspace contents

    Motivated by Shay's recent posting about JDeveloper extensions, I have developed an add-in that appears on the context menu of Workspaces and Projects and allows the physical deletion of their contents (folders, files) Its usefulness lies on the fact that you don't have to resort to the file explorer to do this kind of job.
    A possible enhancement is to remove consequently the Workspace / Project icons as they continue to appear on JDeveloper, even though there are empty of contents and the actual .jpr and .jws files are removed. The workaround is to remove them with the help of the "Remove from..." icon.
    The extension is installable as zip file from: http://www.freefilehosting.net/download/NDc3NQ==
    Hope you will find it useful,
    Serafeim.

    Thanks Serafeim.
    Here is a code snippet that might help you implement the removal from the application navigator too. (this will go into the end of your handle event method).
    Workspace activeWorkspace = Ide.getActiveWorkspace();
    activeWorkspace.removeAll();
    UpdateMessage.fireChildRemoved(activeWorkspace,activeWorkspace);
    Play around with this and see if you can come up with an updated version of the extension.

  • I accidentally deleted the Package Contents of Image Capture

    I accidentally deleted the Package Contents of Image Capture.  When I went to delete Image Capture itself it said I needed it.  Not sure what for as I've never opened it.
    What is it for?
    If I do need it, can I just put the Package Contents back where they belong?
    Where does it belong?
    Help!!!

    Your Mac has a Recovery partition instead of a disk, using it will let you reinstall OSX.
    While they were in the trash you could have tried the 'Put Back' command but if you have moved them from the trash it is too late now. Please don't try things out unless you know what is going to happen.
    And maybe you should take your Mac to an Apple Store.

  • "Completely delete data target content" setting in InfoPackage

    Gurus,
    In a Infopackage to load a cube that has 2 sources- Source 1 and source 2,there is a setting
    "Completely delete data target content" under datatargets.
    The InfoPackage is for loading data from source 1. Does this mean that the setting "Completely delete data target content" deletes just the requests related to source 1 from the cube or all the requests in the cue before making any other load.
    Please advice.
    Thanks,
    Simmi

    Hello Simmi,
    This is content from help regarding this feature and it says that entire content of cube will be deleted.
    Delete InfoCube contents completely
    Use
    With every load process before updating the data in an InfoCube, you can delete the entire content of this InfoCube. Mark field Delete entire InfoCube content for this.
    If you are using the InfoPackage in a process chein, the setting is hidden in the scheduler, since it is represented in the Process Chain Maintenance through its own process type and is maintained there.
    Regards,
    Praveen

  • N97: Anyway to delete the downloaded contents in A...

    Hi there everyone,
    Is there anyway to delete the downloaded contents in AP News in the N97??? I think the downloaded news is eating away my C: memory......Please help~~
    Many thanks
    Message Edited by dynasty_warrior on 07-Jul-2009 06:33 PM
    Message Edited by dynasty_warrior on 07-Jul-2009 06:33 PM

    Hi Andy!
    I just started to set the tabindex on each item... it wasn't working.. I copied the example you gave.. ha.. you had taxindex --- TAX and I too didn't notice it.. so just want to mention it incase anyone does what I did.. copies without thinking..
    As you said in the previous post it is TABINDEX="n"
    Ha.. its a Monday.. Bill

  • Finding specific files in TimeMachine.  I've somehow deleted all iCal content.

    I've somehow deleted all Calendar content (historical and future).  I wish to restore from TimeMachine.  How do I find and restore the last iCal file?

    If you synchronize any of your calendars with a server such as iCloud, disable that synchronization. Quit Calendar.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Calendars
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A Finder window should open with a folder selected. Enter Time Machine and restore that folder from the snapshot you want.
    Relaunch Calendar and test. Your calendars should be as they were when the snapshot was taken. If you don't sync with a server, stop here.
    If you do sync some of the calendars with a server, select each one in turn and then select
              File ▹ Export ▹ Export…
    from the menu bar. You'll get ICS files with the filename extension ".ics".
    Re-enable sync. Usually, all the calendars you just restored will be deleted. That's not a problem.
    Create a new calendar on the server for each one you exported and want to sync:
              File ▹ New Calendar
    Then import the calendar from the corresponding ICS file by double-clicking it. Follow the prompts to import the new events to the calendar you just created.
    For calendars that you don't want to sync, just import them again. They'll appear in the calendar list under On My Mac.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

Maybe you are looking for

  • Mail at .Mac vs on my Mac - which should I use ,or both?

    I have Mail with On My Mac, which is where everything seems to come in, and also .Mac. I use [email protected] as my e-mail address. On My Mac puts everything, including the folders I made for various messages, on my hard drive. .Mac puts everything

  • Can I turn off CSS in DW CS4 and use good ole HTML tags?

    Can I turn off CSS in DW4 and use good ole HTML tags? I can in DW CS3 but can't see how to in CS4. Thanks.

  • Multi-Device Security & Backup Bundle

    I currently have the Internet Security Suite/up to 6 computers - with 3 Desktop PC's and 3 Laptops. Looking at changing to the 'Multi-Device Security & Backup Bundle 50GB' bundle which is same price (at least for 12 months) that has "Unlimited* prote

  • Issue in Transport Request of ChaRM

    I have created a Transport Request made import'd to Q-Sys, Now i need to Make some changes I've set the status to IN-dev & made changes & saved ,also released the transport request, still no changes found, Plz suggest me a remedy?

  • Can't install snow leopard at all

    G'day, I have just purchased Snow Leopard updating from 10.5.8 on my imac but the installation stops at the " select the disk where you want to install Mac OS X " window. I only have a choice of Macintosh HD but the warning on screen says "Mac OS X c