Turnitin Late Submission Hack
Although the text would remain visually unaltered, Turnitin would not be able to make. If you're analyzing this blog submit, you're probably a scholar who intends to plagiarise. While some plagiarism detection software are programmed to deal with this hack, not all are. How do I turn in a late assignment via Turnitin? Viewing Submission Information Home > User Guides > Instructor Guides > Feedback Studio > Managing Assignments > Viewing Late Submissions Viewing Late Submissions. Mar 20, 2013 - How to make a late email appear “on time” using the RobotLoop technique. When you just plain forgot to submit that assignment on time to your. There are even more powerful frameworks and hacks to get you out of.
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign upHave a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Shonannokaze suirenka rar. Sign in to your account
Comments
commented Sep 4, 2014
We're seeing a lot of errors with this errorcode using the plagiarism_turnitin plugin: 'There has been an error with your submission: The due date for this assignment has passed and late submissions are not allowed.' |
commented Sep 4, 2014
this status also returns a 'success' as the statuscode so the current interface shows the turnitin id string and no error messages or status notification to the user. 23310 226022 67785 2827d1cc17e6d7076481ac4635140f561726bff3 448636397 0 success 1 |
commented Sep 5, 2014
we've fixed this on the turnitin side with this particular assignment and managed to get reports generated in Turnitin for those files but the scores don't update in Moodle. I think the entries are picked up by the list of $submissions in cron() as the orcapable and similarityscore fields are null and the statuscode is 'success' but the records aren't updated with the new score from turnitin. I don't think the files are included in $readsubmissions = $response->getSubmissions(); even though the submissionid should be included in: looking closer to see if I can work out why but any pointers/feedback would be useful! |
commented Sep 5, 2014
ah - it's a problem with: with postgres a comparison with an integer using != excludes null values from the report. also - if we're using sql to generate the submissions it would be more efficient to check for a valid cm in this first query rather than checking get_coursemodule_from_id on every submission returned. I'll send through a patch that does this for you to take a look. |
commented Sep 5, 2014
doh - I need to keep up a bit better - looks like that null issue is already fixed in 80ab23e We still need to investigate why the due date failure occured though. |
commented Sep 5, 2014
Turnitin Late Submission Hack
looks like this occured due to re-use of an assignment from a previous year. start date was set in Moodle but end date wasn't - it created the assignment last year and the due date Turnitin generated for that assignment had passed. The old plugin I had checked for this sort of error and fixed up the due date on the turnitin side automatically - not sure if that's possible. |
commented Sep 8, 2014
here's a dirty hack that I haven't tested yet: John - is there a more reliable way of detecting this error rather than relying on the errormsg string returned from the API? |
commented Sep 26, 2014
Hey John - did you have any other ideas on this one for ways to manage this a bit better than the patch I've added above? |
commented Sep 26, 2014
Sample Letter Of Late Submission
Hi Dan, I haven't managed to look into this this further yet. I'm currently unsure how it occurs though as in the 2 places we perform a submission we sync the assignment immediately before. When we sync the assignment we edit the start date so it can't be more than a year in the past in Turnitin. If no due date is set in the assignment it would be set to a month from now in Turnitin. I'll do some more investigating. |
commented Nov 10, 2014
Hi Dan, is this still an issue for you. The dates that sync with Turnitin have been tweaked slightly for 2014012409. Late submissions is now always set to true as well to avoid any potential conflicts. |
commented Nov 10, 2014
cool - makes sense to always allow late submissions on the turnitin side and just let moodle handle the submissions. If that is forced accross all existing and new assignments it should sort it. We've left that hacky patch in place so I'm not sure if it's still an issue but next time I update their site I'll remove the hack. |