Template disconected from site

After relocating the directory of the site and recreating the
site through Dreamweaver, the template does not update the site
pages anymore. It seems as if it has lost its connection to the
site. Is there a way to reassign the template to the whole site
(with the editable regions) whithout any loss of code or
information? I know I can disassociate (or unlock) a page from its
template and reassign a template to it. When I do this, I have to
do it for each page and in doing so it also duplicates the areas
that are marked as not editable. Help would be appreciated.

> Since I have the site configured as a remote site
connected from DW via
> FTP to
> the live hosting server
You mean it's an FTP & RDS Server site? You are editing
the pages directly
on the server? Why are you doing that? At any rate, DW's
templates can
ONLY affect local files, not remote files. I'm not sure how
that works when
you are using FTP & RDS.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"ekalemakis" <[email protected]> wrote in
message
news:f6coak$h6i$[email protected]..
> FYI this is DW version 7.
> Since I have the site configured as a remote site
connected from DW via
> FTP to
> the live hosting server, do you believe your suggestion
will have an
> impact on
> the site. Will it change anything on the display of the
page or just the
> relationship it has with the templates? Thanks again,
>

Similar Messages

  • How to make a call  to service from site studio templates?

    Hi,
    May be this is very basic but I am not able to figure out how to make a call to a service from site studio templates (hcsp). I have seen one example of service call in the dynamic list fragment. It makes a call to SS_GET_SEARCH_RESULTS service using executeService() method. But it doesn't take any parameters and also not very how returned results are captured.
    I want to execute WCM_PLACEHOLDER service. It takes 2 main parameters dataFileDocName and templateDocName. The returned result is typically a html response.
    The service typically is executed using http request and the url would be something like this
    http://hd-pratapm/ucm/idcplg?IdcService=WCM_PLACEHOLDER&dataFileDocName=VIRTUSAINC&templateDocName=DETAILS_REGION_TEMPLATE
    I think SS_GET_SEARCH_RESULTS service works in the similar fashion. I want to execute WCM_PLACEHOLDER service too using executeService() method. How to work with this? How can we pass parameters and capture returned results?
    Regards,
    Pratap

    Hey Pratap,
    If you are on a standard Site Studio template (page or subtemplate) you should be able to call the wcmPlaceholder idoc function directly. In fact calling the idoc function provides a lot more functionality then the service call (they locked down a few things in the service call since it is designed to be called from an external application).
    The idoc call would look something like: <!--$wcmPlaceholder("Sales", "placeholderDefinitionDocName=placedef_salescontact")--> (taken from page 208 in this doc: http://download.oracle.com/docs/cd/E10316_01/SiteStudio/10gr4/Pdf/Site_Studio_10gR4_Designer_Guide.pdf)
    As a general note when you are in idoc script and want to execute a service you call <$executeService()$> as you saw in the dynamic list. The parameters that the service runs on are in the data binder of the current request. To set parameters for an execute service you simply set idoc variables on the page before it. Example:
    <!--$QueryText="dDocType <matches> `Document`" -->
    <!--$executeService("GET_SEARCH_RESULTS")-->
    As for the response when you execute an idoc function, like wcmPlaceholder, that returns a String the response is immediately output to the page in the location you called the function. This would be similar in concept to a jsp scriptlet that outputs a string <%=myResponseString%>
    Hope that helps,
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw_OTN_ECM >
    Edited by: Andy Weaver on Jul 7, 2010 7:59 AM
    Added response detail.

  • Remove reference to Publishing Feature from site template

    Hi all, I have a custom site collection which I package as a wsp to deploy as a custom solution template to multiple sites.
    Accidentally, years ago I've activated Publishing Features in my site template and then disabled them. I still work and create new templates from my site without any problems (ShP 2010).
    Now, I've installed SharePoint 2013 and updated my site template to 2013. Then, I've created the new wsp but when I try to apply my template to a new site collection I receive an error message: "Failed to instantiate file "AlternateMediaPlayer.xaml"
    from module "Style LibraryMedia Player_Features\PublishingResources": Source path "Features\PublishingResources\AlternateMediaPlayer.xaml" not found."
    How could I remove all the reference to features belonging to Publishing Features?

    Hi Elena_B,
    According to your description, my understanding is that you want to remove reference to publishing feature from site template in SharePoint 2013.
    You can do as the followings:
    extract all files from WSP file by (a tool or) changing the wsp file to cab file and then extract all files to a working folder.
    edit the Onet.xml file to remove the unsupported features and save the changes.
    create a ddf file for makecab.exe to repack the wsp
    run cmd: makecab /f my.ddf to generate the new WSP file
    More information, please refer to the link:
    http://lassewikmark.wordpress.com/2009/11/16/howto-remove-unused-features-from-a-site-template-file/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/37e96410-7fb9-462b-a3e7-c150f2de7107/site-template-and-disabled-feature?forum=sharepointadminprevious
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Apply custom template on a site in programming

    Hi;
    I search a code in VS (programming) to apply a custom template (WSP) on a SharePoint site empty (black site).
    Like in power shell :
    $SubWeb = New-SPWeb $SubSiteName -Name $SiteName -UseParentTopNav
    $SubWeb.ApplyWebTemplate($SiteTemplate.Name)
    Regards;

    Here is an example which shows how to create a site collection using a webtemplate:
    SPWebApplication webApp = SPWebApplication.Lookup(new Uri("http://win2008"));
    using (SPSite site = webApp.Sites.Add("/sites/site1", "SharePoint", null, 1033, null, "administrator", "Administrator", "[email protected]"))
        SPWeb rootWeb = site.RootWeb;
        // Get Solutions Gallery
        SPDocumentLibrary solutions = (SPDocumentLibrary)site.GetCatalog(SPListTemplateType.SolutionCatalog);
        // Upload Solution File with the Web Template
        SPFile solutionFile = solutions.RootFolder.Files.Add("test.wsp", File.ReadAllBytes(@"..\..\test.wsp"));
        // Activate Solution
        SPUserSolution solution = site.Solutions.Add(solutionFile.Item.ID);
        // Activate Features
        Guid solutionId = solution.SolutionId;
        // Activate Site Collection Features
        SPFeatureDefinitionCollection siteFeatures = site.FeatureDefinitions;
        var features = from SPFeatureDefinition f
                       in siteFeatures
                       where f.SolutionId.Equals(solutionId) && f.Scope == SPFeatureScope.Site 
                       select f;
        foreach (SPFeatureDefinition feature in features)
            site.Features.Add(feature.Id, false, SPFeatureDefinitionScope.Site);
        // Get Web Template
        SPWebTemplateCollection webTemplates = site.RootWeb.GetAvailableWebTemplates(1033);
        SPWebTemplate webTemplate = (from SPWebTemplate t
                                     in webTemplates
                                     where t.Title == "test"
                                     select t).FirstOrDefault();
        if (webTemplate != null)
            site.RootWeb.ApplyWebTemplate(webTemplate.Name);
    The main thing here is that the site on which a webtemplate is to be applied should be created from a blank template first.
    See this for more information:
    http://blog.mastykarz.nl/programmatically-creating-sites-site-collections-custom-web-template/
    Nadeem Yousuf

  • Hidden Assets like element definition, region definition from site studio designer

    Hi Experts,
    I am facing problem in Site Studio Designer, I have created a new Website and Created Page Template and when i tried to create the site assets like element definition, region definition, region templates. It's visible and when i refresh the list or change the list from element definition to region definition and again open the tab of element definition, the definition list removes or hide from the list in Site Studio Designer and when i check the content server for the same region definitions, element definitions all are present in content server but hides from site studio designer. Can any one please help me out resolve this issue i am unable to edit any assets.
    Thanks,
    Vijay

    First, the Override Editor CSS is ONLY used to change the CSS for the contributor editor. For instance, if you have a div tag that encompasses the entire website and specify it to be center-aligned, everything within your WYSIWYG editor will be center-aligned too (not ideal). So you could, for instance, use the Override Editor CSS to have the same div class that overrides the text within the contributor to be left-aligned.
    As far as not being able to apply the CSS, I'm not too sure. You should at least be able to create a completely blank HCSP layout page, and see that no classes are available (because there is no CSS on the page). When you have a CSS, I've found that the classes loaded aren't always necessarily the ones that are in the CSS. My recommendation is to select "Allow selected classes", ONLY use the "additional classes", and type in the classes you want to show up in the CSS WYSIWYG dropdown. That's the only way I've gotten it to work.

  • 'Add a Page' missing from Site Actions

    Hello,
    We are having a weird problem on our SharePoint 2013 server where the menu item "Add a page" is no longer in Site Action menu.
    All sites are publishing sites and we have custom masterpage with custom pagelayouts too. 
    We don't have other custom packages/webparts/solutions installed, everything is standard SharePoint except the masterpages and pagelayouts.
    There are no javascripts error on the pages. We are running as Site Collection Administrators. 
    The menu item was there before, it suddenly disappeared.
    We also installed the design package on another server and the menu item "Add a page" is there.
    There are errors in the logs saying:
    0x0D08 Web Content Management        
    Publishing                    
    8ts5 Unexpected
    Exception in file C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\Template\Layouts\EditingMenu\SiteAction.xml: Object reference not set to an instance of an object.
    84b35a9c-2ef8-e064-6afc-5d6db01cbcc7
    Does anyone know what have caused this?
    Thanks.

    Hi hipplan,
    According to your description, my understanding is that ‘Add a page’ is missing in your site.
    Whether ‘Add a page’ occurred on a subsite at the same site collection.
    This issue seems to be caused by custom something in your master page.
    Please  deactivate and activate publishing features at site collection level and site level.
    Check whether the Wiki Page Home Page is active at the site level. 
    Then do the followings:
     1.Open IIS
     2.Click  Application Pools
     3.Select the web application pool that you use for your site
     4.Right-click it, and select ‘Recycling…’
     5.Reset IIS
    After the above, open the site again, compare the result.
    Here is a similar post for you to take a look at:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/15d2899c-9351-488e-abe9-d8ea94cb20f1/publishing-new-page-missing-from-site-action-menu?forum=sharepointadminprevious
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Using the Template of one site for another site.

    Hi,
    I have created and published Site A using a template (DW CS4).  I now wish to create Site B and use the same template from the Site A.
    The only thing which will change is the banner which I create in Photoshop for each site.
    I also wish to use the navigation buttons which were part of Site A's template. Can this be done?
    One note: all the files from Site A have been copied into Site B.
    Any help is greatly appreciated.
    Frank

    One note: all the files from Site A have been copied into Site B.
    Including the template? If so, then blast ahead. Things should work fine.

  • 163;  There seems to be an issue with the template that the site is using as there is a code to replace the pricing.

    163;
    There seems to be an issue with the template that the site is using as there is a code to replace the pricing.
    <script>
    // Script to extract the currency and decimals from the price
    var price = "{tag_saleprice}";
    var priceWithoutCurrency = price.replace( /^\D+/g, '')
    var decimals = priceWithoutCurrency.substring(priceWithoutCurrency.length - 2, priceWithoutCurrency.length);
    var roundedPrice = priceWithoutCurrency.substring(0, priceWithoutCurrency.length - 3);
    $('.image-with-price.big span').html(roundedPrice+'<sup>'+decimals+'</sup>');

    Here are the screenshots for what it's worth.
    Not sure why I can't post them in the original post.<br>
    <sub><b>Mod edit: See [https://bugzilla.mozilla.org/show_bug.cgi?id=718813 bug 718813]</b></sub>
    '''Again, when I set my DNS server to automatically detect the servers both problems disappear and I have no issues at all.'''
    IMO opendns is either doing this on purpose (unlikely) or they're under some sort of attack/being used to attack the specific torrent sites although I'm open to other explanations. I believe using the automatic setting for DNS is using my own ISP's DNS servers (which again, work fine... but still...)
    I'd rather not use Google's public DNS servers as Google is to commercial these days and I think there's potential privacy issues.
    '''Again I have changed the setting for DNS servers back and forth several times to duplicate/verify the issue(s)... and the issues only happen with the opendns servers.'''

  • Integrate Tribevita template into existing site

    Hi all
    I am going through the pleasure of integrating a new Tribevita template into an existing site ie so the crucial sales data etc is maintained. From my research, this is a bit of work and basically it seems you are copying various parts of the new template into the current (old) site.
    I gather the process of integrating a new site involves:
    1. Recreate the folders, web app layouts, forms, content holders, photo galleries etc from the new template, into your existing site.
    2. Change the relevant ID's in the html in the new site, so they match the ID's of those just created in step 1
    3. Then.... ftp all the new template's pages, assets, css, files etc into the OLD site....and in theory you will have your new & improved website all while maintaining all that traffic and sales data.
    The new template site is a reponsive site from Tribevita - Flora Design, so I don't know if that will have any issues moving across to the old site.  Has anyone gone through this process and can you give me any advice on things to look out for and if the above the correct method to do this changeover.
    Many thanks.
    David  

    Hi Buzzvick - glad you messaged me as I've been meaning to let you know but couldn't find this thread.
    OK it did go smoothly but here's what I learnt.
    First make sure the template you bought is almost EXACTLY what you want. Ie products display the same as you want them to, search pages etc work how you want to. Find one that you would be happy to use as is just with minor changes like colours.
    Create your template on a test site. Write down your login details as you will refer to it often. FTP copy this new site.
    FTP copy your new site again and save it as a working file (e.g NEW SITE - Working file)
    Create all logos and banners in the sizes you will need for new template.
    FTP copy your old site - save it as ORIGINAL SITE and lock it in your files.
    FTP copy you old site again and save it as working - use this to compare the files for when you upload the new template
    FTP copy your old site once again and save it somewhere else just in case you need it!
    copy your products and customers for backup
    do a sync if you are using onesaas etc
    I also printed all invoices from start of BC / made sure I had a foolproof backup
    Create a new start page and say you are doing updates (if you are tackling it all in one day)
    (I was recommended to check duplicate scripts, css, images, templates etc but I realised this would take hours / days so skipped it and bit the bullet - If i had more time I would have but as I was prepared for our site (=my site) to be offline and have customers call if problems I jumped right in).
    FTP across the template to your website - I used the 'working' file and deleted files on my computer once I had uploaded them so I new what was still to be done.
    Update the template and page module numbers etc (I used a script from BC Gurus that showed the module ID numbers next to it - message me if you need it).
    Screenshot the NEW template (on test site) and also OLD template ID numbers (using script above) and print it out - this will save hours as easy to cross compare.
    If the menus don't show - which ours weren't - RECREATE them... this took me 2 hours to work out why they weren't showing as I just duplicated them and it didn't work!!
    Now change over page templates - start with unpopular pages like about us etc
    Using firebug fix up any styling etc and update css.
    I also removed / delete all my old styling sheets and just kept the new template one (hence your site might look a bit fuzzy so make sure you do it on a crappy sales day or with the maintenance page loaded)
    - I used FTP with my new template file in one screen and current site in the other screen and deleted anything that wasn't in the new template (make sure your original site backup is on file).
    Check all categories, pages etc - e.g update home page etc
    Check ipad / iphone versions (I use firefox web tools that resizes screen as our new site is responsive)
    Make site live (remove maintenance page)
    Pretend you are a customer and sign up for your newsletter, sign up for access / do an order. TEst it all.
    Add in all Google analytics and trackings.
    Update your SEO info e.g title tags - I went page by page through my old site templates and copied any SEO or scripts I'd need and saved it in word
    Recheck site again - Pretend you are a customer and sign up for your newsletter, sign up for access / do an order. Test it all again.
    Recheck site again from other browsers - Pretend you are a customer and sign up for your newsletter, sign up for access / do an order. TEst it all.
    I also kept a notepad handy and highlighted all the above once done. I also wrote down anything little that needed to be changed and kept going on the above. If you start fixing little things as you go you will never finish. I employed my 90% principle - get 90% done then do the remaining little 10% once 90% is up.
    And good luck! It took me from 8am Saturday morning to 5.30am the Sunday morning - so almost a good 24hours! Luckily I'd had a super early Friday night (no life that weekend!) and did it from my home office. So I'd recommend only conquering it when you can pull an all nighter so the site is done.
    Hope that helps

  • I would like to be able to have any cookie I choose to accept on a given website be deleated as soon as I leave or close that website so that my surfing does not get tracked from site to site. I don't see an option for that. Is any one working on that?

    I don't want my surfing to tracked from site to site.
    Some sites require cookies be turned on in order to access the data I want or to perform a transaction.
    Right now, I have Firefox set to not accept cookies until I run into a site that requires cookies be accepted.
    Once I need to turn cookies on, I return to "Options" and select accept cookies but not 3rd party cookies.
    I will then be surfing along and occasionally check what cookies have been placed. There may be several placed I did not know were placed. I assume my surfing has been being tracked and I don't like that as a point of privacy.
    Is there a privacy setting I am missing, an application or extension I can download, or is the Mozilla team working on this as a feature?

    As far as I know, [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ the Classic Theme Restorer add-on] is the only way move the Reload button outside the address bar.
    # Install [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ Classic Theme Restorer] and restart Firefox when prompted.
    # Open the Add-ons Manager (Ctrl+Shift+A; Mac: Command+Shift+A), then the Extensions category.
    # Next to Classic Theme Restorer, click the Options button.
    # On the Main tab, make sure "Movable back-forward button" and "Hide urlbars stop & reload buttons" are checked. You might also want to check "Combine stop & reload buttons". Close the options window when done.
    # Right-click an empty area of the tab bar and choose Customize.
    # Drag the Back/Forward, Stop and Reload buttons onto the navigation toolbar.
    # Click the Exit Customize button in the lower right corner when done.
    That being said, I should point out that you can reload pages in other ways.
    * Right-click any tab and choose Reload.
    * Right-click an empty area of the page and choose Reload.
    * Press F5.
    * Press Ctrl+R (Mac: Command+R).

  • Error while trying to open the template library from a client - ver4.2

    I receive the message below when trying to open the tempalte library (have refreshed cache, reproc security).
    Any help is appreciated.  All other functions seem to work except the eAnalyze template library:
    T          "he description information is missing.  Do you want to update your template information from the server?"
                 Yes or No
    Yes u2013 prompts a u2018download fileu2019 refresh.  It returns u201Cupdate Completeu201D, select OK and get the following message:
                  "Description information is missing.  Please contact your administrator."

    I have moved this thread to the [BPC MS forum|SAP Planning and Consolidation, version for the Microsoft platform;.  Notice the sticky [note|Please do not post BPC, SSM or FI/CO questions here!; at the top of the FPM - General (PCM, FC, Other) Forum whereby we announced new dedicated forums for BPC which are the proper place to post your questions regarding BPC in the future.
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Customer Solutions Adoption (CSA) team

  • Video no longer plays from sites on comedy central.  Site says browser must be updated, but I have installed all updates and restarted the computer..twice.

    Video no longer plays from sites on comedy central.  Site says browser must be updated, but I have installed all updates and restarted the computer..twice.

    If it is any consolation this started happening to me today. I am in Toronto. I am wondering if there is a copyright issue here. I have done nothing to solve it - mostly because I suspect this has nothing to do with my computer.
    p.s. My speculation about copyright is not correct. Comedy Central plays fine with Google Chrome. Have not yet tested Firefox.

  • ITunes would not update Ipad soft, stating I don't have enogh space onthe PC for files, even though I just completely backed up Ipad through Itunes on the same PC. Seems like Itunes is disconected from itself.

    Itunes would  not update my Ipad soft citing insuficient space on PC to back up Ipad files. Even though I just baked up Ipad through Itunes on the very same PC.
    It seems that Itunes is disconected from itself and is not able to track processes within itself for the same device in the same session. Any solutions?

    Hello there, EllVar.
    The following Knowledge Base article offers some great recommendations for the issue you're describing:
    iOS: If you can't back up or restore from a backup in iTunes
    http://support.apple.com/kb/ts2529
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • NEF files from Nikon d800 not visible in bridge and photoshop cs6- using mac ver.10.8.5. downloaded plugin from site 8.3 but issue unresolved

    NEF files from Nikon d800 not visible in bridge and photoshop cs6- using mac ver.10.8.5. downloaded plugin from site 8.3 but issue unresolved

    You can install and use Camera Raw 8.8 with OSX 10.8  Go to Help > Updates in Photoshop CS6

  • I have macbook pro 13 late 2011.  efi 2.7 not see on software update and if download from site say in not compatible. why? in not compatible. why?

    i have macbook pro 13 late 2011.  efi 2.7 not see on software update and if download from site say in not compatible. why?

    Because your MBP does not require it.

Maybe you are looking for

  • DWH: how do you analyze fact and dimension tables

    Hi, I was wondering how you analyze your fact and dimension tables. Our fact table is partitioned per month. Each partition contains 4M rows and is 270 MB large. We are using 9 dimensions, 6 have about 50'000 rows (2MB), 1 about 1M rows (50MB) and 2

  • Need cvuqdisk rpm package for oracle 10.2.0.1 on IBM PPC..

    I need the cvuqdisk rpm package for IBM PPC running Redhat. It is not in the Oracle distro that was downloaded from Oracles site.

  • I upgrad Office Pro 2007 to Office Standard 2010

    I upgraded my Office Pro 2007 to Office Standard 2010 yesterday and everything went fine with the exception. On this one machine the user is having word crash while he is working on it, sometimes right away, sometimes it is good for five minutes, it

  • Can someone please help me! iam trying from morning iam not getting it plz

    hi all, i am having some problem accesing parameter passed from tiles-def into my jsp, using jstl. here is the code. tiles-defs.xml <definition name="tabTest" path="/tabDisplay.htm"> <put name="configurator" value="TabLayoutConfiguratorImpl"/> <put n

  • Storing Files and backups

    Hi, I have a timecapsule and would like to use it to 1)store files to be accessed anywhere on the net (im guessing this means using it with backtomymac?) and 2) use it for the timemachine backups These processes are each used by a different user (one