N
|
nix386 5/15/2009 |
Does anyone know if PHPrunner has the capability to do auditing for record updates and logging IP address? For example, if a certain record was updated by a registered user, we want to capture the username, the date and time of the update and the IP address from which the user has done the update. This audit trail can be displayed as appended at the bottom of the record's page or as a child record.
|
I
|
incognito author 5/16/2009 |
Yes this is very easy to accomplish with PHPRunner, actually there is no coding involved at all...
|
F
|
fantasmino 5/16/2009 |
Maybe u need this? |
I
|
incognito author 5/16/2009 |
Maybe u need this? I have add this to know who was the last one to modify the record add in your table fields: last_user and last_modify in events before record added and before record update $values["last_user"] = $_SESSION["UserID"]; $values["last_modify"] = now(); I'm a newbee with phprunner so maybe someone else can confirm if it's the best way in my project works
|
F
|
fantasmino1 5/17/2009 |
try this: |