Prolog Central

Go Back   Prolog Central > Meridian Systems' Products Central > Prolog Website 2008
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-21-2009, 03:56 PM
Steve Van Dyke's Avatar
Steve Van Dyke Steve Van Dyke is offline
Administrator
 
Join Date: Jun 2007
Posts: 45
Default Lost Document Management Permissions

How many of us have lost the ability to set Document Management Permissions by removing All Users and the Add and Remove buttons are grayed out. Here is a helpful tip.


Perform the following steps in Microsoft SQL to restore permissions for ‘All Users’ in this project.

Please Note: This Tip assumes you have basic knowledge of Microsoft SQL and you have backed up a copy of your database prior to making any changes. It is also assumed you take full responsibility any changes made on the backend. If you wish, also backup and restore a copy of your database as a trial run in a test environment.

Logon to SQL and display the tables for your Prolog Database. Find the following information from the relevant tables:

Projects – Locate the ProjectID for the project in question.
Select * from Projects where Name like ‘projectname’

Next, from the WS_Folders table – Locate the ‘Project Documents’ folder for that project.
SELECT * FROM WS_Folders WHERE FolderName LIKE 'project documents' and ProjectID = ID from Projects Query above.

You can also list out the FolderID’s for Project Documents for all projects if this is easier.

SELECT WS_Folders.FolderID, WS_Folders.FolderName, WS_Folders.ProjectID AS FolderProjectID, Projects.ProjectID AS ProjectProjectID,
Projects.Name
FROM WS_Folders INNER JOIN
Projects ON WS_Folders.ProjectID = Projects.ProjectID
WHERE (WS_Folders.FolderName = N'project documents')


In the WS_FolderFileSecurity table – Add the following Detail for a new entry to this table:

The ID is System Generated so leave this column as is.
To represent ‘All Users’ the UserID is NULL and GroupID is NULL
Enter the FolderID from your Query above.
In the Access column enter 4095 (This is Full Permissions minus Use Folder Permissions)

You may need to close and open Document Management to see the change, but the All Users Group should once again have Full Permissions to Project Documents. From here, you can set proper permissions as desired.


Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -4. The time now is 06:35 AM.


Powered by vBulletin Version 3.5.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Prolog®, ProjectTalk®, and Meridian Systems® are registered trademarks of Meridian Systems, Inc.
PrologCentral.com is an independent message board and is not affiliated with or endorsed by Meridian Systems, Inc.