Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi @alexanderCrab,
The best way to see which PHP.ini your website is looking at is using phpinfo. PHPinfo() is a PHP method which can be used in a file like so
<?php
phpinfo();
Basically, what you need to do is create a file called info.php in your website’s directory.
touch info.php
Then open it and type in the method
nano info.php
<?php
phpinfo();
Save and quit.
Now that you have the file open it in your browser. It will provide you with the loaded PHP.ini file from which you can actually start making the changes.
Regards, KDSys