Reputation: 938
I'm running windows server 2012 R2 running IIS 8. New to the whole windows server environment.
To install PHP, I'm following the below tutorial
Part of it says, in order to use PHP's session functionality properly I need to create a new folder "sessions" and add "IIS_IUSRS" to the folder.
However when I enter the same in the "Object files box" it gives me the "Object named IIS_IUSRS was not found" error.
So far I have referred to the following, but none has been that helpful
Trying to add IIS_IUSRS to Administrators group [closed]
IIS or IIS_IUSRS permisions so that PHP can write files for WordPress
How to give Folder Permission for IIS User in C#?
IIS_IUSRS and IUSR permissions in IIS8
Been researching for hours, but can find nothing concrete enough.
Upvotes: 14
Views: 33600
Reputation: 2323
Two things to note when adding IIS_IUSRS
via the Windows user/group selection dialog shown below:
IIS_IUSRS
is a group, not a user. Groups
is unchecked by default, so you'll need to check it under Object Types
.
IIS_IUSRS
is not a domain object but is local to the machine. So, as noted in another answer, ensure the machine name (and not an Active Directory location) is selected under Locations
.
These parameters can be easy to overlook for those who are accustomed to adding AD users (versus local groups) via this dialog and therefore leaving the default values.
Upvotes: 9
Reputation: 405
I know this is old, but since I came across this when I was searching for a solution, might as well answer it.
Source of my answer: IIS_IUSRS group is not found in Windows 7 laptop
Upvotes: 22