Quantcast
Channel: Assignment
Viewing all 9681 articles
Browse latest View live

Re: Course Creator AND Teacher can't add activities & resources - "Assignment"

$
0
0
by Alex D..  

On the role Authenticated User the capability was "prohibit"

mod/assign:addinstance: "prohibit"

I changed it on in "Permited" and now it's all OK.

But why these role depend on eachother? I was looking at all permissions from role Profesors "editingteacher" an course creator but never think that were some correlations with role "Authenticated user".

Why is that?

Thank you very much.

How can I get rid of the Last Change + date under an acitivity?

$
0
0
by Wouter Baars.  

Hi,

If I update course material on moodle, eg. on a Page, moodle adds the date of the last change under the page. How can I get rid of this reference? Some of my students ask me: why has this page not been updated for 2 years, even though the material is still up to date. So i rather not see the dates mentioned there.

Thanks for helping me (moodle 3.5)

Wouter

How to disable submission update notification (3.7)

$
0
0
by Christoph Ruda.  

On our site we have a lot of shared teacher access. To prevent unnecessary notifications I have turned off submission notifications in the assignment settings (Notify graders about submissions = No)

When pupils update their submissions everyone with teacher and non-editing teacher access is notified though.

Is there a way to  control these submission update notifications?

Any help is much appreciated.

Christoph

Re: How can I get rid of the Last Change + date under an acitivity?

$
0
0
by Mary Cooch.  

Hello smile The answer to your question I am afraid is to upgrade your Moodle version. A setting to turn it off was added to Moodle 3.6.

Assignment grading usually requires horizontal scrolling

$
0
0
by John Provasnik.  

There is some CSS you can apply to help with this. Particularly, limiting the width of images uploaded via text editor, adding a textbreak for long file names, etc...

This is for my custom theme, but you can see what may work for yours:


/* Adjustments to Quick Grading Screen Layout in Assignment Module */

