/var/softaculous/dokeos
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
.htaccess9860644editdlrm
add_course.conf.php4530644editdlrm
configuration.php61720644editdlrm
course_info.conf.php22970644editdlrm
dokeos.sql2108420644editdlrm
dokeos.zip549970420644editdlrm
edit.php49350644editdlrm
edit.xml4330644editdlrm
fileindex.php3520644editdlrm
import.php32450644editdlrm
info.xml28900644editdlrm
install.js9240644editdlrm
install.php65480644editdlrm
install.xml20430644editdlrm
mail.conf.php8430644editdlrm
md530670644editdlrm
notes.txt5210644editdlrm
profile.conf.php15120644editdlrm
Edit: /var/softaculous/dokeos/.htaccess (986B)
########################################################################################### #change this file to fit your configuration and save it as .htaccess in the courses folder# ########################################################################################### #dokeos mod rewrite #comment lines start with # and are not processed RewriteEngine On #rewrite base is the dir dokeos is installed in with trailing slash RewriteBase [[relativeurl]]/courses/ #do not rewrite on the main dir #change this path to the path of your main folder RewriteCond %{REQUEST_URI} !^[[relativeurl]]/main/ #replace nasty ampersands by 3 slashes, we change these back in download.php RewriteRule ([^/]+)/document/(.*)&(.*)$ $1/document/$2///$3 [N] #rewrite everything in the document folder of a course to the download script RewriteRule ([^/]+)/document/(.*)$ [[relativeurl]]/main/document/download.php?doc_url=/$2&cDir=$1 [QSA,L]