Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi!
Sometimes magic stuff happens, I didnt really chance any thing and when reloading the admin interface the editor for templates, xslt and so on is broken. This goes as well for some templates. Very annoying. Any tips?
Fixed it by running (in the command prompt)
icacls . /grant "IIS APPPOOL\umbraco":(OI)(CI)M
where the \umbraco is the name of my application pool for the specific site.
So this was a matter of permission settings?
I'm not that good at command script so just curious about what the above script does :)
/Kim A
The above script gives the user umbraco located in the IIS APP POOL rights to read and execute the files in the folder where the command is executed.
The entire script looks like this
icacls . /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls app_code /grant "IIS APPPOOL\umbraco":(OI)(CI)RX icacls app_browsers /grant "IIS APPPOOL\umbraco":(OI)(CI)RX icacls app_data /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls bin /grant "IIS APPPOOL\umbraco":(OI)(CI)R icacls config /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls css /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls data /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls masterpages /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls media /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls python /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls scripts /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls umbraco /grant "IIS APPPOOL\umbraco":(OI)(CI)R icacls usercontrols /grant "IIS APPPOOL\umbraco":(OI)(CI)R icacls xslt /grant "IIS APPPOOL\umbraco":(OI)(CI)M icacls web.config /grant "IIS APPPOOL\umbraco":(OI)(CI)M
You can read more here
http://our.umbraco.org/wiki/install-and-setup/set-umbraco-folder-permissions-from-command-line
Ahh great Eric. I think what confused me was that your app pool user was called umbraco :)
Thanks for clearing things out.
Just to make clear, it's not the user as i said, its the app pool name
IIS APPPOOL\{application-pool-name}
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Template and editors broken in admin interface
Hi!
Sometimes magic stuff happens, I didnt really chance any thing and when reloading the admin interface the editor for templates, xslt and so on is broken. This goes as well for some templates. Very annoying. Any tips?
Fixed it by running (in the command prompt)
where the \umbraco is the name of my application pool for the specific site.
So this was a matter of permission settings?
I'm not that good at command script so just curious about what the above script does :)
/Kim A
The above script gives the user umbraco located in the IIS APP POOL rights to read and execute the files in the folder where the command is executed.
The entire script looks like this
You can read more here
http://our.umbraco.org/wiki/install-and-setup/set-umbraco-folder-permissions-from-command-line
Ahh great Eric. I think what confused me was that your app pool user was called umbraco :)
Thanks for clearing things out.
/Kim A
Just to make clear, it's not the user as i said, its the app pool name
is working on a reply...