Dwt not saving changes to child pages

I created a template and subsequent child pages on my desktop.  I copied the site folder over to my laptop to work from there.  Problem was the changes I now would make to the dwt on the laptop would not take effect on the child pages when saving.  I settled with making a change just to the javascript menu which I made using Likno and just uploaded the changed files for the menu.  Today instead of just downloading from the remote in DW the changed menu files I downloaded the entire site.  Now when I make changes on the desktop to the dwt file it doesn't load the changes to the child pages.  Any idea what happened here and what I should do in the future to avoid this?

This moving around of files from one machine to another sounds like the problem if the folder structure wasn't kept intact.
There is no reason why the template and the child pages shouldn't work if you moved them 'correctly' to another machine...
Did you define a Dreamweaver site when you had the files in a folder on the desktop?
Did you define a site when you moved to the laptop.
Defining a site is the most important step before doing any work on any files in Dreamweaver.
When you copied the files, did you copy the folder structure exactly  as in the original folder, or did you just copy the dwt file and the child pages?
The dwt file when created and saved -  was saved (or should have been saved) to a Templates folder in the root of the folder that holds your web files.    No other files are allowed to reside in that Templates folder.
How did you create the child pages, by saving the template file but with a new name, or did you go FILE>New> Create from template  (selecting the dwt file that you created) ??

