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 |
---|
language | php |
---|
theme | Midnight |
---|
title | Edit ACT_config.php |
---|
| return array(
'shrine_url' => 'your_SHRINE_URL_here',
'working_directory' => '/opt/viewer_jobs',
'site_name' => 'your_site_namePartners',
'debug_logging' => falsetrue,
'shrine_connector_logging' => false,
'shrine_connector 'patient_list_exporter_logging' => false
);
|
Second, create the directory with correct access settings: Code Block |
---|
language | bash |
---|
theme | Emacs |
---|
title | Create working directory |
---|
| mkdir /opt/viewer_jobs
chmod -R a+w /opt/viewer_jobs |
|