Raised This Month: $ Target: $400
 0% 

Release Legacy SourceBans 1.4.11 (Updated 2014/02/17)


Post New Thread Closed Thread   
 
Thread Tools Display Modes
G2KV
BANNED
Join Date: Dec 2010
Old 01-04-2012 , 18:12   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2711

nobody will help me to fix my problem ??? maybe someone knows about this 2703
G2KV is offline
Horsedick
AlliedModders Donor
Join Date: Sep 2011
Old 01-04-2012 , 18:34   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2712

Quote:
Originally Posted by G2KV View Post
nobody will help me to fix my problem ??? maybe someone knows about this 2703
its noting a error log file..whats it say in there or is it the same thing?

Also whats the admins.cfg look like that you are running?
Horsedick is offline
G2KV
BANNED
Join Date: Dec 2010
Old 01-04-2012 , 18:39   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2713

Code:
L 01/03/2012 - 03:38:16: Info (map "zm_towers_fixed") (file "errors_20120103.log")
L 01/03/2012 - 03:38:16: [admin-flatfile.smx] Error(s) detected parsing addons/sourcemod/configs/admins.cfg
L 01/03/2012 - 03:38:16: [admin-flatfile.smx]  (line 111) Unknown group "Simple"
all the time in the error file

in my admin file all users are like this :

Code:
    "USER"
    {
        "auth"        "steam"
        "identity"        "STEAM_0:"
        "flags"        "abcdefgjkq"
        "group"        "Simple"
        "password"        "PAss"
        "immunity"        "20"
    }
what is the problem
G2KV is offline
Peace-Maker
SourceMod Plugin Approver
Join Date: Aug 2008
Location: Germany
Old 01-05-2012 , 05:08   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2714

Quote:
Originally Posted by G2KV View Post
Code:
L 01/03/2012 - 03:38:16: Info (map "zm_towers_fixed") (file "errors_20120103.log")
L 01/03/2012 - 03:38:16: [admin-flatfile.smx] Error(s) detected parsing addons/sourcemod/configs/admins.cfg
L 01/03/2012 - 03:38:16: [admin-flatfile.smx]  (line 111) Unknown group "Simple"
all the time in the error file

in my admin file all users are like this :

Code:
    "USER"
    {
        "auth"        "steam"
        "identity"        "STEAM_0:"
        "flags"        "abcdefgjkq"
        "group"        "Simple"
        "password"        "PAss"
        "immunity"        "20"
    }
what is the problem
Please check your admin_groups.cfg either, if there's a group called "Simple" listed in there. Groupnames are case-sensitve! Maybe you got bad writing permissions on your config files.

Quote:
Originally Posted by p3rr0n View Post
i have installed sourcebans so i have lost ban command in the sm_admin
Quote:
Originally Posted by mausetot View Post
my banfunction is vanished again... no errors, basebans.smx in "disabled"-folder...

any help?

best regards
Some providers always reset the server to a saved state on start. Make sure the basebans.smx plugin isn't always moved to /plugins again and the adminmenu.smx plugin is running properly. Any errors in your sourcebans.log?
__________________
Peace-Maker is offline
G2KV
BANNED
Join Date: Dec 2010
Old 01-05-2012 , 05:13   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2715

My groups file is :

Code:
"groups"
{
    "Reserved Slot"
    {
        "flags"        "a"
    }
    "VIP Silver"
    {
        "flags"        "s"
        "immunity"        "1"
    }
    "VIP Gold"
    {
        "flags"        "r"
        "immunity"        "2"
    }
    "VIP Platinum"
    {
        "flags"        "t"
        "immunity"        "3"
    }
    "Simple"
    {
        "flags"        "abcdefgjkq"
        "immunity"        "30"
    }
}
Permitions are : rwxr-xr-x

I think there is nothing wrong here ,becasue my other groups work but if i try to add this new one it gives error

G2KV is offline
404UserNotFound
BANNED
Join Date: Dec 2011
Old 01-05-2012 , 17:08   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2716

Quick question: The way my server hosting has been set up, I have access to SQL and PHPMyAdmin (no CPanel though, the owner of my hosting says it sucks). When I set up a database, it's prefixed by my username on the hosting server, so it'd be <username>_<database name>.

