1. What is Hakmatak?

(a): It is what some Native Americans call a larch tree.

(b): It is a python implementation of the Webification specification.

2. What is Webification?

Please check http://webification.org

3. What is w10n?

It is a numeronym of webification.

4. When starting httpd, there is an error like this or similar
Starting httpd: httpd: Syntax error on line 210 of /etc/httpd/conf/httpd.conf: Could not open configuration file /etc/httpd/conf.d/wsgi.conf: Permission denied
How to fix it?

Check selinux configuration on the server host:
# /usr/sbin/getenforce
If it is enforcing, try to reset it to permissive:
# /usr/sbin/setenforce permissive

5. How to fix the "ImportError: No module named ctypes" error?

ctypes is included in python 2.5. For python 2.4 and older, ctypes is
registered in the Python package index http://www.python.org/pypi/ctypes,
so you need to downloand/install it.

6. How to fix the "ImportError: No module named wsgiref.handlers" error?

wsgiref is included in python 2.5. For python 2.4 and older, wsgiref is
registered in the Python package index http://www.python.org/pypi/wsgiref,
so you need to downloand/install it.
