Search found 20 matches
- Mon Sep 25, 2017 5:36 pm
- Forum: Desired Features
- Topic: Over 13,000 Duplicate Patient IDs - Help!
- Replies: 2
- Views: 19590
Re: Over 13,000 Duplicate Patient IDs - Help!
OK, so I made a change to Duplicates.php that has made my situation at least a little more manageable, I added the LIMIT 30 to limit the search to 30 records and that speeds up the list of duplicates greatly. I'm still interested in a bulk way of clearing all these, but right now this is keeping me ...
- Mon Sep 25, 2017 3:16 pm
- Forum: Desired Features
- Topic: Over 13,000 Duplicate Patient IDs - Help!
- Replies: 2
- Views: 19590
Over 13,000 Duplicate Patient IDs - Help!
The main source PacsOne gets its images from made a change last week to the way they send demographic data. In the past, we have received data with the MI being included as part of the first name - they made a change to break the MI into the Middlename field. And then they bulk sent ALL their record...
- Tue May 12, 2015 3:47 pm
- Forum: Desired Features
- Topic: Where can I find HIPAA auditing logs?
- Replies: 3
- Views: 5095
Re: Where can I find HIPAA auditing logs?
Thanks for the quick reply. OK, I think I have narrowed this down. When I view a patient in PacsOne, I see that username Viewed Patient X. When I solely use MedDream to view patients, I don't get any indication in PacsOne that the patient was viewed.
- Tue May 12, 2015 3:08 pm
- Forum: Desired Features
- Topic: Where can I find HIPAA auditing logs?
- Replies: 3
- Views: 5095
Where can I find HIPAA auditing logs?
I know PacsOne supports HIPAA auditing, and I just setup an SMTP server and set myself to receive the "Monthly System Journal Report" emails, but where is the HIPAA audit information actually stored? Also, we are using the MedDream viewer as a front-end for PacsOne, that will still log viewed studie...
- Thu Nov 13, 2014 3:52 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
Thank you, thank you, thank you! That little bit of code did the trick! I was able to open images up in Radscaper as well as the Nagoya viewer from my external link! I really appreciate your persistence and your patience helping me with this issue. And I now know much more about PHP, MySQL and PacsO...
- Wed Nov 12, 2014 3:50 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
An interesting find: I added a line in applet.php that prints out the results of $dbcon after $dbcon = new MyConnection(); function appletViewer(&$uids) { $dbcon = new MyConnection(); print_r ($dbcon); print "<APPLET codebase=radscaper/ archive=radscaper.jar code=com.divinev.radscaper.Main.class wid...
- Tue Nov 11, 2014 4:36 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
I added the extra line to the risAcess.php page, but it did not change anything - same results as before. I added the line with the other save login info lines: // save login information $_SESSION['authenticatedDatabase'] = $database; $_SESSION['authenticatedUser'] = $username; $_SESSION['authentica...
- Tue Nov 11, 2014 2:30 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
I added the session start to the applet.php file so now it looks like this: <?php // // applet.php // // Module for displaying images through Radscaper // // Modified based on an original version written by Xiaohui Li // session_start(); function appletExists() { $jar = dirname($_SERVER['SCRIPT_FILE...
- Fri Nov 07, 2014 4:37 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
I'll be glad to, but honestly we're not terribly interested in purchasing Radscaper, I only installed it at your suggestion, because you thought there might be a problem with the risAccess link and the Nagoya viewer. At this point I am just trying to make any link from an external system open an ima...
- Thu Nov 06, 2014 3:52 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
The result variable is from applet.php. This is Radscaper's applet.php that I installed at your suggestion. foreach ($uids as $uid) { $result = $dbcon->query("SELECT path FROM image where uuid='$uid';"); $row = $dbcon->fetch_row($result); $file = $row[0]; When I run the $result query from the comman...
- Wed Nov 05, 2014 4:18 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
OK, so I am finally getting more time to devote back to these links. I think the ease of the troubleshooting comes with the experience of the troubleshooter though. :wink: I changed the applet tags on the applet.php so that so javascript would not run and I added some code to spit out the variables ...
- Tue Oct 21, 2014 6:53 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
I seriously didn't want to have to come back again looking for answers, but I am at a complete loss. We finally received our license file, so I downloaded Radscaper demo version and got it loaded on the server and working well on the PacsOne server. I am able to view any study within their 4 image d...
- Thu Oct 09, 2014 7:04 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
I had to make one other change to that original code also. This line $resultSeries = $dbcon->query("SELECT uuid FROM series where studyuid='$uid' ORDER BY number ASC;"); I had to change to: $resultSeries = $dbcon->query("SELECT uuid FROM series where studyuid='$uid' ORDER BY seriesnumber ASC;"); i c...
- Thu Oct 09, 2014 3:02 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
OK, I have really been pouring through the code and I found a few more problems with the original code, mostly column names that may have changed through some revisions. I finally got the code to open the PacsOne screen with the standard (Nagoya) viewer. But the images never load, I just get a statu...
- Wed Oct 08, 2014 7:00 pm
- Forum: Desired Features
- Topic: Is URL link from ext system to PacsOne still an option?
- Replies: 24
- Views: 39897
OK, I have been looking through the code and noticed that there was an extra "u" missing from the following line in the risAccess.php code listed on the referenced page in the original post. The original script read: $query = "select uid from study where $key LIKE '$value%';"; But according to your ...