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.
Hi @perezinn,
Usually when experiencing a blank page on a .php file, it means there is an issue with the code. In this case everything does seem okay with the page itself.
Having said that, most probably an PHP extension is missing. To confirm this, ssh to your Droplet
ssh root@DropletIp
Go to your DocumentRoot and execute the file like so
cd /path/to/website/
php info.php
The PHP command will actually execute the file just like you would from the Browser however it will provide you with the error as well. From there you should be able to see what is missing and install it.
Regards, KDSys