I have a php site main.php in the public_html
dir, which sources several frames:
<html>
<head>
<title>My Site</title>
</head>
<frameset rows="55, *, 0" frameborder="no">
<frame id='headerFrame' src="headerFrame.php" scrolling="no">
<frame src="mainPages/a.php">
<frame src="mainPages/b.php">
</frameset>
</html>
The php code tags in main.php (not shown) are executed correctly by the server, but when I review the frame sources in the browser, I see uninterpreted php tags in the html:
headerFrame.php:
<?php
include 'base.php';
?>
<html>
...
How comes that main.php is interpreted, but headerFrame.php not?
When I move the page to /var/www/mypage/
this works out all well.
Environment: Ubuntu 12.10, apache2