0

How to test the configuration of PHP On Ubuntu 18.10

Hello,I have no idea on how to test the configuration of php On Ubuntu 18.10?

Php Ubuntu Testing Add a comment
lucas
asked Apr 15 2019

Answer

0

create a file namedtest.php under the Apache's Document root directory.
cd /var/www/html/
vim test.php

<?php
phpinfo();
?>

Save the Configuration file of php
Open the browser,enter localhost/test.php
If php modules page opens,thus testing of php configuration comes to end successfully.

Add a comment
linuxhelp
asked Apr 15 2019
edited Apr 16 2019
Post your Answer