You can customize PHP settings like memory limit or max upload size without needing root access.
Using .user.ini
:
- Navigate to your website root folder via File Manager.
- Create a file called
.user.ini
if it doesn’t exist. - Add overrides like:
memory_limit = 512M
upload_max_filesize = 128M - Save and allow 5 minutes for the changes to apply.
These settings override the server’s default PHP configuration only for your site.