• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Channel Logs

Seksy

Member
Joined
May 20, 2012
Messages
387
Reaction score
23
Location
Tennessee
Big question. One month ago channel logs stopped working. What in the hell could have caused that?
I have this in xml and was working before. Logging is set in source but enabled in xml so any channel set to yes should generate a log right?
Code:
<?xml version="1.0" encoding="UTF-8"?>
<channels>
    <!-- README:
        0 - dynamic, reserved for guilds
        1 - always acts as Party channel, only "name" tag available
        6 - acts as Help channel- clientsided message
        65535 - DO NOT CHANGE THE ID- only "name", "enabled", "active" and "logged" tags available
     -->
    <channel id="1" name="Party"/>
    <channel id="2" name="Staff" access="3"/>
    <channel id="3" name="World Chat" level="2" logged="yes"/>
    <channel id="4" name="Advertising" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes."/>
    <channel id="5" name="English Chat" level="2"/>
    <channel id="6" name="Help" logged="yes"/>
    <channel id="7" name="Counselor" access="1"/>
    <channel id="8" name="Latin Chat" level="2">
        <vocation id="0"/>
    </channel>
    <!-- <channel id="9" name="My Custom Channel"/> -->
    <channel id="65535" name="Private Chat Channel"/>
</channels>
 
ahh the wonderful land of Otland and unanswered threads.
Can someone explain the damn log system to me? I am trying to get them working.
Perhaps the compiled version I have now does not have text logger in?
what command do I need to run in order to update ait and add this?
 
Semi-Solved
Ok the solution thanks to dominique120 for pointing this out
I compiled the server in root folder but later moved it to a new directory user a new user
When the user was created it was given /xxx/xxx as home directory however I forgot to make said user owner of the directory and its files so used the following command

"chown -R username /directory/folder"

logs are now generating for talkactions but cant figure out how to get it to log world chat
 
Last edited:
Back
Top Bottom