On 18 Sep 2020, Manu Ngamotu said the following...
is there a way to make mystic be able to list all files in the files directory on a html website?
If you're looking for something just to list files in html without linking them, you could do something quick & dirty like:
html1.txt:
<html>
<head><title>My BBS Files</title></head>
<body>
<pre>
html2.txt:
</pre>
</body>
</html>
allfiles.ini:
[General]
GenerateAllFiles = true
logfile=mutil.log
logcache=true
loglevel=2
logtype = 0
maxlogfiles = 3
maxlogsize = 1000
[GenerateAllFiles]
filename = allfiles.txt
Windows, htmlallfiles.bat:
mutil.exe allfiles.ini
echo html1.txt > allfiles.html
echo allfiles.txt >> allfiles.html
echo html2.txt >> allfiles.html
del allfiles.txt
Linux, htmlallfiles.sh:
./mutil allfiles.ini
cat html1.txt > allfiles.html
cat allfiles.txt >> allfiles.html
cat html2.txt >> allfiles.html
rm allfiles.txt
You'd then have to get allfiles.html to your website somehow.
There may be a more elegant way of doing that, but it'd work.
Jay
... Why did the police go to the daycare? A 3-year-old was resisting a rest
--- Mystic BBS v1.12 A46 2020/08/26 (Raspberry Pi/32)
* Origin: Northern Realms (21:3/110)