You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My max_players variable has rule: required|integer|max:32, and in Configurable Options i use quantity (slider), when i try downgrade player slots with existing service lower or higher i received error:
Array
(
[errors] => Array
(
[0] => Array
(
[code] => DataValidationException
[status] => 500
[detail] => Data integrity exception encountered while performing database write operation. {"variable_value":["The variable value must be a string."]}
)
)
[status_code] => 500
)
If change rule to string, it says error:
Array
(
[errors] => Array
(
[0] => Array
(
[code] => ValidationException
[status] => 422
[detail] => The Max Players variable must be a string.
[meta] => Array
(
[source_field] => environment.MAX_PLAYERS
[rule] => string
)
)
)
[status_code] => 422
)
If i change Configurable Options from quantity to dropdown menu, all good. Is it problem with WHMCS module?
The text was updated successfully, but these errors were encountered:
My max_players variable has rule:
required|integer|max:32
, and in Configurable Options i usequantity
(slider), when i try downgrade player slots with existing service lower or higher i received error:If change rule to
string
, it says error:If i change Configurable Options from
quantity
todropdown
menu, all good. Is it problem with WHMCS module?The text was updated successfully, but these errors were encountered: