Topic on Extension talk:Access Log

93.81.224.145 (talkcontribs)

Hello, friends! Can anyone help to adapt the Access Log extension for use on the MW1.30 1.31 1.32 engine? Thank.

88.96.238.245 (talkcontribs)

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.

Uuilliss (talkcontribs)

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__ );
96.244.147.234 (talkcontribs)

Not the OP, but helpful to me. Thank you!

Reply to "MW1.30 1.31 1.32"