Identix
Browse AddonsDownload RLIB
  • Introduction
  • Showcase
  • Changelog
    • 🟧2.6.0.0
    • 🟧2.5.2.0
    • 🟧2.5.1.0
    • 🟧2.5.0.0
  • FAQ
    • ◾Addon Won't Show
    • ◾Change Currencies
    • ◾Change Themes
    • ◾Disabling Names
    • ◾Incompatible Addons
    • ◾Modified Script
    • ◾Refunds
    • ◾Script Errors
    • ◾When Are Updates?
  • ❱ Setup
    • ◾Install
    • ◾Verify
    • ◾Workshop
  • ❱ Configuration
    • ◾Env
    • ◾Fonts
    • ◾Languages
    • ◾Database
    • ◾Settings
      • ◾Non-RP Gamemodes
  • ❱ First Use
    • ◾Binds
    • ◾Permissions
      • SAM
      • ServerGuard
      • ULX
      • xAdmin
  • ❱ Developers
    • ◾Hooks
      • 🔗identix_fonts_register
      • 🔗identix_pl_authenticate
      • 🔗identix_pl_name_set
      • 🔗identix_pl_name_set_post
      • 🔗identix_pl_name_rs
      • 🔗identix_pl_name_rs_post
      • 🔗identix_pl_profile_rate
      • 🔗identix_rnet_register
Powered by GitBook
On this page
  • ◾ SQLite
  • ◾ MySQL
  1. ❱ Configuration

Database

PreviousLanguagesNextSettings

Last updated 3 years ago

This addon saves player data utilizing either SQLite or Mysql (mysqloo module).

By default, this addon uses SQLite. If you wish to utilize this method; no further configurations need to be done. However, if you wish to utilize MySQL; read below.

◾ SQLite

This is the default storage method; which is the built-in Garry's Mod. If you wish to use this method; no further setup needs to be done.

All data will be saved to:

garrysmod\sv.db

In order to view these records; you must install .

◾ MySQL

To configure your addon to utilize MySQL; you must configure the file:

addons/identix/identix.rlib

Within the above file; first ensure you switch the database mode from sqlite to mysqloo:

"general"
{
     "mode"          "mysqloo"
}

Then insert your MySQL credentials in the same file and then save and close:

"mysql"
{
     "host"          "localhost"
     "port"          "3306"
     "user"          "db_username"
     "pass"          "db_pass"
     "name"          "db_nameu"
}

Any time you change the values within this file; you must restart the server for the changes to take affect.

In order to view these records; you must utilize your web hosts' Database Manager / PHPMyAdmin. Contact your host if you're unsure of how to do this.

In order for MySQL connections to function properly; you MUST install the MySQLOO module which can be .

We do not provide support for setting this up. Please review the .

◾
DB Browser for SQLite
downloaded here
MySQLOO Installation Instructions here