Ithenticate Submission

We configured the Ithenticate Plugin and it worked as expected. However, when authors submit manuscripts and other related documents, they all get uploaded to Ithenticate. Is there a way to make sure only article texts are uploaded to the Ithenticate folder? @asmecher

4 Likes

Hi @Obeshlord,

Can you please indicate which version of OJS you’re using (e.g. 3.3.0-13), as well as the version of the Ithenticate plugin you are using?

Thank you,

Roger
PKP Team

Thank you for the reply. OJS is version 3.3.0.9 and the Ithenticate is version 1_0_5_1

@Obeshlord this isn’t currently possible. I’ve created a ticket in the GitHub repo for this plugin and hopefully we’ll see some movement on this one before long.

In our journal, I added the following line of code to PlagiarismPlugin.inc.php:109 to make only article text files are uploaded to iThenticate.

if($submissionFile->getData(‘genreId’)!=1) continue;

In our case, genreId for article text is 1

1 Like