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 /
filter /
tex /
Delete
Unzip
Name
Size
Permission
Date
Action
db
[ DIR ]
drwxr-sr-x
2017-06-22 16:04
lang
[ DIR ]
drwxr-sr-x
2017-06-22 15:47
tests
[ DIR ]
drwxr-sr-x
2017-06-22 16:04
README.mimetex
11.3
KB
-rw-r--r--
2017-06-22 16:04
displaytex.php
1.72
KB
-rw-r--r--
2017-06-22 16:04
filter.php
8.18
KB
-rw-r--r--
2017-06-22 16:04
latex.php
6.66
KB
-rw-r--r--
2017-06-22 16:04
lib.php
5.52
KB
-rw-r--r--
2017-06-22 16:04
mimetex.darwin
2.69
MB
-rw-r--r--
2017-06-22 16:04
mimetex.exe
1.28
MB
-rw-r--r--
2017-06-22 16:04
mimetex.freebsd
1.3
MB
-rw-r--r--
2017-06-22 16:04
mimetex.linux
1.26
MB
-rw-r--r--
2017-06-22 16:04
pix.php
3.06
KB
-rw-r--r--
2017-06-22 16:04
readme_moodle.txt
868
B
-rw-r--r--
2017-06-22 16:04
settings.php
4.97
KB
-rw-r--r--
2017-06-22 16:04
texdebug.php
16.06
KB
-rw-r--r--
2017-06-22 16:04
thirdpartylibs.xml
229
B
-rw-r--r--
2017-06-22 16:04
version.php
1.15
KB
-rw-r--r--
2017-06-22 16:04
Save
Rename
<?php // This function fetches math. images from the data directory // If not, it obtains the corresponding TeX expression from the cache_tex db table // and uses mimeTeX to create the image file // disable moodle specific debug messages and any errors in output define('NO_DEBUG_DISPLAY', true); define('NO_MOODLE_COOKIES', true); // Because it interferes with caching require_once('../../config.php'); if (!filter_is_enabled('tex')) { print_error('filternotenabled'); } require_once($CFG->libdir.'/filelib.php'); require_once($CFG->dirroot.'/filter/tex/lib.php'); require_once($CFG->dirroot.'/filter/tex/latex.php'); $cmd = ''; // Initialise these variables $status = ''; $relativepath = get_file_argument(); $args = explode('/', trim($relativepath, '/')); if (count($args) == 1) { $image = $args[0]; $pathname = $CFG->dataroot.'/filter/tex/'.$image; } else { print_error('invalidarguments', 'error'); } if (!file_exists($pathname)) { $convertformat = get_config('filter_tex', 'convertformat'); if (strpos($image, '.png')) { $convertformat = 'png'; } $md5 = str_replace(".{$convertformat}", '', $image); if ($texcache = $DB->get_record('cache_filters', array('filter'=>'tex', 'md5key'=>$md5))) { if (!file_exists($CFG->dataroot.'/filter/tex')) { make_upload_directory('filter/tex'); } // try and render with latex first $latex = new latex(); $density = get_config('filter_tex', 'density'); $background = get_config('filter_tex', 'latexbackground'); $texexp = $texcache->rawtext; // the entities are now decoded before inserting to DB $lateximage = $latex->render($texexp, $image, 12, $density, $background); if ($lateximage) { copy($lateximage, $pathname); $latex->clean_up($md5); } else { // failing that, use mimetex $texexp = $texcache->rawtext; $texexp = str_replace('<', '<', $texexp); $texexp = str_replace('>', '>', $texexp); $texexp = preg_replace('!\r\n?!', ' ', $texexp); $texexp = '\Large '.$texexp; $cmd = filter_tex_get_cmd($pathname, $texexp); system($cmd, $status); } } } if (file_exists($pathname)) { send_file($pathname, $image); } else { if (debugging()) { echo "The shell command<br />$cmd<br />returned status = $status<br />\n"; echo "Image not found!<br />"; echo "Please try the <a href=\"$CFG->wwwroot/filter/tex/texdebug.php\">debugging script</a>"; } else { echo "Image not found!<br />"; echo "Please try the <a href=\"$CFG->wwwroot/filter/tex/texdebug.php\">debugging script</a><br />"; echo "Please turn on debug mode in site configuration to see more info here."; } }