Connection limit on SC SQLite backend

I’m using SC with SQLite backend. It often hang due to regional setting bugs.

I cannot login for several minutes for reason:
The limit of simultaneous connections of this license has been reached. Please try again later.

Anyone know faster way to get in ?

Regards
Mudy

Re: Connection limit on SC SQLite backend

you should access the sc_tbati table of the Scriptcase’s database and delete all rows.

you can use the folowing php code:

<?php

// http://myserver/scriptcase/config.php

if ($db = sqlite_open(’/p/scriptcase/devel/conf/scriptcase/nm_scriptcase.db’, 0666, $sqliteerror)) {
sqlite_query($db, ‘DELETE FROM sc_tbati’);
} else {
die($sqliteerror);
}

?>

Re: Connection limit on SC SQLite backend

what I do to access the table sc_tbati?

Where can I use this php code?

<?php

// http://myserver/scriptcase/config.php

if ($db = sqlite_open(’/p/scriptcase/devel/conf/scriptcase/nm_scriptcase.db’, 0666, $sqliteerror)) {
sqlite_query($db, ‘DELETE FROM sc_tbati’);
} else {
die($sqliteerror);
}

?>

Regards,

LeiGen