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 there,
Do you see any errors in your Laravel logs?
Also, do you have any validation rules in your upload controller that might be preventing you from uploading PDF files?
Feel free to share the upload method here so I could take a further look!
Best,
Bobby
Hey @brenmor,
It’s possible the changes you’ve done are not on the actual php.ini file that is being used. What you can do is create an info file - info.php with the following content:
- <?php
-
- phpinfo();
Once you’ve created it, you’ll just need to load it. In there you’ll see the loaded configurations line. That’s the php.ini you’ll need to update.
Additionally, remember to add the info.php file in your public folder from where Laravel is loaded to be able to reach it.
Hope this helps!