Report this

What is the reason for this report?

Where is location of php.ini and php_error_log?

Posted on February 13, 2016

I have installed distributive of Ubuntu plus joomla/php/appache/mysql

I am not quite expirienced user and can’t find location of php.ini and php_error_log. Could give me some advice: in what folder should I search?



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.

Hey there,

Instead of telling you where it most likely is, it may be best to show how you can easily discover these (and many other) settings as they may be in various locations. First, you would need to create a file in your web directory root, something like /var/www/html/info.php. In that file you would need to place the following lines of code:

<?php
phpinfo();
?>

Now if you visit your site (http://example.com/info.php) you’ll see all you php build and configuration information. You can run a find in your browser for Configuration File and you will see the path for the php.ini file. If you search for and error_log, you’ll see the location of the php error log.

Happy coding,

Jon Schwenn Platform Support Specialist DigitalOcean

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.