←  Problemy

AMXX.pl: Support AMX Mod X i SourceMod

»

GmAMXBans
Brak banów.

Zablokowany

  • +
  • -
ptasiek - zdjęcie ptasiek 24.03.2011

Witam serwer dodałem ręcznie.bo z bazą danych SERW NIE MOŻE SIĘ PODŁĄCZYĆ NIE WIEM CZEMU.Ale mam dziwny log.
[AMXBans] Wiadomosc: Table 'ptasior_ban.amx_bans' doesn't exist (1146)L 03/24/2011 - 19:48:07:
A moja baza danych to ptasior_ban BEZ AMX_BANS. nie rozumiem:
amx_sql_host "overlife.hostsms.pl"
amx_sql_user "ptasior_ban"
amx_sql_pass "password "
amx_sql_db "ptasior_ban"
amx_sql_table "amxbans"
amx_sql_type "mysql"

Dziwne że nie działa jak diablo na innym serwie mam dobrze.
Wersję serwera: ns/s
Spoiler

MOdules.ini:
;;;
; To enable a module, remove the semi-colon (<img src='http://img.amxx.pl/public/style_emoticons/<#EMO_DIR#>/wink.gif' class='bbc_emoticon' alt=';)' /> in front of its name.
; If it's not here, simply add it its name, one per line.
; You don't need to write the _amxx part or the file extension.
;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SQL Modules usually need to be enabled manually ;;
;; You can have any number on at a time.  Use      ;;
;;  amx_sql_type in sql.cfg to specify the default ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;mysql
;sqlite

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Put third party modules below here.              ;;
;; You can just list their names, without the _amxx ;;
;;  or file extension.                              ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; These modules will be auto-detected and loaded   ;;
;;  as needed.  You do not need to enable them here ;;
;;  unless you have problems.                       ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

fun
;engine
;fakemeta
;geoip
;sockets
;regex
;nvault
cstrike
csx
;hamsandwich
orpheu
mysql
Odpowiedz

  • +
  • -
Szyfrant - zdjęcie Szyfrant 24.03.2011

odblokuj mysql z modules.ini


wgrałes poprawnie amxbansa na www?
Odpowiedz

  • +
  • -
ptasiek - zdjęcie ptasiek 24.03.2011

Tak amxbans link AMXBans: Gm 1.5.1 - Aktualny Status Serwera

Dodano 24 marzec 2011 - 21:44:
A mysql jest odblokowane na samym dole.
Odpowiedz

  • +
  • -
Szyfrant - zdjęcie Szyfrant 24.03.2011

haha tak byc nie moze


zmien

;;;
; To enable a module, remove the semi-colon (;) in front of its name.
; If it's not here, simply add it its name, one per line.
; You don't need to write the _amxx part or the file extension.
;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SQL Modules usually need to be enabled manually ;;
;; You can have any number on at a time. Use ;;
;; amx_sql_type in sql.cfg to specify the default ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;mysql
;sqlite

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Put third party modules below here. ;;
;; You can just list their names, without the _amxx ;;
;; or file extension. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; These modules will be auto-detected and loaded ;;
;; as needed. You do not need to enable them here ;;
;; unless you have problems. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

fun
;engine
;fakemeta
;geoip
;sockets
;regex
;nvault
cstrike
csx
;hamsandwich
orpheu
mysql


na

;;;
; To enable a module, remove the semi-colon (;) in front of its name.
; If it's not here, simply add it its name, one per line.
; You don't need to write the _amxx part or the file extension.
;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SQL Modules usually need to be enabled manually ;;
;; You can have any number on at a time. Use ;;
;; amx_sql_type in sql.cfg to specify the default ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

mysql
;sqlite

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Put third party modules below here. ;;
;; You can just list their names, without the _amxx ;;
;; or file extension. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; These modules will be auto-detected and loaded ;;
;; as needed. You do not need to enable them here ;;
;; unless you have problems. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

fun
;engine
;fakemeta
;geoip
;sockets
;regex
;nvault
cstrike
csx
;hamsandwich
orpheu

Odpowiedz

  • +
  • -
Kawon - zdjęcie Kawon 24.03.2011

wykonaj zapytanie sql
CREATE TABLE `amx_bans` (
`bid` int(11) NULL auto_increment,
`player_ip` varchar(32) NULL,
`player_id` varchar(35) NULL,
`player_nick` varchar(100) NULL DEFAULT 'Unknown',
`admin_ip` varchar(32) NULL,
`admin_id` varchar(35) DEFAULT 'Unknown',
`admin_nick` varchar(100) NULL DEFAULT 'Unknown',
`ban_type` varchar(10) NULL DEFAULT 'S',
`ban_reason` varchar(100) NULL,
`ban_created` int(11) NULL,
`ban_length` int(11) NULL,
`server_ip` varchar(32) NULL,
`server_name` varchar(100) NULL DEFAULT 'Unknown',
`ban_kicks` int(11) NOT NULL DEFAULT '0',
`expired` int(1) NOT NULL DEFAULT '0',
`imported` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (bid),
KEY player_id (player_id)
) ENGINE = MYISAM ;


i powiedz czy działa
Użytkownik Kawon edytował ten post 24.03.2011 21:51
Odpowiedz

  • +
  • -
ptasiek - zdjęcie ptasiek 25.03.2011

A jeśli mam hosting na hostsms.pl a domene na az.pl to może host mysql'a z az.pl?
Bo diablo mod tez już sie posypał.

Dodano 25 marzec 2011 - 20:53:
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Zapytanie nie powiodlo sie!
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Blad zapytania , Miejsce: 1
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Wiadomosc: Table 'ptasior_ban.amx_serverinfo' doesn't exist (1146)
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Raport zapytania: SELECT `motd_delay` FROM `amx_serverinfo` WHERE address = '85.25....98....139:27015'
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Zapytanie nie powiodlo sie!
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Blad zapytania , Miejsce: 5
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Wiadomosc: Table 'ptasior_ban.amx_reasons' doesn't exist (1146)
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Raport zapytania:
L 03/25/2011 - 19:42:16: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Zapytanie nie powiodlo sie!
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Blad zapytania , Miejsce: 40
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Wiadomosc: Table 'ptasior_ban.amx_flagged' doesn't exist (1146)
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Raport zapytania:
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Zapytanie nie powiodlo sie!
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Blad zapytania , Miejsce: 40
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Wiadomosc: Table 'ptasior_ban.amx_flagged' doesn't exist (1146)
L 03/25/2011 - 19:42:18: [amxbans_main.amxx] [AMXBans] Raport zapytania:
L 03/25/2011 - 19:42:34: [amxbans_main.amxx] [AMXBans] Zapytanie nie powiodlo sie!
L 03/25/2011 - 19:42:34: [amxbans_main.amxx] [AMXBans] Blad zapytania , Miejsce: 40
L 03/25/2011 - 19:42:34: [amxbans_main.amxx] [AMXBans] Wiadomosc: Table 'ptasior_ban.amx_flagged' doesn't exist (1146)
L 03/25/2011 - 19:42:34: [amxbans_main.amxx] [AMXBans] Raport zapytania:
L 03/25/2011 - 19:42:38: [amxbans_main.amxx] [AMXBans] Zapytanie nie powiodlo sie!
L 03/25/2011 - 19:42:38: [amxbans_main.amxx] [AMXBans] Blad zapytania , Miejsce: 9
L 03/25/2011 - 19:42:38: [amxbans_main.amxx] [AMXBans] Wiadomosc: Table 'ptasior_ban.amx_serverinfo' doesn't exist (1146)
L 03/25/2011 - 19:42:38: [amxbans_main.amxx] [AMXBans] Raport zapytania:
Odpowiedz

  • +
  • -
Szyfrant - zdjęcie Szyfrant 25.03.2011

w sql.cfg masz mieć wpisany adres bazy mysql nie domeny
Odpowiedz

  • +
  • -
ptasiek - zdjęcie ptasiek 25.03.2011

Hm.. do phpmyadmina? http://hostsms.pl/phpMyAdmin/ takie coś?
Przed domeną miałem mysql overlife.hostsms.pl I wszystko było git dopiero jak domenę podpiełem to nie działa.
Odpowiedz

  • +
  • -
Szyfrant - zdjęcie Szyfrant 25.03.2011

tak dokładnie podaj Ip bazy i sprawdz czy działa spinguj najlepiej
Odpowiedz

  • +
  • -
ptasiek - zdjęcie ptasiek 25.03.2011

Skad go mam wziąć te ip.. Jak spingować?
Odpowiedz

  • +
  • -
Szyfrant - zdjęcie Szyfrant 26.03.2011

jaki masz panel w hostsms?

cpanel czy directadmin?
Odpowiedz

  • +
  • -
ptasiek - zdjęcie ptasiek 26.03.2011

DirectPanel/Admin
Odpowiedz
Zablokowany