Hello,
I am configuring a new server with Lighttpd, PHP5 & mysql as on this page:[
howtoforge.com ]
Well, i am noob on those things, the problem is that when I test php via a simple index.php page with <?php phpinfo(); ?> in it, everything's ok. But, When I embed that into an .html file as shown below, the page returns blank.
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php phpinfo(); ?>
</body>
</html>
what may be the reason for that? I think something is wrong.
p.s.: Using mysql_secure_installation, i have disabled remote connections. What is this for? On 'CentOS perfect setup' pages, everyone recommends setting:
mysqladmin -h server.example.com -u root password yourrootpassword
do I really have to set this?