whoa
This commit is contained in:
parent
7c1da54412
commit
170dbcaaa9
|
@ -1,12 +1,19 @@
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
; To enable a module, remove the semi-colon (;) in front of its name.
|
; To enable a module, remove the semi-colon (;) in front of its name.
|
||||||
; Module names don't have _amxx or their file extension, and they
|
; If it's not here, simply add it its name, one per line.
|
||||||
; are listed one per line.
|
; You don't need to write the _amxx part or the file extension.
|
||||||
; You can also put a > in front of a module name to force the name
|
|
||||||
; to be used as it is, without auto-correcting it.
|
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; 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 ;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
;mysqlx
|
||||||
|
;sqlitex
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Put third party modules below here. ;;
|
;; Put third party modules below here. ;;
|
||||||
;; You can just list their names, without the _amxx ;;
|
;; You can just list their names, without the _amxx ;;
|
||||||
|
@ -15,27 +22,13 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
;; SQL Modules need to be explicitly enabled. ;;
|
|
||||||
;; You can only have one type on at a time. ;;
|
|
||||||
;; However, you can choose either MySQL or MySQLX, ;;
|
|
||||||
;; or both. If you run both at once, MySQLX will ;;
|
|
||||||
;; run in backwards compatibility mode. ;;
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
|
|
||||||
;mysql
|
|
||||||
;mysqlx
|
|
||||||
;sqlite
|
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; These modules will be auto-detected and loaded ;;
|
;; These modules will be auto-detected and loaded ;;
|
||||||
;; as needed. You do not need to enable them here ;;
|
;; as needed. You do not need to enable them here ;;
|
||||||
;; unless you have problems. ;;
|
;; unless you have problems. ;;
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
fun
|
;fun
|
||||||
;engine
|
;engine
|
||||||
;fakemeta
|
;fakemeta
|
||||||
;geoip
|
;geoip
|
||||||
|
|
|
@ -4,8 +4,11 @@
|
||||||
// *NOTE* Linux users may encounter problems if they specify "localhost" instead of "127.0.0.1"
|
// *NOTE* Linux users may encounter problems if they specify "localhost" instead of "127.0.0.1"
|
||||||
// We recommend using your server IP address instead of its name
|
// We recommend using your server IP address instead of its name
|
||||||
|
|
||||||
|
// *NOTE* amx_sql_type specifies the DEFAULT database type which admin.sma will use.
|
||||||
|
|
||||||
amx_sql_host "127.0.0.1"
|
amx_sql_host "127.0.0.1"
|
||||||
amx_sql_user "root"
|
amx_sql_user "root"
|
||||||
amx_sql_pass ""
|
amx_sql_pass ""
|
||||||
amx_sql_db "amx"
|
amx_sql_db "amx"
|
||||||
amx_sql_table "admins"
|
amx_sql_table "admins"
|
||||||
|
amx_sql_type "mysql"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user