English 中文(简体)
Can t delete anything in the Backoffice
原标题:
  • 时间:2012-05-03 15:30:25
  •  标签:
  • umbraco5

I ve been developing complex websites with Sitecore for the past 4 years, but Umbraco is completely new to me.

I ve setup Umbraco 5 (multiple releases of it, including the very latest) on my machine. I ve created a Document Type called Test. When I right-click it and choose Delete nothing happens. This is the case for anything that I try to delete in the Backoffice.

I then tried setting up Umbraco 4.7.2 and tried creating something in the Backoffice and deleting. That worked! It s only in Umbraco 5 that I can t delete anything.

Any suggestions will be greatly appreciated!

问题回答

Can you save, move or rename your templates?

It sounds like a permissions problem.

Try both of these approaches:

  1. Set correct permissions for IUSR on the root folder.

  2. Make sure your application in ISS is running on the defaul appPool

  3. Use the command prompt and navigate to the root folder and run the following code or paste the code to a .bat file in the root directory and run it.

    icacls App_Data /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M icacls App_Plugins /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M
    
    icacls Areas /grant "IIS AppPoolDefaultAppPool":(OI)(CI)R
    
    icacls bin /grant "IIS AppPoolDefaultAppPool":(OI)(CI)R
    
    icacls Content /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M
    
    icacls Scripts /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M
    
    icacls Views /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M
    
    icacls web.config /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M
    
    icacls web.config /grant "IIS AppPoolDefaultAppPool":M
    
    icacls packages.config /grant "IIS AppPoolDefaultAppPool":(OI)(CI)M
    
    icacls packages.config /grant "IIS AppPoolDefaultAppPool":M
    




相关问题
Umbraco 5 keeps showing Login Expired on Administrator Panel

On administration panel, Jupiter regularly takes off a "Login Expired" box asking to login again. I am using a IIS7 hosting service I am using SQL Server 2008 R2 I checked the full trust capability ...

Umbraco 5 surface controller and partial macro

I m playing with Umbraco 5 (complete newbie) and currently trying to experiment with the surface controller and macro s. I ve created a basic surface controller: public class TestSurfaceController : ...

IIS 7 rewrite rule and Url.Content issues

I have the following rule in IIS 7: <rule name="Category" enabled="true"> <match url="^store/([0-9]+)/(.*)" /> <action type="Rewrite" url="store?...

Can t delete anything in the Backoffice

I ve been developing complex websites with Sitecore for the past 4 years, but Umbraco is completely new to me. I ve setup Umbraco 5 (multiple releases of it, including the very latest) on my machine. ...

Umbraco v5.x learning resources

Umbraco has lately made a move from ASP.NET Web forms to ASP.NET MVC 3. I have tried to find good resources which would help me to get started, but since it is so new I am out of luck. I would not ...

umbracoNaviHide not working in Where statement

Trying to get children of a given document type, with umbracoNavihide not set to false: The following produces correct output. @foreach (var child in root.Children.Where("ContentTypeAlias == "...

热门标签