Hello,
After updating these pages:
apache2-mpm-itk apache2.2-bin apache2.2-common libapache2-mod-php5filter
my Apache/PHP server started to behave strange.
PHP files having a correct HTML layout is fine, this works:
http://85.159.208.250/linode/testHTML.phpCode:
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
<?php echo "hello"; ?>
</body>
</html>
Output:
Quote:
My First Heading
My first paragraph.
hello
But if I instead change the file to:
http://85.159.208.250/linode/testPHP.phpCode:
<?php echo "hello"; ?>
the site will be unresponsive.
I have checked the logfiles but there is no good clues how to continue.
Does any one have any idea?