Unable to apply a new site template to a new site collection's root web

Hi folks,
Using PowerShell I need to create a new site collection and add a new site template to its root web.  I've tried but failed...
I created the site template from a team site that I modified and then saved it as a site template and saved the template to an WSP file (in the solutions gallery).
I have tried both of the following methods but can't find the template to add to the root web of the site collection.  Help!!
Method 1 - Create the site collection, deploy & install the template as a user solution, and apply the template
I did the following, but it doesn't work because Get-SPWeb doesn't find it.  If I run Get-SPWeb with no parameters the list it returns doesn't include my template.  So site.GetWebTemplates includes it but Get-SPWebTemplate doesn't.
# Create the site collection
$site = New-SPSite $siteURL -OwnerAlias $owner -SecondaryOwnerAlias $secondOwner -name $studentName -Description $description
# Deploy and install the template
$wsp = Add-SPUserSolution -LiteralPath $wspPath -Site $siteURL
$wsp = Install-SPUserSolution -Identity $wspIdentity -Site $siteURL
# Assign the template.
$loc= [System.Int32]::Parse(1033)
$templates= $site.GetWebTemplates($loc)
foreach ($child in $templates)
Write-Host $child.Name
If ($child.Name.EndsWith("ABC")
# the name of the template that I added ends in "ABC" - when this script runs I the name of my
#added template displays as "{longGUID}#1ABC"
$template = $child
$templateID = $child.Name
$template = Get-SPWebTemplate $templateID
# regardless of whether I assign $template above or here the Set-SP_Web assignment below fails
$web = Get-SPWeb $siteURL
$web | Set-SPWeb 
-Template $template
Method 2 - Deploy and install the template as a farm solution, create the site collection, and apply the template
I did the following.  After I did the first section (deploy and install the solution to the farm) I was able to go to "Manage Farm Solutions" in CA and it was listed there, but neither
site.GetWebTemplates nor Get-SPWebTemplate included the site template in their list of templates.
# Deploy and install the solution to the farm
$template = Add-SPSolution -LiteralPath "C:\SharePoint\Student Site.wsp"
$template | Install-SPSolution
Do {Start-Sleep 2 } while (!((Get-SPSolution $template).Deployed))
# Create the site collection
$site = New-SPSite $siteURL -OwnerAlias $owner -SecondaryOwnerAlias $secondOwner -name $studentName -Description $description
# Assign the template.
$loc= [System.Int32]::Parse(1033)
$templates= $site.GetWebTemplates($loc)
foreach ($child in $templates)
        Write-Host $child.Name
        If ($child.Name.EndsWith("ABC")
# the name of the template that I added ends in "ABC" - when this script runs I the name of my
#added template displays as "{longGUID}#1ABC"
                        $template = $child
                        $templateID = $child.Name
$template = Get-SPWebTemplate $templateID
# regardless of whether I assign $template above or here the Set-SP_Web assignment below fails
$web = Get-SPWeb $siteURL
$web | Set-SPWeb
-Template $template
David

Out of curiosity, are you able to create a site within a site collection using this template? That is, can you create a site that is not the root site (e.g. http://sharepoint/sitecollection/Web)?
Jason Warren
Infrastructure Specialist
Habanero Consulting Group
habaneroconsulting.com/blog

Similar Messages

  • Custom master page applying on Publishing site template not in my site template?

    Hi,
    i have created a custom master page based on Publishing template Using Design manager (means converted html to aspx page) and then set all other control on the master page. now problem is master page applying only on Publishing site template not my site
    template. any one know why its happening, and how can resolve this issue?
    Thanks
    Mohammad

    Feature Stapling may be a solution - Please check -
    http://sharepointologic.blogspot.in/2013/04/branding-sharepoint-2013-my-sites-with.html
    http://www.codeproject.com/Articles/42129/Creating-branded-my-site-in-sharepoint
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • ACCESS DENIED when trying to use custom site template to create new Subsite

    I am trying to create a new site using a custom template. I am the new admin here at the company. Other also are having "access denied" errors when trying to create the site using these custom templates. 
    However I can still create a site using the out of the box templates. I have given myself site collection admin (primary) and I am a farm administrator as well. Any ideas on why I keep getting access denied to specific templates?
    The entire site collection is using the custom template. When I try to create a new site under the site collection with a custom template now, it says "access denied". Any ideas?
    Thanks!
    Note - I am able to use the Custom Site Templates in the test environment without any issues. Only in the production/live environment am I getting the access denied error.

    I am not finding anything that comes up in the ULS logs about the access denied. I tried creating the site in the test environment using the custom template and it worked. I go to the production environment and try to create the site with the same template
    and get "error:access denied - current user domain\user" I checked in the ULS logs as soon as the access denied appears (pretty quickly after pressing create) and there is nothing at that specific time. This is a huge problem, is there any way to
    work around or fix this? I'm a new admin.

  • Custom SharePoint 2013 workflow activities in site template throw error on site creation

    Hi all,
    I have created a number of custom activities for SharePoint 2013 Workflows and I am using them on an Office 365 environment. The custom activities are packaged as a sandbox solution and deployed on my Office 365 site. Everything works as expected.
    I have now created a site with all the functionality I need, including some Site and List workflows - all of them containing my custom activities. I saved the site as a template - including content - and the process was completed successfully.
    My problem is that when I try to create a site based on that template, I get the following error:
    Microsoft.Workflow.Client.ActivityNotFoundException: The activity named 'WorkflowXaml_66b9230b_823e_4783_82b8_daf481237847' from scope '/spo/d42a4487-9465-4347-9f2c-a2718e92fc02/74d0f9e7-fb35-493d-86fb-ab7aa27da7e0/c2e1bf45-cf67-4e13-9755-421cf92395f8'
    was not found. HTTP headers received from the server - ActivityId: 0997496a-5a15-4b83-82eb-727881eefa67. NodeId: . Scope: . Client ActivityId : c82f6e9c-9f8f-808b-7679-f2c0f92a339d. ---> System.Net.WebException: The remote server returned an error
    After a number of trials and errors, I am certain that this relates to my custom activities. i have already tested all of the following scenarios:
    Delete the workflow with the custom actions: Site is created successfully.
    Create a new workflow with no custom actions and save the site as a template:
    Site is created successfully.
    Save the site template including a workflow with my custom activities, but not including content:
    Site is created successfully, but my workflow is not there.
    Create a new custom workflow activities sandbox with one custom activity that just writes something to the history list - just to make sure that this is not related to any specific solution. Save the site as a template:
    Site creation throws the same error.
    Packaged my workflow (with my custom activities) as a wsp from SharePoint Designer and deployed it as a custom solution. Activated the feature in the target site. The workflow gets created and executing finally. Saved the site as template: Site
    creation throws the same error.
    Same as above, but without activating the feature in the target site: Site created successfully, workflow works fine after I activate the feature in the new site.
    My custom activities feature is always enabled in the site I save as template - in all of the above scenarios.
    I have tested all of the above scenarios both on SharePoint 2013 on-premise and Office 365. There is
    a forum post regarding some inconsistencies in the wsp file, but unfortunately this is not my case. Am I doing something wrong? Are custom 2013 workflow activities not supported in site templates - which would not actually make any sense, as it would "break"
    the fundamental concept of re-usability.
    Any ideas/feedback/guidance?
    Thanx in advance

    Hi,
    I am facing the same issue. Kindly help me out if any of them have solved similar issue. 
    Your help would be appreciated.
    manikantan

  • SP2013 - Date Filter Web Part looses connection when used in a site template

    Hi,
    I created two table reports in SQL Reporting Services 2012 and inserted in a web page using the Reporting Service Report viewer in SharePoint 2013 with CU Dez 2013. The two reports require two dates and I use two date filter web parts (I did not try the
    date range solution I saw in the fórum).
    So the user inputs the two dates in date filters that send the information to thereports in the same page.
    They work in the site and I saved it as template. However when I create e new site using it as a templates, the date filter connections are broken and of course, they did not work.
    For another report where I usea text filter, it worked without any problem in the template.
    Does anybody know any workaround?
    Thank you.
    Best regards, Ricardo Segawa - Segawas Projetos / Microsoft Partner

    Hi ,
    The new site based on the saved site template will generate new ID for date filter web part, in the web part page the SPWebPartConnection "ProviderID" value seems still to reference the original date filter web part ID (see from
    SharePoint Designer), as a workaround we can re-configure the web part connection from the web part page manually or programmatically from that new site web part page.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/8d98206d-b41f-4ee4-b537-a4bf5cec0434/sharepoint-2010-save-site-as-template-webpart-connections-broken?forum=sharepointgeneralprevious
    http://sympmarc.com/2007/09/20/removing-a-web-part-connection-in-sharepoint/
    Thank
    Daniel Yang
    TechNet Community Support

  • Custom Site Templates How-To

    I'm absolutely not opposed to doing a good deal of reading on this topic, so feel free to recommend online (and offline) resources that I might consult that provide the kind of information I'm seeking here. In any case, here is my issue...
    I have been asked to develop "custom site templates" for an existing SharePoint 2013 (on-prem) environment where the vast majority of the site collections that are likely to ever be are already provisioned. My [admittedly feeble] understanding
    of the "proper" way to do site templates is to reference the master pages and style library and such that exist at the site collection root for subordinate sites that are hosted within that site collection. Buuuuut, when the site collections already
    exist (i.e. you aren't creating them using a customized template that contains all that information), what is the best practice approach to handling and applying these customizations?
    I will point out that I am equipped and willing to manage these custom templates using VS (2013), but if that's not entirely necessary, then I'm as willing to avoid that... ;)
    If someone could get me started on the right approach or point me in the right direction, I'd greatly appreciate it. Thank you.

    Hi Ramz_dc,
    In addition to the default templates, you can create your own site template based on a site you’ve created and customized in SharePoint. This is a powerful feature in SharePoint that allows you to create a custom solution and then share that solution with
    your peers, the broader organization, or outside organizations. You can also package the site and open it in another environment or application like Microsoft Visual Studio and further customize it there.
    Take a look at the below links
    OOB site template
    http://office.microsoft.com/en-us/sharepoint-designer-help/save-a-sharepoint-site-as-a-template-HA101782501.aspx
    Visual Studio
    http://msdn.microsoft.com/en-us/library/office/ff408263%28v=office.14%29.aspx
    http://sharepoint.stackexchange.com/questions/55544/how-to-create-and-apply-custom-site-template-for-sharepoint
    http://sharepoint.stackexchange.com/questions/63141/how-to-create-a-custom-web-template-not-a-site-definition-or-import-a-saved-tem
    http://www.fpweb.net/support/microsoft-sharepoint/tutorials/sharepoint-2013/customization/create-site-template/#
    Daniel Christian (MCTS)

  • Can enable a site template for subsites via editing webtemp.xml but how do I change in my solution files?

    I have a template wsp that I deploy then create a new top level site. The template is available perfectly.
    I then try to create a subsite and the template isn't available. So I went to .../14/TEMPLATE/1033/XML/WEBTEMP.XML
    I added in my template...
    <Template Name="MYTEMPLATE" SetupPath="SiteTemplates\MyTemplate" ID="202">
    <Configuration ID="0" Title="My Site Title" Hidden="FALSE" ImageUrl="" Description="A site I created."></Configuration>
    </Template>
    Now after an IIS reset the templates show under the "Custom" tab perfectly.
    BUT the question is what file do I change in my actual solution files before I package everything up? What would add this to the webtemp.xml automatically for me when my solution is deployed?
    Thanks,

    The terminology is confusing, but what you are actually adding is a "Site Definition".  Site Templates are .wsp files that can be saved as a snapshot of an existing site for re-use.  These .wsp files are stored in the site template gallery of a
    site collection.  There are also Web Templates that are similar to Site Definitions since they use an ONET.XML file, but they are activated using a Feature.  Together Site Definitions, Site Templates, and Web Templates are known as Site Templates
    in the User Interface.  But each one is deployed and activated differently.  Site Devfinitions are normally added to the environment by using Module features to deploy the site definition in its own subdirectory where the other site definitions are
    stored.  A custom webtemp file is also deployed instead of editing the existing file.  SahrePoint will pick up any file that is stored in that location that starts with webtemp and ends in .xml.  So you can deploy a new webtemp file called Webtemp_custom.xml.
    If you are actually deploying a site template then you just upload it to the site template gallery of the site collection.  If you still aren't seeing it in the custom tab then its probably because the root site has restricted the available site templates
    for creating subsites.  This is common in Publishing sites, but can be done in any site.  In Publishing sites there is a link on the site settings page that you can use to select what site templates are available to create sub sites.  In non-publishing
    sites it requires powershell
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Site template changes not reflecting in new the already created site

    I couldn’t figure it out myself how to use site template to modify the existing site created from the site template
    So here is the simplified scenario...         
    I created a Site on Dev. SharePoint 2010, added a couple of SPD workflows, customized lists and views etc. Presented the functionality to the Stakeholders and it was accepted.
    Now the Site will be used as a template and many instances of this Site will be created using these settings (template), so I just went ahead and saved the Site as a template.
    Deployed the Site template to the live environment by deploying the .wsp file, and activated it on the desired site collection.
    THE PROBLEM I'M FACING IS IN THE CHANGE MANAGEMENT: i.e. now the sites are being created and at some point in the future there is a suggestion to add functionality or a bug to be fixed.
    MY APPROACH: I have created a sample instance of the template. I made all the changes to that template and re-saved it. This way the new sites which are created from that template do have all the fixes and enhancements.
    THE PROBLEM: How can I update the existing sites that have already been created, to apply the same fixes and enhancements?
    Thanks in advance

    You could look at the Stack Exchange thread that seems to exactly match this question (from
    here).
    Think about using the features framework, as the closest you can get to updating the template is to update all the features that the said template is based on.
    Beyond that, I can't think of anything that might achieve what you're after.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Unable to apply template to document

    Over the last few days, I have been unable to use any Templates as when I try and apply one (Using Crystal XI), I get the error mesage " Unable to apply template to document"
    I can't apply any template to any documents anymore. This worked ok a few days ago.
    There have been no changes to the system. Maybe a corrupt file?
    Any ideas welcome!
    Kevin

    Hi,
    Try to apply the predefined template in these methods
    In the menu bar goto Report-> Template Expert. A new dialog appears, choose any of the predefined template. If this doesn't work then apply manually by clicking on the Browse button in the same window.
    By default, the sample templates shipped with Crystal Reports are installed at
    \Program Files\Business Objects\Crystal Reports 12.0\Templates.
    If this also doesnt work, then your template files might be corrupted. Try reinstalling the software n check.
    Thanks,
    Rajesh

  • May Release: New partner support, Infrastructure updates, Site templates and bug fixes

    Link: http://www.businesscatalyst.com/_blog/BC_Blog/post/May-release-New-partner-support-Infrast ructure-updates-Site-templates-and_bug-fixes/
    We are announcing a new Business Catalyst release, scheduled to go live on Thursday, May 3rd. With this release, we are continuing our investments in system performance and stability by increasing our web servers capacity, enabling HTTP acceleration to provide faster site loading times, and improving the site creation speed by using pre-generated sites.
    On the product side, we have completely revamped our partner support workflow taking advantage of the Adobe support infrastructure and tools, enhanced the site templates workflow for partners, and included lots of bug fixes and improvements. Read through the following sections to get detailed information about this release:
    Partner support
    Infrastructure updates
    Features and enhancements
    Issues fixed by this release
    What's next
    You can jump to the corresponding section by clicking the above links.
    Partner support
    Updated Help & Support partner experience
    Following Adobe ID support, we have upgraded BC  support tools (cases, chat, documentation) with standard Adobe tools. As a partner, you can now benefit from the same support tools as the rest of Adobe Creative Suite, and can track your support cases with Adobe BC, Dreamweaver, Muse or Photoshop in a single place.
    Partners with more than 100 paid sites will get 2nd level chat support, which includes a higher priority, by default. If you have more than 100 paid sites, but spread across different Partner Portals, please ask support to enable 2nd level chat for you.
    Support experience for your Small Business owner clients can now be owned by partners (see below).
    Custom Help & Support URL for your clients
    As a partner, you are probably already offering various additional services to your clients besides building & maintaining their BC site. Support, tailored specifically to your client needs, is usually one of these value-added services. We are now enabling you to take your Support service to the next level. In  Partner Portal Settings, you have the option to set a custom URL for what will open when your client clicks on Help & Support inside Admin Console:
    If you have multiple partner accounts, for different verticals, you can specify a Support URL for each of these.
    The default Support experience provided by BC for your clients will be updated in a few releases to be similar to the partner support experience. This includes BC-branded support cases and documentation. If you'd like to keep a white-label experience for your customers, please set your own Help & Support URL in Partner Portal.
    For more details please read the Improved support workflow and new forums announcement on our blog.
    Infrastructure updates
    Between our April release and the following infrastructure updates have been enabled
    Limited trial sites for free partners – starting with our May release, the number of trial sites a Free Partner can have will be limited to 100. Once the limit is reached, Free Partners that need to create a new trial site have the options to upgrade to a higher partner plan, upgrade some of the trial sites to paid or delete unused/expired trials.
    Automatic trial expiry extension - with this release, trial site expiry date will be automatically extended with 30 days every time an admin user logs in  the system through the admin interface or through FTP.
    Installed additional hardware - we have installed additional web servers on all our data centers, that translate into an increase of the existing capacity with over 70%.
    Updated DNS infrastructure - we have improved the DNS resolution for email delivery so that we can increase the rate at which we're sending the system operational emails
    HTTP acceleration – all sites static assets are served from a new cache engine (images, CSS and JavaScript files, together with improved headers that should allow the browser to cache them better for a browsing session). This update has been turned on along with our April release, and has made all the BC sites load faster on first and on subsequent loads.   
    Accelerated site/partner creation – we've changed the way new sites are created for faster speed, pre-creating them and reusing pre-created sites when needed, and have also improved the creation process for new partners, minimizing the impact of new CCM customers on the existing datacenters.
    Adobe ID for partners - in order to support an integrating experience between the various Adobe tools a partner may use (Dreamweaver, Muse, Support forums) we have added Adobe ID support for Business Catalyst partner accounts. Starting April 19, partners are asked to merge their current Business Catalyst account with their Adobe ID accounts. For more details about the transition process and FAQ please read the Introducing Adobe ID blog post.
    Updated Terms of Use - Along with several other changes in our processes in the past few months, we also revamped our Terms of Use and the signature process by requesting every admin user to sign a TOU. We have completed the rollout for partners, and we might be pushing an updated partner Terms of Use version within the following weeks. For more details and questions about this change, read the New Terms of Use for Business Catalyst blog post.
    Features and enhancements
    Site templates
    To support the increasing number of partners building, sharing or reusing  templates to create  new sites, we're extending our site templates support from our partner portal with a new template type and improved  management support. The update is going to enable partners to mark sites as templates and   choose between making them available in Online Business Builder and keeping them private in their partner portal. A template site will not expire and has the same limits as any other trial site.
    Based on your partner level, you can create private or public templates using the Site Details screen or the Tools>My Site Template section from your Partner Portal. Standard partners can only create private templates, while Free Partners can only view site templates that have been transferred to their accounts by other partners.
    The number of templates a partner will have will be limited and will vary based on partner level: free partners can store up to 5 templates in their partner portal, standard partners have up to 100 site templates while Premium Partners might have up to 200 templates. Paid sites marked as templates are not counted against these limits.
    Business Catalyst Partner fixes
    While we are really focused on making the Business Catalyst integration into Creative Cloud a smashing success, we are slowly resuming our efforts to deliver fixes that have been requested by our partners. This release includes the following partner fixes:
    Improved product custom fields - we have increased the maximum number of characters for product custom fields to 1024 (previous limit was 256); this gives partners and customers additional space to use when working with products
    Improved Secure Zone subscribers list - we have added the customer email address in the Secure Zone Subscribers list to enable partners better filter and manage customers
    Better experience when exporting data - to prevent customer confusion when exporting data from Mac computers, we have removed the export to excel option and exporting in CSV format by default.
    Social plugins integration updates
    Starting with our May release, we are updating the social plugins support to require users to get the plugin code from the third party provider and saving into his Business Catalyst website. The module tags and configuration will remain unchanged, but will render an empty tag until the partner or site owner will  update the module template to include the corresponding module code snippet from the third party platform provider.
    For more information about how you can enable the Social Plugins on a Business Catalyst websites, read the Social Media: Integrating Facebook and Twitter knowledge base article.
    Other changes
    Updated weekly emails - Starting with our May release, the information in the site weekly emails has been filtered based on the site's plan. For example, webBasics site reports will no longer include the sales report.
    Localization - we improved and increased the coverage of the admin interface translations into German, French and Japanese
    Site Settings -> Ignored IP addresses has been relocated under Reports -> Visitors -> More.
    BC-Dreamweaver integration performance improvements
    Development Dashboard has been removed, as it didn't provide a clear useful, ongoing benefit. The information present in the development dashboard has been integrated into our new Help & Support section.
    Payment gateway settings - for more privacy and data protection, we have updated the Payment Gateway configuration screens to obfuscate the sensitive login information. Fields that have been obfuscated are now requiring confirmation.
    Report abuse badge on trial sites - for compliance reasons, a "Report Abuse" link has been added to the front-end of all trial sites of free partners that don't have any paid sites. When they click the Report Abuse link, site visitors are redirected to a form submission page on businesscatalyst.com site.
    Issues fixed by May release
    Issues 3051303, 3168786 - Workflow notifications - Fixed a problem preventing workflow notifications emails from being sent.(see get satisfaction forum discussion)
    Issue 3164074 - Fixed a bug causing the lightbox gallery created from Muse to be displayed behind page elements
    Issue 3162810 - Fixed a bug in rendering engine to prevent  content placed between body and head tags being incorrectly moved inside the body tag
    Issue 3166610 - Fixed a broken link to Partner Portal in Internet Explorer
    Issue 3175003 - Fixed an issue that caused an incorrect price display for the Year One-Off Setup Fee when upgrading a site from Admin using CB
    Issue 2567278 - Fixed a bug causing site replication to ignore product attributes
    Issue 2947989 - CRM passwords are now case sensitive
    Issue 2723731 - Removed CSS files from the head section of the Layouts files, when downloaded and opened in Dreamweaver, via the BC extension
    Business Catalyst new admin interface updates
    Added "Save and Add New" button in Web App Item Add & Edit screens (see get satisfaction forum discussion)
    Updated Quick Actions menus to add more actions (see get satisfaction forum discussion)
    Fixed an issue causing Recent items menu to display deleted items (see get satisfaction forum discussion)
    Fixed a display issue on File Manager making top buttons unreachable (see get satisfaction forum discussion)
    Fixed the scrollbars in Email Marketing>Campaign>Stats>Bounced Emails reports (see get satisfaction forum discussion)
    Fixed an issue causing Recent items menu to brake after selecting the current page from the Recent Items menu (see get satisfaction forum discussion)
    Replaced the Success notification displayed when selecting Users or Permissions tabs from User Roles with an Warning
    Change the action label displayed in User Roles list from View to Edit to match the list pattern from Admin Users
    Fixed a missing file JavaScript error occurring when trying to open image manager from product details-> Attributes -> options
    Moved System Emails section from Site Setting to Site Manager (see get satisfaction forum discussion)
    Updated Domain Management interfaces to close the modal window and refresh the domain list after successfully adding a domain
    Fixed an issue preventing the Hyperlink Manager to function properly (see get satisfaction forum discussion)
    Updated the confirmation message received after copying a page to match the new workflow and button names
    Fixed an issue causing the current screen or section to not be highlighted in the menu
    Updated styling on the new dashboard, user management and email accounts interfaces
    Updated  dashboard reports filters and chart display; made the chart and the filter use the site time zone
    Fixed an issue preventing users from inviting new admin users or create new email accounts on Internet Explorer 8
    Fixed an issue preventing users from deleting Email Accounts or Admin Users in Internet Explorer 8
    Fixed some issues preventing password recovery email from being sent
    Removed the alert message displayed when the user or email account limit has been reached
    Added localization for the simplified dashboard
    Fixed display issues for site limits, domains and user list in the simplified dashboard
    Added Custom reports for webBasics plan
    Fixed a bug generating a "500:Collection error" on the simplified dashboard when user did not had View users permission
    Added TOU checkbox in the email account setup screen
    Updated Site Preview link in the dashboard to load the default domain
    Fixed an issue in the new File Manager forcing a user to press Undo twice in order to see the change take effect if the code that was previously formatted contained any <"tag" with more than 2 lines
    Fixed an issue causing the File Manager editor toolbar to incorrectly render if page URL path is longer than certain value; starting with this release, the site URL is trimmed
    Fixed an issue causing the invite users to be displayed as [object Object] in dashboard and admin user list
    Fixed a bug in the new admin causing the interface to become unresponsive when using the browser Back button
    Fixed an issue in the new File Manager causing "Save Draft" button to publish the default page template instead of creating a draft version
    Fixed a broken invite link issue in the Email Account invite email
    Updated loading indicators in File Manager and Email Accounts screens
    What's next
    The first item on the what's next list might not be news for many of you, but it's definitely one of the most important milestones this year. The Creative Cloud launch is just around the corner, and Business Catalyst is playing an important role in that, as the publishing platform for Adobe® Muse and Dreamweaver. This launch will capture all our attention within the next weeks as we want it to be our best ever. 
    We'll start our next development cycle on May 15th, while the next Business Catalyst release is going to be pushed live in mid June. That being said, the following items are already on our launch plan for the next release and a few more will join the list. Please expect an update on our 2012 plans around mid May.
    HTTP throttling – all page load and API calls to BC will be protected against attacks, this might trigger problems for API heavy sites. We are looking into enabling this update along with our June release, and will help make sure that a reasonable number of requests will be accepted from the same computer per minute.
    Automatic site deletion - Starting with the June release, we are going to start automatically delete expired trial sites and canceled sites. Customers will be notified twice before we are going to proceed with deleting the sites.
    Thank you,
    Cristinel Anastasoaie
    Adobe Business Catalyst Product Manager

    In reference to this change in the Custom Reports... Better experience when exporting data - to prevent customer confusion when exporting data from Mac computers, we have removed the export to excel option and exporting in CSV format by default.
    What is the customer confusion we are trying to stop here? I've got even more confused customers at the moment because all of a sudden they can't find the export to excel option but know it exists if they log in on a PC?
    Mark

  • How can I apply existing WCS "WLAN Config" templates to a new WLC?

    We've been running a pair of WLC 4402s managed by WCS, thus we are still on the older 7.0.235.0 (WCS) / 7.0.235.3 (WLC) release. I'm trying to add an additional WLC 4402-50 as a hot spare. I first ran the manual setup steps to give it an IP in our range, and used the WLCs web page to set our SNMP communities and such to the values used by our existing WLCs, then I added the new WLC in WCS.
    At this point I could apply most of the "Controller Templates" from our existing configuration to the new unit. However, I can not get it to take our existing interfaces nor our WLAN Configurations. How do I avoid needing to recreate these from scratch on the new WLC?
    We only have four dynamic interfaces, and each WLC needs its own IP address for each interface, so I did manually add these via the WLCs web page. However, now when I go to the WCS' "Configure > Contoller Templagte Launch Pad" page, then select "WLANs > WLAN Configuration", I see my usual list of WLANs, but can't figure how to push them to the new WLC.
    For all of the other templates on the launch pad, I can select a template, click the "Apply to Controllers..." button, and I get a list that has my existing two and also the new controller. I can select the new controller, and apply the template, and it succeeds.
    Yet if I select a specific WLAN config, and press "Apply to Controllers...", the list that appears has only my existing two WLCs, not the the new one.
    In small green type at the top it says, "Controllers configured with Interface/Interface Group - 'w-restricted'  and selected RADIUS server(s), LDAP servers, ACL Name with rules and  Ingress interface are shown."
    I have already manually added the interface "w-restricted" to the new controller, and have added the RADIUS servers via the template used by our other two WLCs. Not sure what to do about "LDAP servers, ACL Name with rules and  Ingress interface", as we don't have any ACL rules, nor use LDAP directly from the WLCs (as all user ID stuff is via RADIUS).
    Any hints on what manual setup I should add to get the new WLC in the list for these WLAN Configs?
    Thanks,
    Steve

    To be honest, if your only adding another WLC, your better off creating the interface and WLAN's manually. I don't like pushing out templates to create new WLAN's. I would use it to adjust an existing WLAN, but that would be it. To me it's safer. Also your new WLC is on the same code? If you really want to figure it out, I would manually add the interfaces first then refresh the co fog from the new WLC and then push out the WLAN SSID and see if it takes. If not, don't waste your time anymore and create it manually.
    Sent from Cisco Technical Support iPhone App

  • Can I reset the free partner site back to the original site template? Or, can I apply a different template to my partner site?

    Can I reset the free partner site back to the original site template? And, Or, can I apply a different template to my partner site?@

    Thank You All for your help! I found the apply templates widget but no option are given. Do I need to upload a custom template? I have my partner site all messed up.

  • Data type change made to schema.xml of comments list which is part of blog site template is not reflecting in the existing site but working fine when new site is created.

    Hi,
    I have created a blog site with the available site template few days back. Now we have the requirement of having the attachments in the body of the comments section. 
    So, I updated the schema.xml of the comments list available under ../templates/blog/lists/comments/schema.xml to have rich text for the Body field.
    With this change, I created a new site and it was working fine. Change is reflected in the new blog site.
    However, this particular change is not reflected in the existing blog site. Any changes made to the schema.xml is not effecting the old blog site.
    Can anyone suggest what can be done for the change to be reflected in the old blog site?
    Thanks in Advance,
    Regards, Keerthi Suryadevara

    Hi,
    According to your post, my understanding is that you wanted to add attachments in the body of the comments section.
    You can add the the Code inside the Default list pages. For more information, you can refer to:
    Enable Attachment in SharePoint Blog post list and display the list Attachments
    In addition, you can add an enhanced rich text field to the comment list and remove the body field. Then you can insert files into comments, too.
    Here is a similar thread for your reference:
    http://sharepoint.stackexchange.com/questions/77194/how-to-add-attachments-for-comments-list-in-sharepoint-blog-2010
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Creat new site collecton, There is a Team site in Collaboration template, also another Team site in Enterprise template ,difference?

    Can some one tell me the difference between these two team site template, Confused me a lot.

    that's weird, i dont see any team site under the Enterprise tab. could you please share the screen shot of that portion where you seeing the enterprise team site template. May be some 3rd party template but it should be under the custom.
    here is the list of all template in the SharePoint 2013.
    sharepoint 2013 site templates
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • ANN: New marketplace for site templates, page layouts and menus

    Introducing SuCasa - SuCasa is the online marketplace for web
    designers by
    web designers. On SuCasa, you can get free or low-cost site
    templates, page
    layouts, CSS menus and more. You can also share your designs
    with the
    community, for free or the price you set. SuCasa is free to
    join. Publishers
    who decide to sell their work retain 90% of the sale and
    WebAssist handles
    all the processing and hosting charges. Publishers are paid
    monthly through
    their free PayPal accounts.
    Through SuCasa, designers can gain access to professionally
    designed,
    standards-compliant templates for web pages or entire sites,
    from a diverse
    community of designers. The designs of SuCasa fit a broad
    spectrum of
    workflows. You'll find templates to help get you started
    quickly on SuCasa,
    whether you're working with Dreamweaver, Expression Web, Coda
    or coding by
    hand. Many designs are easily modifiable with leading
    designer tools
    including Eric Meyer's CSS Sculptor, CSS Menu Writer and
    SiteAssist
    Professional . The WebAssist line of designs on SuCasa
    feature 100% licensed
    images, so you're free to use them with no copyright issues.
    SuCasa was built with Adobe Flex for an engaging user
    experience. Visit
    SuCasa at
    http://sucasa.webassist.com
    Best - Joe
    Joseph Lowery
    VP of Marketing, WebAssist -
    http://www.webassist.com
    Author, Dreamweaver CS3 Bible -
    http://www.idest.com/dreamweaver/

    Hi,
    We can add the following line of code in the .html file.
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    Like:
    <!--MS:<asp:ContentPlaceHolder id="PlaceHolderAdditionalPageHead" runat="server">-->
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <!--CS: Ausschnitt Bearbeitungsmodusbereich starten-->
    <!--SPM:<%@Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <!--SPM:<%@Register Tagprefix="Publishing" Namespace="Microsoft.SharePoint.Publishing.WebControls" Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <!--MS:<Publishing:EditModePanel runat="server" id="editmodestyles">-->
    <!--MS:<SharePoint:CssRegistration name="&#60;% $SPUrl:~sitecollection/Style Library/~language/Themable/Core Styles/editmode15.css %&#62;" After="&#60;% $SPUrl:~sitecollection/Style Library/~language/Themable/Core Styles/pagelayouts15.css %&#62;" runat="server">-->
    <!--ME:</SharePoint:CssRegistration>-->
    <!--ME:</Publishing:EditModePanel>-->
    <!--CE: Ende Ausschnitt Bearbeitungsmodusbereich-->
    <!--ME:</asp:ContentPlaceHolder>-->
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/51fdb362-41cf-4d6d-b61e-48dd23a6ba8d/special-characters-norwegian-wovels-not-showing-correctly-in-page-layouts?forum=sharepointgeneral
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • Dropped wifi on ipad and iphone

    Why oh Why do i keep dropping my wifi connection on both my ipad and iphone! it's driving me mad, I have good signal strengh and yet I drop the connection after approx 5mins. thereafter i can't reconnect! whats up?

  • ITunes not downloading

    Hey all, I hit the Download iTunes button on the website, it loads the iTunes Setup file and then I click Run. From there, the green bar fills up, and I get a window saying the following: Gathering required information... Status:     Performing insta

  • "Caching" behavior in the motion timeline

    I noticed some odd caching behavior in the motion timeline. Despite clearing animation it remained and I had to restart Ps to purge it from my project. Just me? Or is anyone else seeing this? CD

  • How to call custom BSP application (copied from standard)

    Hi, I came across 1 interesting link in SDN. [Enhancement procedure of BSP application HRRCF_RECRUITER in eRecruitment] My requirement is also similar. I need to copy the HRRCF_TRM_SRCH application. I know how to make the changes for the logic (like

  • Paint Bucket not filling entire selection (CS4/5)

    Hello, I'm a professional cartoonist and have worked in Photoshop since the earliest versions.  Since upgrading to CS4 (and now CS5), I've been having trouble using the Paint Bucket Tool, so I'd appreciate any help here. Here's a basic example ... 1)