Right now the my site is working but it is https://www.busybuds.com and my host is ipowerweb.
I called the host and they said that I can have 5 users with up to 50000 queries each and that I should alternate users. Not sure how to do that but I did check out the OsCommerce site and found that someone posted what is below between the lines. I tried this and was getting errors so went back to the way it was.
It sounded like what the tech at Ipowerweb said but it didn't work for me.
Would really appreciate help in keeping this error from shutting my site down temporarily.
Thanks,
Linda McVeigh
DO NOT USE CODE BELOW AS IT IS NOT A FIX - CAUSES ERRORS
replace:
CODE
define('DB_SERVER_USERNAME', 'your_username');
with:
CODE
$db_user_array[] = "your_username"; //enter 1st user name
$db_user_array[] = "your_username_1"; //enter 2nd user name
$db_user_array[] = "your_username_2"; //enter 3rd user name
$db_user_array[] = "your_username_3"; //enter 4th user name
$db_user_array[] = "your_username_4"; //enter 5th user name
//defined variable
define( 'DB_SERVER_USERNAME', $db_user_array[ rand( 0, ( sizeof($db_user_array) -1 ) ) ] );
// define('DB_SERVER_USERNAME', 'your_username');
create 4 new db users in your control panel your_username_1, your_username_2, your_username_3, your_username_4 assign them to your database with the same password as the original.
edit includes/configure.php and replace the same line.
This removes the problem by sharing the queries across 4 extra users.