I posted this as a question in the "installation" forum, but, I guess it wasn't a good enough question because somebody seems to have deleted my previous message. I found the solution so I returned just in case anybody else has the problem.
This issue centers on enabling basic authentication on the MythWeb pages so if you expose your MythWeb on the internet you need a username and password to access your MythWeb.
I won't rehash the entire process step by step, but, in general you must
1. Use "htpasswd" to create a password file
2. Edit /etc/apache/conf/httpd.conf, changing AllowOverride so apache will accept the instance of .htaccess files in the htdocs directories. I changed mine to AllowOverride to All but you can probably be less permissive. You will need to change the AllowOverride for both "/" and for Apache in general.
3. EDIT the /var/www/.htaccess that is distributed by KnoppMyth (but probably comes wholesale from the MythWeb source). The first 4 lines are commented out, uncomment them. The line that points at the password file should be changed to point at the password file you created in step 1.
Now if that is all you do, your site will be protected by basic authentication, but, you will receive an error about php_sessions, a directory not existing or some such. One more change must be made
4. Go back into the .htaccess file and file the line that says something like
Quote:
session.save_path = php_sessions
change this to
Quote:
session.save_path = /tmp
and the error will be resolved. I am not quite sure with it was changed from the default (the default is /tmp) but this fixes it.