Template changes don't update the linked pages

I change the template.
I hit Save.
It asks me if I want to Update the pages that use that template.
I say yes to Update.
It says they are updated.
However the pages do not change on the site.
The weirdest thing is that, after they have Updated, I can Get one of those Remote pages, and it DOES have the changes. But they don't show on the live site.
I have to go through and select each page that was affected and hit Put.
Any ideas why?
Do I have a wrong setting or something?

I have to go through and select each page that was affected and hit Put.
That's exactly how DW Templates work.  You must PUT files after each change to the main template file.  On medium sized sites, this can get tedious.  If you want to improve your site, look at Server-Side Includes. They are a huge time saver.
Nancy O.

Similar Messages

  • Template changes won't update the dependent files

    I am checking out a template file with its dependent files from my FTP server using Dreamweaver. I am making some changes, and saving it. It is supposed to prompt me to update the dependent files. But it doesn't. So none of the changes are applied to any of the files using the template. I also tried to update the pages manually by going to Modify>Templates>Update Pages.. But DW is looking into a different path to find the templates, rather than looking into the folder where the server is set-up. What is the best way to make this work?

    Is your site properly defined in Site > Manage Sites?
    Do you have the Template.dwt file in a Templates folder in your local site?
    Are you sure this is the right template for this project?
    Do you have all the child pages in your local site folder?
    It's important to understand that Templates do nothing on the web server.  They are proprietary to DW and only work on your local site files.
    Nancy O.

  • I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask apple id confirmation from me. I never confirm anything because I don't know,the link's attached, it's legal or illegal.

    Dear Apple support team,
    I've already changed email for my apple id more than 6 months. But 2-3 months ago until now I've recieved and email to ask my apple id confirmation from me about 6-8 emails. I never confirm anything because I don't know,the link's attached, it's legal or illegal.
    The latest link (just be sent to my email 1 hr. ago) : http://www.smartpixeladv.com/proma/Login/index.html 
    Text is:
    Dear Customer,
    We recently noticed an unusual activity in your iTunes account. Please complete the process to confirm your
    informations.
    Confirm Now>
    This link will expire three days after this email was sent.
    If you don’t make this request, your account will be blocked for security reasons.
    Apple Support​
    In my opinion, i think      "http://"   should be   "https://"  right?  Or Apple should show the link on your website  that we can find, re- check and click by ourselve. Or  Apple should do "How to confirm apple id" on your main page. ( in fact  i'm not sure you already done "How to" on your website yes or not, because I cannot find it)
    The apple id is sensitive security, it's concerned personal security and any credit card payment so please understand me that's why i must to interrupt your team to help me to solve this problem. I'm scared my account will be blocked. Please advice me.
    Wassa. (BKK)

    It is a phishing attempt to get your Apple ID and Password.
    You should forward it to Apple : [email protected]

  • How can I use a cfwindow with a form in it to update the main page?

    This seems simple enough but I can't figure it out. My main
    page calls a query to get a list of departments. I have put this
    list in a table inside a cfdiv tag. I have an add department link
    on my page. When the user clicks on this link, I want a popup
    window (cfwindow) to display containing a form to add a department.
    Then when the user submits the form, the form should disappear and
    the main page should show the updated list of departments.
    I can't get the form to close without getting an error
    stating that there already is a window with that name and the new
    data doesn't display unless I refresh my screen.
    Here's my departments.cfm page:
    <html>
    <head>
    </head>
    <cfinvoke component="department"
    method="list"
    returnvariable="departments">
    </cfinvoke>
    <body>
    <cfwindow name="deptWindow" title="Department Window"
    draggable="true" resizable="false"
    initshow="false" height="400" width="600" x=200 y=100>
    <cfform action="processDepartment.cfm"
    onsubmit="ColdFusion.Window.hide('deptWindow')">
    Department:
    <cfinput type="text" name="deptname">
    <cfinput type="submit" name="submit">
    </cfform>
    </cfwindow>
    <a href="#"
    onClick="ColdFusion.Window.show('deptWindow')">Add
    Department</a>
    <cfdiv>
    <table>
    <tr>
    <th>Department</th>
    <th>Action</th>
    </tr>
    <cfoutput query="departments">
    <tr>
    <td>#deptname#</td>
    <td><a href="##"
    onClick="ColdFusion.Window.show('deptWindow')">Edit</a></td>
    </tr>
    </cfoutput>
    </table>
    </cfdiv>
    </body>
    </html>
    Here's my department.cfc page:
    <cfcomponent output="false">
    <cfset THIS.dsn="cf8test">
    <cffunction name="list" access="remote" output="false"
    returntype="Query">
    <cfquery name="departments" datasource="#THIS.dsn#">
    SELECT department_id, deptname
    FROM departments
    ORDER by deptname
    </cfquery>
    <cfreturn departments />
    </cffunction>
    <cffunction name="add" access="public" output="false"
    returntype="Boolean">
    <cfargument name="deptname" required="true"
    type="string">
    <cfquery datasource="#THIS.dsn#">
    INSERT INTO departments(deptname)
    VALUES (<cfqueryparam value="#Trim(ARGUMENTS.deptname)#"
    cfsqltype="cf_sql_varchar">)
    </cfquery>
    <cfreturn true />
    </cffunction>
    </cfcomponent>
    And finally, here's my processDepartment.cfm page:
    <!--- Form Field Validation --->
    <cfparam name="FORM.deptname" type="string">
    <cfif IsDefined("FORM.id")>
    <cfset method="update">
    <cfelse>
    <cfset method="add">
    </cfif>
    <cfinvoke component="department"
    method="#method#">
    <cfif IsDefined("FORM.id")>
    <cfinvokeargument name="id"
    value="#FORM.id#">
    </cfif>
    <cfinvokeargument name="deptname"
    value="#Trim(FORM.deptname)#">
    </cfinvoke>
    <!--- When done go back to the Departments listing --->
    <cflocation url="/departments.cfm">

    Hi Jeff,
    One way to do it is to write a JavaScript function that binds
    to your CFC. The CFC should both insert the user values, and then
    select all of the departments from the department table, and then
    return the query set to the page. I wrote sort of a test page which
    gets the state from the States table according to the state
    abbreviation that the user types in from a CFWindow. The table
    never gets updated, however, the result comes back from the CFC
    through AJAX, then updates the main page. You can use this same
    idea but you'll have to update your CFC a little bit. However, the
    idea is the same.
    Here's the code for my get State application. Especially
    notice the following three lines of code in the JavaScript function
    called getStates:
    var d = new getStates2(); //this is the name of your CFC
    d.setForm('form1'); //not sure if you need this, but I found
    it somewhere
    var stateName = d.getAllStates(); //the name of the function
    inside your CFC
    Anyway here's the code in full:
    <style>
    .stateClass {
    font-family: arial;
    font-weight: bold;
    font-size: 12pt;
    padding-top: 10px;
    </style>
    <cfajaxproxy cfc="getStates2">
    <script language="javascript">
    function enter_pressed(e){
    var keycode;
    if (window.event) keycode = window.event.keyCode;
    else if (e) keycode = e.which;
    else return false;
    return (keycode == 13);
    function getStates()
    if(document.form1.theState.value == '') {
    alert('Please make sure the textbox is not empty.');
    return false;
    var d = new getStates2();
    d.setForm('form1');
    var stateName = d.getAllStates();
    ColdFusion.Window.hide('stateWin');
    if (stateName == '')
    document.getElementById('stateDiv').innerHTML = 'No such
    state';
    else
    document.getElementById('stateDiv').innerHTML = 'The state
    is ' + stateName;
    </script>
    <cfwindow name="stateWin" x="100" y="100" width="400"
    height="200">
    <form name="form1" method="post" onsubmit="return
    false;">
    <input name="theState" type="text" size="5"
    onKeyPress="if(enter_pressed(event)){ getStates() }"
    />
    <input type="button" value="get state"
    onClick="getStates()">
    </form>
    </cfwindow>
    <div id="stateDiv" class="stateClass">
    </div>
    <a
    href="javascript:ColdFusion.Window.show('stateWin')">find a
    state</a>

  • Pleas i forgot my security questions, and i can't reset my security questions, and i don't see the link to send a reset email

    pleas i forgot my security questions, and i can't reset my security questions, and i don't see the link to send a reset email.
    <Email edited by Host>

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple - I've asked the hosts to remove your email addresses from your post (it's not a good idea to post personal info on any public forum).
    The reset link will only show if you have a rescue email address on your account - an alternate email address is a different address/setting on an account, and it's not used for resetting security questions.
    If you aren't getting the reset link then you don't have a rescue email address, and you won't be able to add one until you can answer your questions - you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620
    Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • When I click on links in my e-mail, I get the Start Page instead of the link page

    Hello:
    When I click on an e-mail link, I get my Start Page instead of the
    Link Page. My e-mail is Thunderbird and my default browser is
    Firefox.
    Thanks

    This is a known bug, and has been for years. It occurs when Firefox is your default browser and some glitch (or program) changes that default. Thankfully, there's a fairly easy fix, though it does involve monkeying around in the Registry.
    (Note: These instructions apply to Windows Vista and 7 only.)
    1. Click Start, type regedit, and then press Enter.
    2. Navigate to the following entry: HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec
    3. In the center pane, double-click the Default entry, then remove whatever value is there (it'll probably be a weird string of numbers and commas).
    4. Click OK, then exit Regedit.
    5. If Outlook and/or Firefox are open, close them, then restart them.
    this information was found at[[ http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html]]
    I am using windows 7 pro this issue has drove me crazy for some time, now finally it's fixed by doing the exact same steps as above, hope this works for everybody that is having this problem. I just had to share this with my fellow firefox users. :)

  • I forgot my security questions and I don't get the link to reset them on my iPad.

    I Need help, I forgot my security questions and I don't see the link to reset them in my ipad

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122544)

  • Help!if i don`t update the lion ,is to say i can`t update the mountain lion?right?

          Now, I don`t update the Lion ,but I want to update the Mountain Lion .Is to say I must first to update my mac to Lion,then I can update to Mountain Lion?right??//   please give me a help thanks!

    No App Store, no spaces, no Time Machine, etc. etc.
    As I said, no technolgical advance, no compelling reason to use it. Time Machine is not at all what Apple once promoted it as, since they dropped it in Lion.
    And as far as Lion goes, a few that could not adjust their habits to a few interface changes went back to SL, which is still two OSs ahead of you.
    This has nothing to do with people not being able to adjust their habits; it has everything to do with productivity, loss of features, and introduction of a new, confusing set of behaviors.
    I don't know where you get your numbers from, I would like to see you back up your claim of 'so many people' as 6 million copies were downloaded in the first week alone
    I didn't cite any numbers, so wondering where I got them is pointless. Reciting a claim that over 6 million copies of Lion were downloaded in the first week proves nothing.
    Judging by the number of people on the forums who are not at all happy with Lion and asking how to downgrade is evidence of user dissatisfaction. Most people who are dissatisfied will not say anything at all, resigning themselves to being required to use it, thus making them unhappy customers and less likely to purchase another Mac or any other Apple device in the future.
    Yet you seem to claim that 10.4.11 is where people should stop?
    I didn't say or imply anything of the sort. I said that there's no good reason to upgrade just because it's shiny and new. Mac OS X has become bloated with "features" that have little or no practical value, and are seldom used, while at the same time breaking long-established features for no good reason, and having no replacement in place. At the same time, features that worked perfectly well in 10.4.11 and before were deliberately removed from later versions, without prior notice and never restored, along with bugs being introduced that also have never been fixed.
    That's not my definition of progress, and I'd wager millions of others share that viewpoint.

  • Can we update the man pages for "dynamic_pager"?

    The configuration file is listed as, /Library/Preferences/com.apple.virtualMemory.plist but from what I understand, it is located in /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist.

    Send Apple feedback about it, and they will likely update the man page: http://www.apple.com/feedback/macosx.html
    Alternatively you can edit the man page file for the dynamic_pager itself. It is located here: /usr/share/man/man8/dynamic_pager.8

  • Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Thanks

    Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Yellow on white is harder to read. Thanks

    Another question. How do you bookmark something.  It was so easy before, why did they change it?  Can I uninstall it?

  • Can you please update the link for the flash player standalone installer?

    Can you please update the link for the flash player standalone installer?
    Link: http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug_3 2bit.exe
    Source: http://kb2.adobe.com/de/cps/191/tn_19166.html#main_ManualInstaller
    Source: http://forums.adobe.com/thread/889580

    Dogs Key wrote:
    Source: http://kb2.adobe.com/de/cps/191/tn_19166.html#main_ManualInstaller
    That is an old document (Flash Player 10.3) that shouldn't be there anymore.  (The English document redirects to the link below.)
    The download links for the offline installers for FP 11.2 are here http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#Ins tall_in_a_firewall_proxy_server_environment
    I have updated the download links for FP 10.3 in http://forums.adobe.com/thread/889580

  • How to make the document dirty after updating the links?

    Hi,
    I am using the below code to update the link resources by providing new URI. The link resources are getting updated, but the document is not becoming dirty.
                    InterfacePtr<ICommand> updateCmd(CmdUtils::CreateCommand(kLinkResourceStateUpdateCmdBoss));
                    InterfacePtr<ILinkResourceStateUpdateCmdData> updateCmdData(updateCmd, UseDefaultIID());
                    updateCmdData->SetResource(ref.GetUID());
                    updateCmdData->SetDatabase(ref.GetDataBase());
                    updateCmdData->SetNotify(true);
                    updateCmdData->SetUpdateAction(ILinkResourceStateUpdateCmdData::kUpdateURI);
                    updateCmdData->SetURI(newURI);
                    updateCmd->SetUndoability(ICommand::kRegularUndo);
                    CmdUtils::ProcessCommand(updateCmd);
    How do I make the document dirty after updating the resources?
    Thanks,

    Thanks. It is working fine.
    I called PreDirty(docPtr), before updating the links.

  • InDesign CC 2014 crashing when I try to update the links

    InDesign CC 2014 isn't responding after I updated the links.
    I replaced InDesign preferences, moved the missing links into the right file (instead of relinking).  The problem is still there and Indesign still not responding. I had to press CMD+ALT+ESC to force to quit.  Never had problems when I used InDesign CC and I'm experiencing a lot of trouble since I updated to CC 2014 version.
    I'm working on MAC.
    Any clue how to solve this?

    Hi Laneway,
    I can't reproduce that issue. Can we get more info? FAQ: What information should I provide when asking a question on this forum?
    Thanks,
    Kevin

  • Please update the link for the demo

    Hi,
    Could you please update the link for the Flex AutoComplete component to http://flex-autocomplete.com/demo/
    Thanks,
    Hillel

    Dogs Key wrote:
    Source: http://kb2.adobe.com/de/cps/191/tn_19166.html#main_ManualInstaller
    That is an old document (Flash Player 10.3) that shouldn't be there anymore.  (The English document redirects to the link below.)
    The download links for the offline installers for FP 11.2 are here http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#Ins tall_in_a_firewall_proxy_server_environment
    I have updated the download links for FP 10.3 in http://forums.adobe.com/thread/889580

  • I want to reset my security questions but I don't see the link to send a reset email .. What should I do ?

    I want to reset my security questions but I don't see the link to send a reset email .. What should I do ?

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (107709)

Maybe you are looking for