Difference between revisions of "Troubleshooting ASSS"

From ASSS Wiki
Jump to: navigation, search
(Created page with "This page deals with the troubleshooting of the ASSS installation. If you need help with writing a module, you should read Troubleshooting Modules. If you need help with conf...")
 
m
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
This page deals with the troubleshooting of the ASSS installation.
 
This page deals with the troubleshooting of the ASSS installation.
 +
<br>
 
If you need help with writing a module, you should read [[Troubleshooting Modules]].
 
If you need help with writing a module, you should read [[Troubleshooting Modules]].
 +
<br>
 
If you need help with configuring your server, you should read [[Server Setup]].
 
If you need help with configuring your server, you should read [[Server Setup]].
 +
<br>
 
If you need help with arena settings, you should read [[Complete Settings]].
 
If you need help with arena settings, you should read [[Complete Settings]].
  
 
==Potential issues==
 
==Potential issues==
<nowiki>
+
<pre>
 
I <cmod> loading C module 'capman' from 'internal'
 
I <cmod> loading C module 'capman' from 'internal'
 
W <config> Can't find file for arena '(null)', name 'groupdef/mod.txt'
 
W <config> Can't find file for arena '(null)', name 'groupdef/mod.txt'
Line 13: Line 16:
 
W <config> Can't find file for arena '(null)', name 'groupdef/default.txt'
 
W <config> Can't find file for arena '(null)', name 'groupdef/default.txt'
 
I <cmod> loading C module 'mapnewsdl' from 'internal'  
 
I <cmod> loading C module 'mapnewsdl' from 'internal'  
</nowiki>
+
</pre>
 +
OR
 +
<pre>
 +
W <mapdata> {0} error finding or reading level file
 +
W <mapnewsdl> {0} can't load level file, falling back to tinymap.lvl
 +
</pre>
 +
OR
 +
<pre>
 +
W <mapnewsdl> news file 'news.txt' not found in current directory
 +
</pre>
 
If you are seeing the above, it is possible that the files do not exist.
 
If you are seeing the above, it is possible that the files do not exist.
 
However, it is also possible that you have a file permissions error, in which you can check with ls -l.
 
However, it is also possible that you have a file permissions error, in which you can check with ls -l.
 
If it is a permissions error, you can fix it using chmod.
 
If it is a permissions error, you can fix it using chmod.
 +
<br>
  
<nowiki>
+
<pre>
 
I <cmod> loading C module 'persist' from 'scoring'
 
I <cmod> loading C module 'persist' from 'scoring'
 
db_env_create: Permission denied
 
db_env_create: Permission denied
Line 24: Line 37:
 
Unrecoverable error (5): Error in loading module 'scoring:persist'
 
Unrecoverable error (5): Error in loading module 'scoring:persist'
 
*** ASSS exited: Error loading modules  
 
*** ASSS exited: Error loading modules  
</nowiki>
+
</pre>
 
If you are seeing the above, it is possible that you have accidentally copied over your win32 database files into your linux setup, or that the files have become corrupted.
 
If you are seeing the above, it is possible that you have accidentally copied over your win32 database files into your linux setup, or that the files have become corrupted.
 
This can be fixed by simply deleting all the files in the /data folder.
 
This can be fixed by simply deleting all the files in the /data folder.

Latest revision as of 07:59, 31 May 2011

This page deals with the troubleshooting of the ASSS installation.
If you need help with writing a module, you should read Troubleshooting Modules.
If you need help with configuring your server, you should read Server Setup.
If you need help with arena settings, you should read Complete Settings.

Potential issues

I <cmod> loading C module 'capman' from 'internal'
W <config> Can't find file for arena '(null)', name 'groupdef/mod.txt'
W <config> Can't find file for arena '(null)', name 'groupdef/smod.txt'
W <config> Can't find file for arena '(null)', name 'groupdef/sysop.txt'
W <config> Can't find file for arena '(null)', name 'groupdef/sysop.txt'
W <config> Can't find file for arena '(null)', name 'groupdef/default.txt'
I <cmod> loading C module 'mapnewsdl' from 'internal' 

OR

W <mapdata> {0} error finding or reading level file
W <mapnewsdl> {0} can't load level file, falling back to tinymap.lvl

OR

W <mapnewsdl> news file 'news.txt' not found in current directory

If you are seeing the above, it is possible that the files do not exist. However, it is also possible that you have a file permissions error, in which you can check with ls -l. If it is a permissions error, you can fix it using chmod.

I <cmod> loading C module 'persist' from 'scoring'
db_env_create: Permission denied
E <cmod> error loading module 'persist'
Unrecoverable error (5): Error in loading module 'scoring:persist'
*** ASSS exited: Error loading modules 

If you are seeing the above, it is possible that you have accidentally copied over your win32 database files into your linux setup, or that the files have become corrupted. This can be fixed by simply deleting all the files in the /data folder.