) |
req.get_config()
, but returns a table object holding
only the mod_python configuration defined at global scope within the
Apache configuration. That is, outside of the context of any VirtualHost,
Location, Directory or Files directives.
) |
req.get_options()
, but returns a table object holding
only the mod_python options defined at global scope within the Apache
configuration. That is, outside of the context of any VirtualHost, Location,
Directory or Files directives.
message[, level]) |
ap_log_error
function. message is a string with the error message,
level is one of the following flags constants:
APLOG_EMERG APLOG_ALERT APLOG_CRIT APLOG_ERR APLOG_WARNING APLOG_NOTICE APLOG_INFO APLOG_DEBUG APLOG_NOERRNO
If you need to write to log and do not have a reference to a server or request object, use the apache.log_error function.
request, callable[, data]) |