Hello, friends! Can anyone help to adapt the Access Log extension for use on the MW1.30 1.31 1.32 engine? Thank.
Topic on Extension talk:Access Log
Hello! Don't know if this is too late for you but I've got it working on 1.32.2 with a small patch.
Hello! Don't know if this is too late for you but I've got it working on 1.32.2 by patching the following:
$dbw = wfGetDB( DB_MASTER );
$dbw->begin();
$dbw->insert( 'tw_accesslog', $log_entries_arr );
$dbw->commit();
to
$dbw = wfGetDB( DB_MASTER );
$dbw->startAtomic( __METHOD__ );
$dbw->insert( 'tw_accesslog', $log_entries_arr );
$dbw->endAtomic( __METHOD__ );
Not the OP, but helpful to me. Thank you!