I fixed the problem I was having and thought I would share it with others who run into it.
For whatever reason, I needed to put the sqlitedberrors.sqlite file in a subfolder of the forum directory that was chmod'ed to 666 (sqlitedberrors.sqlite also being chmod'ed to 666)
e.g.
/path/to/web/forum/sqlite/sqlitedberrors.sqlite
instead of:
/path/to/web/forum/sqlitedberrors.sqlite
Then I modified the very first line of modified code (below the comments) that goes into /includes/class_core.php from:
Code:
if ($sqlitedb = new SQLiteDatabase(DIR .'/sqlitedberrors.sqlite', 0666, $sqliteerror)) {
to (look after the DIR part for the added subfolder)
Code:
if ($sqlitedb = new SQLiteDatabase(DIR .'/sqlite/sqlitedberrors.sqlite', 0666, $sqliteerror)) {
It's working perfectly and now I don't get hundreds of text messages when my database goes down.
Cheers,
Drew