<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
Okay, fixed it.<br>
<br>
Listen up:&nbsp; First, for some reason php5 wasn't being loaded.&nbsp; I added a
line to httpd.conf:<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp; LoadModule php5_module&nbsp;&nbsp;&nbsp; extramodules/mod_php5.so<br>
<br>
Restart httpd and viola, php5 is loading.&nbsp; That was the first thing I
fixed.&nbsp; I have no idea why it wasn't loading to begin with.&nbsp; But I was
still getting:<br>
<br>
<b>&nbsp;&nbsp;&nbsp;&nbsp; Warning</b> at
/var/www/html/mythweb/modules/_shared/tmpl/_errors/db_vars_error.php,
line 23:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
require(modules/_shared/tmpl/tmpl/header.php) [<a
 href="http://pvr/mythweb/function.require">function.require</a>]:
failed to open stream: No such file or <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; directory<br>
<br>
So next, in /etc/httpd/conf.d/mythweb.conf you will see a block of code
that is:<br>
<br>
&nbsp;&nbsp; &lt;Directory "/var/www/html/data"&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Options -All +FollowSymLinks +IncludesNoExec<br>
&nbsp;&nbsp;&nbsp; &lt;/Directory&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;Directory "/var/www/html" &gt;<br>
<br>
This all looks fine.&nbsp; The first line reflects the directory structure
that does, in fact, exist.&nbsp; Trouble is, it points to the wrong place
for the stuff mythweb uses.&nbsp; <br>
<br>
I installed mythweb under /var/www/html/mythweb.&nbsp; This is the second
option suggested by the instructions in the docs (remember, I compiled
from source).&nbsp; The first option is to install under /var/www/html --
essentially, you just dump all the files found in the /mythweb
directory into
the /html directory.&nbsp; I didn't do that for what I think are good
reasons, but
moving on....<br>
<br>
The first and last statements in the block of code quoted above
actually need to point to:<br>
<br>
&nbsp;&nbsp; &lt;Directory "/var/www/html/mythweb"&gt;<br>
<br>
I'd still like to make Mythweb available to me over the Internet, but I
don't dare mess with this thing again.<br>
<br>
Thanks for the help all.&nbsp; I'm going to get some rest before work.<br>
<br>
Mark<br>
</body>
</html>