Where would that be? Sorry, I'm a bit new to coding. Thank you for the helpIt tells you what you need to do right on the first line. Enable the php_fileinfo extension in the php.ini then restart the web server.

That helps a lot, thank you.For information on php extensions etc, on site.
- Create a new file and name it info.php (or some other name.php)
- Write this code in it:
PHP:<?php phpinfo (); ?>- Save the file in the root of the site
- Open the file in your browser. For example: example.com/info.php All the php information on your site will be displayed. It will also display the location of the loaded php.ini configuration file on your system.
