• 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!

Compiling Compile 3884 on your new system

oOIOo

HetZera.Net
Joined
Mar 30, 2010
Messages
221
Reaction score
1
hello, i ordered your service
i can't understand your system
can you tell me how to setup tfs 3884?
hello,
 
1. You need to log in to your server and switch to root (su -)
2. Then download this package: wget http://tfs.dondaniello.com/services/tfs/lib2.tar.gz
3. Unpack it and put all the files (except tfs) in /usr/local/lib
4. Run "ldconfig"
5. Put tfs (from the package) to /home/otsmanager/forgottenserver/build/
6. Now go back to being otsmanager and start tfs
 
now i want to close notice reporting

i checked php.ini and found display_errors = Off

and then i added in index.php
error_reporting(0);

it's disappeared all but still seeing some notices while creating account
Notice: Undefined index: sqliteDatabase in/home/otsmanager/www/public_html/ajax/check_account.php on line 49

how to fully close notice?
 
You mean "turn off" notice display.
Which php.ini are you modifying?

You can just put
Code:
ini_set('display_errors', false);
in the PHP file.
 
Back
Top