Originally posted by grace5
Fatal error: Failed opening required 'common.php' (include_path='') in /home/compasss/public_html/calendar/index.php on line 2
It's looking for common.php in the nonexistent include path that it's listing. Fix your include path or set the filename explicitly, ie:
require "/usr/local/www/common/common.php"
Or wherever 'common.php' is located.
As an aside to one of the earlier posts, apache can easily be set to parse .html files with the php interpreter --- for details, see httpd.conf
dalecosp