You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you install the DataCiteDOI plugin and you have used the simplified HTTPS configuration method for HTTPS only. This will cause an error and create the wrong DOIs, as they will not include the hostname of the EPrints repository. The following line after the line reference above will fix this issue:
$c->{datacitedoi}{repoid} ||= $c->{securehost};
The text was updated successfully, but these errors were encountered:
EPrints 3.4.1+ allows for simplified configuration of HTTPS only (where all HTTP requests get redirected to HTTPS). See:
This requires
$c->{host}
to be unset and only$c->{securehost}
to be set. This is a problem for the below line: *DataCiteDoi/cfg/cfg.d/z_datacitedoi.pl
Line 35 in 1e5b538
If you install the DataCiteDOI plugin and you have used the simplified HTTPS configuration method for HTTPS only. This will cause an error and create the wrong DOIs, as they will not include the hostname of the EPrints repository. The following line after the line reference above will fix this issue:
$c->{datacitedoi}{repoid} ||= $c->{securehost};
The text was updated successfully, but these errors were encountered: