Troubleshooting
This page contains common error messages and their solutions. If you encounter any of these errors, follow the provided steps to resolve them.
Resource Naming Error
Error Message
^1[ERROR] Resource folder must be named ^3"uz_Dealerships"^1! (Current: ^3"test_uz_Dealerships"^1) Restart the server after renaming. ^0
Cause
The resource folder has been renamed and doesn't match the required name.
Solution
Stop your server
Rename the resource folder to exactly
uz_Dealerships
Restart your server
The folder name must match exactly, including capitalization.
Version Mismatch
Error Message
^3[VERSION] New version available: v1.0.2 (Current: v1.0.3) https://discord.uz-scripts.com/^0
Cause
You're running an outdated version of the script.
Solution
Visit portal.cfx.re
Navigate to your resource management panel
Update the resource to the latest version
Restart your server
Database Table Missing
Error Message
^1[ERROR] ^3uz_dealership_financing^1 table does not exist in the database!^0
^1[ERROR] ^0Please ensure your database is properly set up and the SQL installation has run.^0
Cause
The required database table hasn't been created during installation.
Solution
Locate the
insertMe.sql
file in your resource folderImport the SQL file into your database using one of these methods:
phpMyAdmin: Import > Choose file > Execute
HeidiSQL: File > Load SQL file > Execute
MySQL Command Line:
mysql -u username -p database_name < insertMe.sql
Restart your server
Make sure to backup your database before importing any SQL files.
Verification
To verify the table was created successfully, run this query in your database:
SHOW TABLES LIKE 'uz_dealership_financing';
If the table exists, you should see it listed in the results.
Last updated
Was this helpful?