Would I be able to get SourceBans running on a name-prefixed database by default, or would I have to change the name around in the source code and recompile it or something?
404UserNotFound is offline
Peace-Maker
SourceMod Plugin Approver
Join Date: Aug 2008
Location: Germany
Old 01-05-2012 , 18:17   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2717

The database name isn't hardcoded anywhere. Just set it correctly in your databases.cfg and type in the correct name during the webinstaller.
__________________
Peace-Maker is offline
G2KV
BANNED
Join Date: Dec 2010
Old 01-05-2012 , 18:20   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2718

[QUOTE=Peace-Maker;1625791]Please check your admin_groups.cfg either, if there's a group called "Simple" listed in there. Groupnames are case-sensitve! Maybe you got bad writing permissions on your config files.



My groups file is :

Code:
"groups"
{
    "Reserved Slot"
    {
        "flags"        "a"
    }
    "VIP Silver"
    {
        "flags"        "s"
        "immunity"        "1"
    }
    "VIP Gold"
    {
        "flags"        "r"
        "immunity"        "2"
    }
    "VIP Platinum"
    {
        "flags"        "t"
        "immunity"        "3"
    }
    "Simple"
    {
        "flags"        "abcdefgjkq"
        "immunity"        "30"
    }
}
Permitions are : rwxr-xr-x

I think there is nothing wrong here ,becasue my other groups work but if i try to add this new one it gives error

G2KV is offline
404UserNotFound
BANNED
Join Date: Dec 2011
Old 01-05-2012 , 21:06   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2719

Quote:
Originally Posted by Peace-Maker View Post
The database name isn't hardcoded anywhere. Just set it correctly in your databases.cfg and type in the correct name during the webinstaller.
Beauty! Thank you! Onto installation I go!
404UserNotFound is offline
Fearts
ferts of daeth
Join Date: Oct 2008
Old 01-07-2012 , 01:37   Re: SourceBans 1.4.9 (Updated 2011/11/18)
#2720

For some reason no matter what I do sm_ban <player> <time> <reason> and also from the admin menu only bans a player for 5 mins. Also it never adds the ban to the website. Any idea why this is happening?

Code:
"Databases"
{
    "driver_default"        "mysql"
    
    "sourcebans"
    {
        "driver"            "mysql"
        "host"                "localhost"
        "database"            "mydata"
        "user"                "myuser"
        "pass"                "mypass"
        //"timeout"            "0"
        "port"            "3306"
    }
    
    "storage-local"
    {
        "driver"            "sqlite"
        "database"            "sourcemod-local"
    }
    
    // When specifying "host", you may use an IP address, a hostname, or a socket file path
    
    "default"
    {
        "driver"            "default"
        "host"                "70.42.74.29"
        "database"            "sourcemod"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }
    
    "storage-local"
    {
        "driver"            "sqlite"
        "database"            "sourcemod-local"
    }

    "clientprefs"
    {
        "driver"            "sqlite"
        "host"                "localhost"
        "database"            "clientprefs-sqlite"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }

"default"
    {
        "driver"            "default"
        "host"                "74.91.113.24"
        "database"            "sourcemod"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }
    
    "storage-local"
    {
        "driver"            "sqlite"
        "database"            "sourcemod-local"
    }

    "clientprefs"
    {
        "driver"            "sqlite"
        "host"                "localhost"
        "database"            "clientprefs-sqlite"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }
"default"
    {
        "driver"            "default"
        "host"                "216.52.148.65"
        "database"            "sourcemod"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }
    
    "storage-local"
    {
        "driver"            "sqlite"
        "database"            "sourcemod-local"
    }

    "clientprefs"
    {
        "driver"            "sqlite"
        "host"                "localhost"
        "database"            "clientprefs-sqlite"
        "user"                "root"
        "pass"                ""
        //"timeout"            "0"
        //"port"            "0"
    }
"tetris"
        {
            "driver"            "sqlite"
            "database"            "tetris"
        }
"snake"
        {
            "driver"            "sqlite"
            "database"            "snake"
        }
"jihad"
        {
            "driver"            "sqlite"
            "database"            "jihad"
        }
"ctban"
        {
            "driver"            "sqlite"
            "database"            "ctban"
        }
}
__________________

Last edited by Fearts; 01-07-2012 at 01:51.
Fearts is offline
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 11:29.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode