If you get exception such as mentioning "exceeded the ‘max_questions’ resource" it means your MySQL or MariaDB server is configured with a too small number of queries per hour for the user account XStudio is using.
You can change this by running these commands on your server:
use mysql update user set max_questions = 0 where user = 'xstudio'; flush privileges;
0 Comments