Database Setup & Diagnostics
Verify MySQL tables, schema migrations, and connection settings.
Database Connection
Connected (SQLITE)| Table Name | Total Records |
|---|---|
users
|
3 |
categories
|
5 |
tools
|
19 |
conversions
|
2 |
api_keys
|
2 |
feedback
|
0 |
settings
|
6 |
MySQL Production Settings
To connect to your live MySQL / MariaDB server, edit the credentials in config/db.php or provide environment variables:
// In config/db.php:
private static string $db_host = '127.0.0.1';
private static string $db_name = 'needconvert_db';
private static string $db_user = 'root';
private static string $db_pass = '';