Algorithms Dragon
Joined: 21 Oct 2004 Posts: 343 Location: Florida
|
Posted: Sun Oct 24, 2004 8:37 am Post subject: mod_python - Loading modules |
|
|
When loading modules, it is suggest you use the load_module function of apache.
| Code: |
from mod_python import apache
mymodule = apache.load_module("mymodule", log=1)
|
This will assure that modules are reloaded when changes are made and prevents having to restart the server to see changes. |
|