/* No Submission for Grading Message */
.path-mod-assign td.submissionstatus,
.path-mod-assign div.submissionstatus,
.path-mod-assign a:link.submissionstatus {
border-radius: 6px;
padding: 2px;
border: 1px solid #cec8c8;
}
/* Submitted for Grading Message */
.path-mod-assign td.submissionstatussubmitted,
.path-mod-assign div.submissionstatussubmitted,
.path-mod-assign a:link.submissionstatussubmitted {
background-color: #fbeed5;
border-radius: 6px;
padding: 2px;
border: 1px solid #e4ca97;
}
/* Graded Grading Message */
.path-mod-assign td.submissiongraded,
.path-mod-assign div.submissiongraded {
border-radius: 6px;
padding: 2px;
border: 1px solid #adcead;
}
/* Early Submission Grading Message */
.path-mod-assign td.earlysubmission,
.path-mod-assign a:link.earlysubmission,
.path-mod-assign div.earlysubmission {
background-color: #d0e0f5;
border-radius: 6px;
padding: 2px;
border: 1px solid #89ccf3;
}
/* Late Submission Grading Message */
.path-mod-assign td.latesubmission,
.path-mod-assign a:link.latesubmission,
.path-mod-assign div.latesubmission {
border-radius: 6px;
padding: 2px;
border: 1px solid #c7a2a2;
}
/* Overdue Submission Grading Message */
.path-mod-assign div.overduesubmission,
.path-mod-assign div.overduesubmission font {
font-size: x-small;
}
/* Change Layout Order */
@media only screen and (min-width: 981px) {
/* Change Block & Question Section Order MacBook */
#page-mod-assign-grading #page-content {display: flex; flex-direction: column; flex-wrap: nowrap;}
#page-mod-assign-grading #region-main-box {order: 1;}
#page-mod-assign-grading #page-content.blocks-pre .columnleft {order: 2!important;}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/* Change Block & Question Section Order iPad */
#page-mod-assign-grading #page-content {display: flex; flex-direction: column; flex-wrap: nowrap;}
#page-mod-assign-grading #region-main-box {order: 1;}
#page-mod-assign-grading #page-content.blocks-pre .columnleft {order: 2!important;}
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) {
/* Change Block & Question Section Order iPhone */
#page-mod-assign-grading #page-content {display: flex; flex-direction: column; flex-wrap: nowrap;}
#page-mod-assign-grading #region-main-box {order: 1;}
#page-mod-assign-grading #page-content.blocks-pre .columnleft {order: 2!important;}
}
/* Fit all Columns on Screen */
@media (min-width: 768px) {
#page-mod-assign-grading #page-content.blocks-pre .region-main {max-width: 100%!important;}}
@media (min-width: 992px) {
#page-mod-assign-grading #page-content.blocks-pre .region-main {max-width: 100%!important;}}
/* Reset Table Preferences Button */
.resettable a {background: red; color: yellow; padding: 3px; border-radius: 5px;}
/* Correct the widths on Quick Grading screen due to long file names*/
#page-mod-assign-grading td[id^="mod_assign_grading"] td div a,
#page-mod-assign-grading td .no-overflow p
{word-break: break-all;}
/* Correct the widths on Quick Grading screen due to large Online Text images */
#page-mod-assign-grading .quickgradingform img {max-width: 600px; height: auto;}
/* Fit Quick Grading Page on Mobile Device */
@media only screen and (max-width: 500px) {
#page-mod-assign-grading table {background: white;}
#page-mod-assign-grading table.flexible td, .generaltable td {border-top: 0 solid black;}
#page-mod-assign-grading #region-main .no-overflow {width: unset;}
#page-mod-assign-grading table.generaltable thead {display: none;}
#page-mod-assign-grading .quickgradingform tr {display: flex; flex-flow: row; flex-wrap: wrap; border-bottom: 1px solid black; background: white;}
#page-mod-assign-grading .quickgradingform table.generaltable tr table tr {border-bottom: 0 solid black;}
}
/* Add Scroll Bar on the Grading Page */
#page-mod-assign-grading .region-main .no-overflow {overflow: visible;}

/* Rearrange Filter on Quick Grading Page */
#page-mod-assign-grading div[role="main"] {display: flex; flex-direction: column;}
#page-mod-assign-grading .groupselector {order: 1;}
#page-mod-assign-grading .gradingoptionsform {order: 2; padding-bottom: 0!important;}
#page-mod-assign-grading .quickgradingform {order: 3;}
#page-mod-assign-grading .gradingbatchoperationsform {order: 4;}
#page-mod-assign-grading .urlselect {order: 5; margin-left: 40px;}

/* Styles the Outer Group Selector Div */
#page-mod-assign-grading .groupselector .singleselect {
border-radius: 10px;
border: 2px solid black;
padding: 10px 10px 0 10px;
margin-top: 10px;
}
/* Un-Styles the Inner Group Selector Div */
#page-mod-assign-grading .groupselector .singleselect .singleselect {
border: 1px solid #ced4da;
border-radius: 5px;
padding: .375rem 1.75rem .375rem .75rem;}

/* Display Grading Options in a Row */
#page-mod-assign-grading .gradingoptionsform fieldset#id_general div.fcontainer.clearfix {display: flex; flex-direction: row;}
#page-mod-assign-grading .gradingoptionsform fieldset#id_general div.fcontainer.clearfix #fitem_id_perpage {flex-direction: column;}
#page-mod-assign-grading .gradingoptionsform fieldset#id_general div.fcontainer.clearfix #fitem_id_perpage .col-md-3 {min-width: 260px;}
#page-mod-assign-grading .gradingoptionsform fieldset#id_general div.fcontainer.clearfix #fitem_id_filter {flex-direction: column;}
#page-mod-assign-grading .gradingoptionsform fieldset#id_general div.fcontainer.clearfix #fitem_id_filter .col-md-3 {min-width: 270px;}

Re: Assignment grading usually requires horizontal scrolling

$
0
0
by Samuli Karevaara.  

Thanks, John. I will investigate your modifications and apply some of them for our theme.

Re: How can I get rid of the Last Change + date under an acitivity?

$
0
0
by Wouter Baars.  

ah, thanks. I made a mistake, I am on moodle 3.6 actually. Where can i find the switch?

Re: How can I get rid of the Last Change + date under an acitivity?

$
0
0
by Mary Cooch.  

When you edit a Page activity you see the option in the Appearance section (although it is possible if you are using a non-standard theme it might not be there.)

Not able to open the Turnitin Assignment paper

$
0
0
by Sarath P.  

Hello everyone. 

