Forum Moderators: open
The site has been PR4 for over a year.
I have a php tracking system for monitoring how the site is used. While making some changes recently I changed the php tags to html comment tags (so I wouldn't get an error viewing pages on my PC locally). I forgot to change the html comment tags back to php tags when I uploaded the pages a week ago. Now every page has PR zero.
Pages on the site had something like this for a week:
<!-- require ('../somecode.php');
xyz("info"); -->
<html><head>...
I just converted it back to server side:
<? require ('../somecode.php');
xyz("info");?>
<html><head>...