Jul 29, 2007, 03:49 PM
I got this neat little tip from Tikitiki. Basically it's simple to implement. It requires you to change the sessions table to HEAP (memory). This SHOULD help prevent sessions table crashing and it will also automatically truncate (delete) sessions older than 24 hours.
Run this in your phpmyadmin:
This of course assumes your prefix is mybb. Alter it if you have changed your prefix.
Run this in your phpmyadmin:
Code:
ALTER TABLE `mybb_sessions` ENGINE = memoryThis of course assumes your prefix is mybb. Alter it if you have changed your prefix.