🔍 Database Diagnostic Tool

This page shows what databases are available and which one this site is currently using.

Current Site Configuration

Config Status ✓ Configuration loaded
Current Directory /home/topche10/homeofficestyles.com/docusign
Script Location /home/topche10/homeofficestyles.com/docusign/database-diagnostic.php
Database Host localhost
Database User topche10_sign
Database Name topche10_document_signing

Available Databases on Server

Total Databases: 2 | User Databases: 1

Database Name Type Current?
information_schema System -
topche10_document_signing User Database ✓ CURRENT

What This Means

For your setup:

✓ Both databases should be visible above.
If you don't see both "forms" and "document_signing", they may not exist yet or there's a permission issue.

Next Steps:

  1. If both databases appear: Your setup is correct. The database-manager will now show both options.
  2. If only carapp appears: The document_signing or forms database may need to be created, or your database user doesn't have access to them.
  3. For the signing site: It should have its own config.php that points to document_signing database.

Troubleshooting

If databases are missing:

Check your database user permissions. Run this in phpMyAdmin:

SHOW GRANTS FOR 'topche10_sign'@'localhost';

Create missing databases:

If databases don't exist, you can create them in phpMyAdmin:

CREATE DATABASE IF NOT EXISTS document_signing CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE DATABASE IF NOT EXISTS forms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

Run this diagnostic on both your carapp site and your signing site to compare.

This file is safe to leave on your server but should be protected/hidden from public access.