Similar Messages

  • IDVD 06 not saving changes?

    Greetings. I teach an adult ed class in iLife. Unfortunately, the lab has old single 533 G4s. When we use iDVD 06, the program is not saving changes made in the different drop zones, etc. We place elements in drops zones, tell the program to save, quit and relaunch...nothing saved.
    This problem was repeated by a student on his G5 at home.
    Any ideas?
    Thanks.
    Michael Colin
    Mac G4 Single 533   Mac OS X (10.4.4)   Problem on G4 and G5

    Hw much free space is left on the macs?
    Plenty. These are very small projects we're working on.
    Thanks for the response.
    Michael
    Mac G4 Dual 533   Mac OS X (10.3.9)  

  • Stocks App not saving changes

    My stocks app is not saving changes no matter what changes I make.  After making a change, I'll exit the app, re-enter and it defaults back to a whole bunch of stuff I didn't add.
    Can someone help me with this, I'm not sure where to even start!

    Nadia Bielawa wrote:
    This did not help at all.  I'm not about to restore my iPhone and set everything up again, there must be a simpler solution. 
    Th simple solution is restart.
    If that fails,  thenreset.
    If that fails, then restore from backup.
    If that fails, then restore as new.
    If that fails then make an appointment at the genius bar.

  • If I am using pages and deleted my page bu mistake how do I go back? I have not saved or deleted the page.

    If I am using pages and deleted my page by mistake how do I go back? I have not saved or deleted the page.

    You have deleted your page, but you have not deleted your page?
    Which is it?
    If you never saved it it is gone. If you saved it in Lion (OSX 10.7) with Pages 09 v4.1, there should be versions available when you mouse overv the document name at the top of the window.
    Peter

  • ABAP - BDC transaction not saving changes to records

    I am trying to write my first ABAP code using BDC recording.  Essentially I would like to flag the "Final Delivery" field (EKPO-EGLKZ) for a range of documents by recording transaction MASS.
    The code runs without errors - but the changes are not saved.  I have run the code in "Processing Mode: A" (Display all screens) and the program successfully loops through each record & saves the updated fields.  When I look at the documents in ME23N the changes have not been saved.   Running the MASS transaction manually results in the changes being successfully saved so I can rule out any data validation issues.
    Does anyone know why the changes refuse to save when running the code below?
    I have considered trying to use BAPI_PO_CHANGE instead of BDC, but I am new to ABAP and I thought the BDC code would be less complex.
    report Z_MASS_REMOVE_FDI_DCI
           no standard page heading line-size 255.
    include bdcrecx1.
    TYPES: BEGIN OF ty_tab,
    MASSOBJTYP(7),
    MASSVARNAM(7),
    DOCNO(9),
    ITEM(1),
    END OF ty_tab.
    DATA : it_tab TYPE STANDARD TABLE OF ty_tab.
    DATA : wa_tab TYPE ty_tab.
    START-OF-SELECTION.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = 'X:\STO.TXT'
    * FILETYPE = 'ASC
    has_field_separator = 'X'
    TABLES
    data_tab = it_tab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    END-OF-SELECTION.
    LOOP AT it_tab INTO wa_tab.
    WRITE:/ wa_tab-MASSOBJTYP,
    wa_tab-MASSVARNAM,
    wa_tab-DOCNO,
    wa_tab-ITEM.
    PERFORM open_group.
    perform bdc_dynpro      using 'SAPMMSDL' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MASSSCREEN-OBJECT'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'MASSSCREEN-OBJECT'
                                  wa_tab-MASSOBJTYP.
    perform bdc_field       using 'MASSSCREEN-VARNAME'
                                  wa_tab-MASSVARNAM.
    perform bdc_dynpro      using 'SAPMMSDL' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MASSSCREEN-OBJECT'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=NEXT'.
    perform bdc_dynpro      using 'SAPLMASS_SEL_DIALOG' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MASSFREESEL-LOW(01)'.
    perform bdc_field       using 'MASSFREESEL-LOW(01)'
                                  wa_tab-DOCNO.
    perform bdc_dynpro      using 'SAPLMASS_SEL_DIALOG' '0100'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MASSFREESEL-LOW(02)'.
    perform bdc_field       using 'MASSFREESEL-LOW(02)'
                                  wa_tab-ITEM.
    perform bdc_dynpro      using 'SAPLMASS_SEL_DIALOG' '0100'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=CRET'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MASSFREESEL-LOW(01)'.
    perform bdc_dynpro      using 'SAPLMASSINTERFACE' '0200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=FDAE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'NR_ITEMS'.
    perform bdc_dynpro      using 'SAPLMASSINTERFACE' '0200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SAVE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'NR_ITEMS'.
    perform bdc_dynpro      using 'SAPLMASSMSGLIST' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'REOML-MSGTXT(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=EXIT'.
    perform bdc_transaction using 'MASS'.
    ENDLOOP.
    PERFORM close_group.

    Where is BDC_INSERT.
    If u use OPEN and CLOSE_group u need to use INSERT_GROUP also to update in database.
    A session will be created and u nedd to run the Session in Sm35 in order to update the database.
    Edited by: Ranjith Kumar on Sep 18, 2008 6:41 AM

  • Aironet 1242ag - not saving changes

    dear friends...
    i am struggling with this devices now from some time.. not sure where is the mistake ...when i am trying to configure wireless device (AP) from web using exprerss setup or nornal manual mode .. it is not saving any changes.. means clicking on apply button does not do anything ..  infact its not getting clicked... please see the screen shot attaced ..my express setup menu is different then the one mentioned in this link
    http://happyrouter.com/how-to-configure-a-cisco-wireless-access-point-ap-from-scratch
    any still if you make any changes and refresh the page it comes back to 10.0.0.1 ip which is shown on the screen shot...
    guys any help will be really appreciated ...
    or if someone can also share the commands to configure the same... but before commands i want to sort out my above issues...

    Hi,
    The simpleset configuration would be something like as below.
    dot11 ssid TEST
       vlan 1
       authentication open
    interface Dot11Radio1
    encryption vlan 1 mode wep mandatory
    interface Dot11Radio1
    encapsulation dot1Q 1 native
    no ip route-cache
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    bridge-group 1 spanning-disabled
    interface Dot11Radio0
    encryption vlan 1 mode wep mandatory
    interface Dot11Radio0
    encapsulation dot1Q 1 native
    no ip route-cache
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    bridge-group 1 spanning-disabled
    interface FastEthernet0
    encapsulation dot1Q 1 native
    no ip route-cache
    duplex auto
    speed auto
    bridge-group 1
    no bridge-group 1 source-learning
    bridge-group 1 spanning-disabled
    interface BVI1
    ip add x.x.x.x y.y.y.y (where x.x.x.x is the ip address whichyou want to assign and y.y.y.y is the subnet mask)
    ip default-gateway x.x.x.x (where x.x.x.x is default gateway which you want to use)
    Hope that helps
    Regards
    Najaf
    Please rate when applicable or helpful !!!

  • Enhancement in IDOC_INPUT_ORDERS not saving changes after order creation

    I have an enhancement at the beginning of the IDOC_INPUT_ORDERS function module used to create sales orders via EDI.  In the enhancement, I take the data records and make some changes to some quantities and units of measure.  After making these changes, I let the function module continue on as normal.  The order does get created with my changes in them, however, the IDoc doesn't reflect my changes.
    Here's an example:  An EDI order comes in with 6 EAs of a material.  In my enhancement, I change it from 6 EAs to 2 3PK.  I then let it go on its way.  The order gets created fine with 2 3PKs, however the IDoc after its a ll done still says 6 EAs. 
    The enhancement runs before the FM puts the data into the tables it uses. I tried using the last user exit to open the IDoc and editing it there using the EDI_DOCUMENT_OPEN_FOR_EDIT FM but it says its open. 
    Can anyone give me any clues on how to make my changes stick to the IDoc?
    Thanks,
    Curtis

    Ok, I figured out why it's not saving.  Not realizing it, but the tables are passed into the FM by reference, so what I'm changing is only a copy.  So what I tried to do is use the 004 (I've also tried the 005) user exits to try to update the actual DB.  I used the following FMs (EDI_DOCUMENT_OPEN_FOR_EDIT, EDI_CHANGE_DATA_SEGMENTS, and EDI_DOCUMENT_CLOSE_EDIT).  The problem is that I can't change them because the IDoc is still open.
    Does anyone have any ideas on how I can achieve my goal of changing the IDoc?
    Thanks,
    Curtis

  • NOT SAVING CHANGES OR EDIT'S!!PLEASE HELP

    hey guys,
    i had this problem before along with many others, with the earlier vers of iphoto. until apple gave us the fix...now agin with 5.0.4.any changes or edits(redeye fix) are not saved to any of my pics!!
    is anybody else having this problem??
    is there a fix or update??
    please help......thanks.

    Hi sunny,
    Check the permissions on the Library and Pictures folder. If they are set for you, make sure the library is not locked.
    Get info on the iPhoto Library folder
    screenshot of how the "get info" window should look for your user
    If edits are not saved it could be the image files are locked, especially if these files came from another computer or sent to you in email. Do a "get info" on these files and unlock them.

  • Mail not saving changes in Mailbox Behaviors

    For one of my accounts since the upgrade to Mavericks when I enter the Mailbox Behaviors section, I found that Drafts, Junk and the one under Trash named Store Deleted messages on the server is checked.
    I uncheck them because I doon't want them checked. I Save the changes I made then go back to that account and the same ones I just unchecked are now checked again. Its not saving what I just unchecked.
    What the heck is wrong?
    Also noticed that in OSX 10.8 I could drag all my email accounts to a different order than the way they are now listed. Can't do that now.

    Thanks for discovering this issue being connected to drafts. I have trouble with this for a couple of months as well.
    Since you assume it to be connected to "drafts", I suggest to deselect "Store draft messages on the server" for your IMAP-Account. I just did this for myself, to see if it helps, and can't give you results yet. Maybe you just wanna try simultaneously. I guess, the reason for our problem could me some messy communication between Mail and the server, where one party get's confused.
    Greetings
    Paul

  • Crystal Reports 8.5 not saving changes to report criteria

    When I use the formula editor to add new criteria to the report criteria formula, the changes are not saved when the report is closed.  It doesn't seem to matter how I exit the formula editor, and I've even tried "save as" and saving the report to a new name prior to closing.  When I reopen the report, the changes are gone.
    Sometimes the changes don't even last that long - they often disappear while doing a refresh. 
    Are there and known bugs that I haven't found - or better yet, any solutions?

    Hi Roberta.
    I've had this happen a few times as well.  Usually though a message will come up at some point in time saying.  If the report is locked when you open it, either because someone else has the same file opened in Crystal or if you open the report from an e-mail attachement, a message will come up saying something in the lines of the report cannot be saved and it must be saved to a new file. 
    When you do the Save As, where are you saving it to?  Try creating a new folder and saving it to that folder.  You should have full permissions to the new folder and I'm hoping it will save.  I just want to eliminate any problems with permissions.  After you save the file, check the properties of the file.  Did the file's date and time update or does it still have the original date? 
    When you open the report in Crystal, go to File on the menu bar and make sure Save Data with Report is not checked.  Make your changes and rerun the report and save it again.  See if that helps. 
    These are the two common problems I've had when this happens to me. 
    Hope this helps,
    Brian

  • Cisco Prime Soft Appliance not saving changes to syslog.conf

    Greetings,
    I'm having an issue with the syslog.conf file on a Cisco Prime LMS 4.2.4 soft appliance with a Solaris base.  My workplace uses local4 as the logging facility for its network devices, and according to a discussion I found on this site, I need to add the line:
    local4.info  /var/log/syslog_info
    I have attempted this several times; we're approaching at least 5 attempts today.  I have attached text files created from putty logs where I've attempted to make the necessary change.  I appreciate any assistance the community can provide.
    Regards,
    Rob

    Hi, Afroz,
    I really appreciate your assistance, but I'm afraid my hopes have been dashed.  The syslog.conf reverted to its original configuration.  I will go through my steps to be sure that I understood your suggestion properly.
    I edited the syslog.conf to put all messages from local4 in /opt/CSCOpx/conf/syslog-entries.txt.  Then, I exited the shell to the console, issued the 'write mem' command, and closed the session.  Upon my reconnection, I found that my changes to the syslog.conf were not saved.
    Did I make the correct edits in the correct places?  Another question, is this bug present in the versions of Prime LMS running Linux and/or Windows, or does it only exist in the soft appliance running Solaris?
    Regards,
    Rob
    Edit:
    I'm reading the "Installation and Migration of Cisco Prime" PDF, and it gives me the impression that Cisco Prime is only supported as Windows, Solaris, and soft appliance installations.  Is that correct?  If it is correct, then installation of Cisco Prime LMS is not supported on other Linux distros such as Ubuntu Server, CentOS, Fedora, etc.?
    My thanks.

  • IWeb is not saving changes!

    I've created a new site using iWeb 08, and have added a couple pages and a few albums to it. I used the media browser to import albums from Aperture. So far, so good, but I only get about halfway done with what I want to do before things get screwy.
    Here's the site: http://web.mac.com/rob_meyers/Jason/
    I have pictures I'm trying to add to the site for the other years. If I select and drag several albums from the media browser window to an album page in iWeb, iWeb locks up. If I drag the albums individually, I get a little further. I try to save, in that I select "Save" from the File menu. The "Saving.." message window pops up, and disappears normally. After I try to publish my changes, iWeb locks up while trying to connect to my .Mac account. I have to Force Quit iWeb, after giving it about 20 minutes to connect to my .Mac account, and watching it ignore my clicks on the Cancel button. When I restart iWeb, all of my imports, and other changes since I last published, are gone!
    Honestly, iWeb is the only reason I bought iLife 08. I use Aperture for photo management, and I'm not musically inclined nor do I create movies. It's extremely frustrating when software doesn't work right, especially if it's Apple software (which I'm normally very happy to use).
    I have all of the latest Software Updates installed.

    See this page for info about Google maps...
    http://www.iwebformusicians.com/iweb-snippets/map-tutorial.html
    or go to the Google tutorial...
    http://maps.google.com/help/maps/getmaps/plot-one.html
    Some info about FTP...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Upload.html
    ... and an alternative way to upload the iWeb files...
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html

  • Server does not allow changes to a pages document from one user to the next

    When one user creates a pages document and then saves that document to the server, a second user who wishes to use that document and make changes can not do so. They can find the document, open the document, and read it, but can not write to the document.
    What is the trick to create a pages document so all network users can make changes to the document?
    AZ

    I hope that the OP will not  do that because, as I already wrote several times, it's a perfect way to kill the document.
    iWork applications aren't designed for cooperative work.
    Yvan KOENIG (VALLAURIS, France) mardi 30 août 2011 18:46:04
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Question: Not saving changes

    Hi,
    I saved some changes to a pdf document (highlighting, added text, free-hand drawing), but when I transfer it to my laptop (using my USB cable) the changes are gone (that is, I do not see the changes in my laptop using Adobe Acrobat Professional or any other PDF viewer).
    What can I do?
    Thank you

    Hi Ricardo,
    Were you able to see those changes when you open that document in Adobe Reader on your device itself? If yes, could you please mail that document to us at DL-adobereader-android [email protected]<mailto:[email protected]> to help us investigate the issue.
    Please include this forum thread link in your email for reference.
    Thanks,
    -Reader Mobile Team

  • Program not saving changes other than "Autosave"

    I recently began a new music project. I have worked on the project for several days and regularly saved the changes. Until yesterday, whenever I would open up the FCE software, the project would automatically open (displaying the timeline, viewer, and canvas windows, etc.) and the cursor would be at the last place I'd done work.
    I began a new interview project yesterday, and now it doesn't seem to "save" the changes that I make. I noticed that the last editing work that I had done on the music project hadn't been saved, in spite of the fact that I "manually" saved it (by doing either File>Save Project or File>Save all). I am able to recover recent versions through the "Autosave Vault."
    In the "Autosave Vault," I can locate a version of the work--which is saved every 1/2 hour, but I cannot locate the sequence (or "project file" or "timeline") showing any changes which occurred after the hour (or 1/2 hour) that the autosave kept. Under preferences, I've put the captured footage and other items related to the project on an external firewire-connected hard drive.
    Did I mess things up by not putting the project file in the "Documents" folder, or is there some other explanation?
    I seem to be able to go back an manipulate and edit those files from the "Autosave" folder, but it is a tedious process unless I've finished working near the hour (or 1/2 hour time) "Autosave" time.
    Any info/advice will be appreciated.
    Thanks in advance,
    Gary

    Repairing permissions might solve the problem. It might: it is just an attempt that should never have any bad effect, and indeed often removes obstacles that prevent the application from working correctly. So you can try that at any time, even in the middle of a project.
    The same applies to trashing preferences (not permissions); in this case the only side effect is that you must set your preferences again (scratch disk, easy setup, and any setting you changed in the User Preferences or System Settings).
    But, see my previous answer, the first thing I suggest you to try (no side effects, very easy and fast) is "Save As" to a different volume. If that works, than clearly the problem is the health of the volume where you usually save your project files.
    Piero

Maybe you are looking for

  • What settings for new clips in my project?

    I have some new clips that I need to add to an existing project. The info for the existing project is DV PAL anamorphic preset and the footage that has been imported and editited to the project was taken from my standard def DVD's and exported to qui

  • GR for scheduling agreement schedule lines

    Dear All, I have created a scheduling agreement with release. The FRC and JIT delivery schedules are created and transnmitted to vendor. I am not able to make GR for the first delivery schedule line. If I give the ref. as the schedulinjg agreement in

  • Creating PO with reference to PR

    Hi experts, I am in a strange problem in our present business process the user need to create PO with reference to PR but with out using use roles i have tried with customising settings in IMG - MM-- Purchasing---PO-- define Screen layout at document

  • Problem in BDC Sessions

    Hi SAP Gurus, A program creates 4000 sessions with similar name like 'SESSION_NAME' each having 200 records.This BDC updates same Transaction. I have a another program with parameter as Session name. With this session name i will get all the QUEUE ID

  • Google Domain E-Mail sync

    I am trying to create some documentation for students at the college I am currently employed at. I do not have access to student Id's or passwords. We are currently using google to provide e-mail for our students. We are using a seperate domain, mean