Accrual to Clinical Trials
Space shortcuts
Space Tools

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info Box
titlePurpose

The Patient Set Viewer and other ACT software requires a working directory. Here the software creates and updates files for background jobs, caching, and other tasks. The software needs create and write access to this working directory.


Optional: your own
Note Box
titleAccess
title

In the ACT_config.php file, we have provided a default location for your working directory. It is: /opt/viewer_jobs. You have to provide the correct access by running the chmod command as shown.


Code Block
languagebash
themeEmacs
titleHow to allow access
chmod 777 /opt/viewer_jobs
Tip
Create
working directory

Only if you want to create and use your own path/directory for the working directory follow these two steps. Otherwise the Working Directory step is now complete.

First, in the root of your ACT Web Client directory edit the ACT_config.php file. Change the working_directory to the path and directory name you plan on using

Code Block
languagephp
themeMidnight
titleEdit ACT_config.php
return array(         
         'shrine_url' => 'your_SHRINE_URL_here',
         'working_directory' => '/opt/viewer_jobs',
         'site_name' => 'Partners',
         'debug_logging' => true,
         'shrine_connector_logging' => false,
         'patient_list_exporter_logging' => false
         );





Second, create the directory with correct access settings:

Code Block
languagebash
themeEmacs
titleCreate working directory
mkdir /opt/viewer_jobs
chmod -R a+w /opt/viewer_jobs





Warning
titleNO HTTP(S) accessNot publicly accessible

Make sure web (HTTP) access is not allowed to this directory

...