On GARMTECH hosting you can change many PHP limits in Plesk (upload size, memory, execution time). Sometimes you need to override other PHP directives for a specific website or folder.
For most cases, we recommend using Plesk → PHP Settings. If you need a folder-specific override, you can use a .user.ini file.
This applies to the whole domain.
.user.ini is a small configuration file that PHP reads in the directory of the executed script and parent directories up to the document root (PHP-FPM/FastCGI). This allows you to apply settings only where needed (for example, only inside /wp-admin).
httpdocs)..user.iniExample:
memory_limit = 256M
max_execution_time = 180
max_input_vars = 5000
display_errors = Off
Important: not every PHP directive can be changed this way. Only directives allowed for user/per-directory mode will work.
PHP caches .user.ini values. If you do not see changes immediately, wait a few minutes and test again.
If you are unsure whether the directive is applied, create a small phpinfo.php file in the same folder and open it in a browser:
<?php
phpinfo();
Then search for the directive name. After testing, delete this file (it reveals server details).
.user.ini and it is placed in the correct directory.