Hi All,
I just got this question from one of the marketing guys. I wonder how can I implement this.
1. if Hospital A has one pacs server and it wants to put all the images on there and used by several doctors and departments. Of course, doctor B/Department C can't not view images or documents from others doctors/Department and vice versa. How can I implement this feature on Pacs.
thanks,
Pacs.
PS: also, when I try to launch the http://ip_address/pacsone/pacsone.php I got the Unauthorized log in message. What causes this? I checked the security.php file but got no clue. Please help
How to implement certain users can view certain clients.
In PacsOne Server, we use different privilege levels and patient/study privacy attribute to control which patients/studies a user can view/see:
1. All patients/studies are private by default.
2. The Administrator or users with Modify privilege can change the privacy attribute of patients/studies to public/private.
3. The Administrator or users with View privilege can view all patients/studies including those that are private.
4. Users without the View privilege can view any public patients/studies, but can only view those private patients/studies for which the logged-in user is either the Referring Physician or the Reading Physician.
The reason why you got the "Unauthorized" error message is because you need to login to PacsOne first, before you can view any patients/studies. i.e., you need to enter a valid username/password plus the anti-spam code to pass the security checks, before you can access any page in PacsOne Server.
For more details, please check out the PacsOne Server Premium Edition User's Manual online:
http://www.rainbowfishsoftware.com/manual.pdf
1. All patients/studies are private by default.
2. The Administrator or users with Modify privilege can change the privacy attribute of patients/studies to public/private.
3. The Administrator or users with View privilege can view all patients/studies including those that are private.
4. Users without the View privilege can view any public patients/studies, but can only view those private patients/studies for which the logged-in user is either the Referring Physician or the Reading Physician.
The reason why you got the "Unauthorized" error message is because you need to login to PacsOne first, before you can view any patients/studies. i.e., you need to enter a valid username/password plus the anti-spam code to pass the security checks, before you can access any page in PacsOne Server.
For more details, please check out the PacsOne Server Premium Edition User's Manual online:
http://www.rainbowfishsoftware.com/manual.pdf
Thanks very much for your fast reply.
I will check out the View thing.
About the Unauthorized Message at the very first GUI (login gui). if I am not logging in, how can I view the studies.. I am just curious.
So, that message is always there when I launch:
"http://ip-address/pacsone/pacsone.php ?
Best regards,
Pacs
I will check out the View thing.
About the Unauthorized Message at the very first GUI (login gui). if I am not logging in, how can I view the studies.. I am just curious.
So, that message is always there when I launch:
"http://ip-address/pacsone/pacsone.php ?
Best regards,
Pacs
Is it possible to make patients/studies public by default?pacsone wrote:1. All patients/studies are private by default.
2. The Administrator or users with Modify privilege can change the privacy attribute of patients/studies to public/private.
3. The Administrator or users with View privilege can view all patients/studies including those that are private.
4. Users without the View privilege can view any public patients/studies, but can only view those private patients/studies for which the logged-in user is either the Referring Physician or the Reading Physician.
Some customers of ours are very small clinics with few doctors, they would prefer to do the opposite (only special patients would be made "private").
Yes, you can make the newly received patients/studies Public by default, by running the following SQL queries after logging into the PacsOne Server database from a local command shell:
After that, all newly received patients/studies will be Public by default.
Code: Select all
mysql> alter table patient modify private BOOL DEFAULT 0;
mysql> alter table study modify private BOOL DEFAULT 0;