Version 2.7.20 (yes, I know very old not supported etc. etc.)
mysql 5.5.42, PHP 5.5.38 with Zend OpCache.
While investigating how to reduce the size of mdl_logstore_standard_log thus making the interface in Moodle Admin UI a little more user friendly for non-technical Moodle Admins .... (and dumping the more technical ws records to a table outside of the DB for Moodle so nothing is really lost), ran across this:
The query:
SELECT ip,other,origin FROM mdl_logstore_standard_log WHERE timecreated > UNIX_TIMESTAMP(NOW() - INTERVAL 1 DAY) and origin like 'ws';
Clip of results IP address of remote server obscured of course ... but it's the same IP address.
| IPaddressofRemoteServer | a:1:{s:14:"forgottenreset";b:0;} | ws |
| IPaddressofRemoteServer | N; | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:28:"core_user_get_users_by_field";} | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:28:"core_user_get_users_by_field";} | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:22:"core_user_update_users";} | ws |
| IPaddressofRemoteServer | N; | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:28:"core_user_get_users_by_field";} | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:22:"core_user_update_users";} | ws |
| IPaddressofRemoteServer | N; | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:28:"core_user_get_users_by_field";} | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:28:"core_user_get_users_by_field";} | ws |
| IPaddressofRemoteServer | a:1:{s:8:"function";s:22:"core_user_update_users";} | ws |
| IPaddressofRemoteServer | N; | ws |
Now the $64,000 question ... what the heck does N; mean? Searched the net ... no luck.
Thanks, in advance, for any hints/clues/links to resource, etc.
Ken