Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
mod /
lesson /
Delete
Unzip
Name
Size
Permission
Date
Action
backup
[ DIR ]
drwxr-sr-x
2017-06-22 15:13
classes
[ DIR ]
drwxr-sr-x
2017-06-22 15:22
db
[ DIR ]
drwxr-sr-x
2017-06-22 15:23
lang
[ DIR ]
drwxr-sr-x
2017-06-22 15:13
pagetypes
[ DIR ]
drwxr-sr-x
2017-06-22 15:23
pix
[ DIR ]
drwxr-sr-x
2017-06-22 15:23
tests
[ DIR ]
drwxr-sr-x
2017-06-22 15:23
continue.php
9.61
KB
-rw-r--r--
2017-06-22 15:22
edit.php
2.85
KB
-rw-r--r--
2017-06-22 15:23
editpage.php
7.13
KB
-rw-r--r--
2017-06-22 15:23
editpage_form.php
1.95
KB
-rw-r--r--
2017-06-22 15:23
essay.php
20.15
KB
-rw-r--r--
2017-06-22 15:23
essay_form.php
2.36
KB
-rw-r--r--
2017-06-22 15:23
format.php
32.26
KB
-rw-r--r--
2017-06-22 15:23
grade.php
1.6
KB
-rw-r--r--
2017-06-22 15:23
import.php
3.82
KB
-rw-r--r--
2017-06-22 15:23
import_form.php
3.09
KB
-rw-r--r--
2017-06-22 15:23
index.php
4.18
KB
-rw-r--r--
2017-06-22 15:23
lesson.php
5.69
KB
-rw-r--r--
2017-06-22 15:23
lib.php
51.69
KB
-rw-r--r--
2017-06-22 15:23
locallib.php
133.45
KB
-rw-r--r--
2017-06-22 15:23
mediafile.php
4.56
KB
-rw-r--r--
2017-06-22 15:23
mod_form.php
20.52
KB
-rw-r--r--
2017-06-22 15:23
override_form.php
10.6
KB
-rw-r--r--
2017-06-22 15:23
overridedelete.php
3.27
KB
-rw-r--r--
2017-06-22 15:23
overrideedit.php
7.08
KB
-rw-r--r--
2017-06-22 15:23
overrides.php
10
KB
-rw-r--r--
2017-06-22 15:23
renderer.php
24.37
KB
-rw-r--r--
2017-06-22 15:23
report.php
34.26
KB
-rw-r--r--
2017-06-22 15:23
settings.php
8.69
KB
-rw-r--r--
2017-06-22 15:23
tabs.php
3.56
KB
-rw-r--r--
2017-06-22 15:23
timer.js
2.82
KB
-rw-r--r--
2017-06-22 15:23
upgrade.txt
1.5
KB
-rw-r--r--
2017-06-22 15:23
version.php
1.17
KB
-rw-r--r--
2017-06-22 15:23
view.php
29.3
KB
-rw-r--r--
2017-06-22 15:23
view_form.php
1.95
KB
-rw-r--r--
2017-06-22 15:23
Save
Rename
/*///////////////////////////////////////////////////////// // This code is based off of // "Live Clock Lite" script - Version 1.0 // By Mark Plachetta (astroboy@zip.com.au) // // The original script displayed a clock. // Mark Nielsen modified it to be a countdown timer // for the lesson module in moodle. // // Below is the code that is used to call this page. // echo "<script type=\"text/javascript\">\n"; // echo "var starttime = ". $timer->starttime . ";\n"; // echo "var servertime = ". time() . ";\n"; // echo "var testlength = ". $lesson->timelimit .";\n"; // echo "document.write('<script type=\"text/javascript\" src=\"liveclock_lite.js\"><\/script>');\n"; // echo "window.onload = function () { show_clock(); }"; // echo "</script>\n"; // //////////////////////////////////////////////////////////*/ var stopclock = 0; var myclock = ''; var timeleft, hours, minutes, secs; var javatimeDate = new Date(); var javatime = javatimeDate.getTime(); javatime = Math.floor(javatime / 1000); if (typeof(clocksettings) != 'undefined') { if (clocksettings.starttime) { starttime = parseInt(clocksettings.starttime); } if (clocksettings.servertime) { servertime = parseInt(clocksettings.servertime); } if (clocksettings.testlength) { testlength = parseInt(clocksettings.testlength); } } difference = javatime - servertime; starttime = starttime + difference; /*function leave() { // feable attempt to run a script when someone leaves a timed test early, failed so far window.onunload = window.open('http://www.google.com','','toolbar=no,menubar=no,location=no,height=500,width=500'); } leave();*/ function show_clock() { currentDate = new Date(); current = currentDate.getTime(); current = Math.floor(current / 1000); var mytime = '', myclock = document.getElementById("lesson-timer"); if (current > starttime + testlength) { mytime += M.util.get_string('timeisup', 'lesson'); stopclock = 1; } else { timeleft = starttime + testlength - current; if (timeleft < 60) { myclock.className = "timeleft1"; } hours = Math.floor(timeleft / 3600); timeleft = timeleft - (hours * 3600); minutes = Math.floor(timeleft / 60); secs = timeleft - (minutes * 60); if (secs < 10) { secs = "0" + secs; } if (minutes < 10) { minutes = "0" + minutes; } mytime += hours + ":" + minutes + ":" + secs; } myclock.innerHTML = mytime; if (stopclock == 0) { setTimeout("show_clock()", 1000); } }