When a student clicks on the similarity, he is getting the error: "Your session has expired. You are not able to view this paper. M20: 27". As an administrator, I am able to open the submission. When I logged in as that student, I am not able to open. I tried to find a solution but could not find one.

I found one URL, but the error code here is different.

Url: https://www.jiscmail.ac.uk/cgi-bin/webadmin?A3=ind1604&L=TURNITIN&E=quoted-printable&P=604869&B=--001a11c36f5cff1d51053113358e&T=text%2Fhtml;%20charset=UTF-8 

My error code M20: 27.

Please find the screenshot below


Can anyone please tell me what the above Turnitin error code means?

Moodle: 3.4.2+

Turnitin plugin version: 3.1+

Thanks in Advance

Re: Assignment grading usually requires horizontal scrolling

$
0
0
by John Provasnik.  

And here is a visual of what some of that code does for the filters:



Unoconv not converting jpeg to PDF

$
0
0
by Kristaps M.  

Good day! 

I have noticed that our Moodle is not converting jpeg files to PDF. Just shows an empty page, blank page, also having yellow notification "Some of the files in this submission can only be accessed by direct download."

We have unoconv and the path is fine also other extensions works fine such as png and jpg.

Strange is that under document convertors I don't see this extension within the list of supported extensions.

Our moodle version: Moodle 3.7.1+ (Build: 20190718)

Unoconv version: 0.7

LibreOffice: 6.0.7.3

Assignments and H5P content not showing up when I have added them

$
0
0
by Jude Mortimer.  

Hi there, I am relatively inexperienced with Moodle. I have managed to add several types of resources and activities to a course but am struggling with Assignment and also H5P. They appear to add in but then I can't see them from my tutor view.

I can, however, see them from  the student view so I know they are there but not sure how I can now edit or remove them if I can't see them as an editor.

I have checked the assignment dates and they are current so it isn't that causing the problem.

Can anyone help? Thanks smile 

Re: Assignments and H5P content not showing up when I have added them

$
0
0
by ben reynolds.  

The most likely culprit is that you're using groups and you're not in a group.

Re: Assignments and H5P content not showing up when I have added them

$
0
0
by Jude Mortimer.  

Thanks Ben. smile Do you mean the groups setting for the course I'm viewing? If so the group mode there says 'no groups'. Or is there another group setting I need to check somewhere else?

Changing groups and assessment records

$
0
0
by cat ste.  

Hi all

I have recently had students submit to an assignment in group. If I were now to delete those groups and re-group students, would I lose the assignments, grades and feedback records?


Thank you 


Changing groups and assessment records

$
0
0
by cat ste.  

Hi all

I have recently had students submit to an assignment in group. If I were now to delete those groups and re-group students, would I lose the assignments, grades and feedback records?


Thank you 

Re: Assignments and H5P content not showing up when I have added them

$
0
0
by ben reynolds.  

Well, so much for the simple fix sad
Let's do some questions.
1. When you are adding the Assigns and H5Ps are you in the same role as what you call "tutor"? (which I assume means what Moodle calls "Editing Teacher")
2. When you say "student view," are you using "Switch role to..." or are you logging in as student with a different login and password from your own?
3. When you say you can't see them, does that mean the space is blank? If it is not blank, what is there?
4. When a student can see them, are they in the location where editing teacher put them?

Re: Error message "Cannot open the PDF. The file may be corrupt, or in an unsupported format."

$
0
0
by Bang Rom.  

sir how abaout if I install on cpanel?

how i can enable ghostscript??

Re: Error message "Cannot open the PDF. The file may be corrupt, or in an unsupported format."

$
0
0
by Ken Task.  

'install on cPanel' ... does cPanel allow installation of operating system software/utilities?

Didn't think cPanel did.  How you install software depends upon operating system and what sort of hosting you have leased.

If operating system is Ubuntu, package manager (software installer) is apt-get.   If Centos 6 or 7, it's yum.

One really doesn't 'enable' ghostscript but setting path (as described in previous posting in this thread) is required.

'SoS', Ken

Re: Error message "Cannot open the PDF. The file may be corrupt, or in an unsupported format."

$
0
0
by Bang Rom.  

I rented a hosting service

I think they do not activate the Ghostscript feature

so is there no other way?
Viewing all 9681 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>