# Common Errors

In this section, you will find answers to commonly encountered issues. Remember that most errors stem from incorrect configuration, lack of required resources, or insufficient modification.

Bear in mind that troubleshooting requires patience and precision. Try to carefully analyze the errors and systematically review possible solutions.

If the issue persists after verifying the configuration and available resources, please contact the support on the VMS Discord.

***

<details>

<summary>No such export Notification in vms_notify</summary>

1. Go to vms\_clothestore/config/config.lua file
2. Find function `Config.Notification`
3. Remove vms\_notify exports and add your notify events or exports

</details>

<details>

<summary>ESX ERROR with skinchanger</summary>

This error may indicate too old version of esx\_skin and skinchanger resources, requires update to minimum version 1.8.5

</details>

<details>

<summary>ESX ERROR with esx_datastore for Wardrobe / Manage menu</summary>

1. Make sure you have the **esx\_datastore** script running on the server
2. Make sure that in your datastore table in the database there is a record available that has the value shared as 0 (zero) - will mean that for each player is created separately, it should be called property by default
3. f you have it under another name use it but it will require adjustment in vms\_clothestore/config.lua - `Config.DataStoreName`.

If you do not have such a record in your datastore table, it requires you to create it, you can use the following query to create it:

```sql
INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES
	('property', 'Property', 0);
```

</details>
