denied_log
Purpose: Stores information when a user receives an access denied warning (staff or students)
Joins: users table.
Field | Type | Purpose |
---|---|---|
id | int(11) unsigned | Primary Key – auto increment. |
userID | int(11) unsigned | ID of the member of user accessing the page. |
tried | datetime | The time/date when attempted access occurred. |
ipaddress | char(60) | The IP address of the computer accessing the page. |
page | varchar(255) | The URL of the page being that was attempted to be accessed. |
title | varchar(255) | The title of the warning displayed to the user (usually 'Page not Found') |
msg | text | The msg displayed to the user. |
See also: Security Principles