Your script is keeping database connections open and not closing them. The numbers 156, 153, 134, 78 are all times, in seconds that a process from your account is running. These should never be more than a few seconds.
After suspending your account these processes were killed. and the CPU usuage returned from 80% down to the usual 3%CPU usage. Had the MySQL services not been restarted the server would have crashed due to your script not functioning correctly.
any ideas/help.. PLEASE... running UBB Threads 6.??
DO NOT use pconnections. lol. In phps' mysqli this was drop because of the number of problems it caused. If you can code ask them to send you the error log for your domain and look through it, find the script/s and make sure the database connection closes. Maybe even upgrade the sql calls the mysqli as you can clean up resources faster
$mysqli = new mysqli("db_host","db_user","db_psswd","db"); $result = $mysqli->query(select your query here); WHILE($row = $result->fetch_assoc()){ //work done with data sets here } $result->close(); $mysqli->close();
To some this might look odd, this is object oreiented php using mysqli. But the main thing to notice is the 2 objects I closed.
$result->close(); This cleans up all resources used to make the query. Ram, CPU time, all cleaned up
$mysqli->close(); Closes the database connection object.
If you can't code... Get a less anal host. Interserver.net has done me very good.
it should .... Sounds your config is modified in some way. Maybe thats the main source of your problem. Do you run 6.5.5 or less? any other version as 6.5.5 have a security hole and get hacked soon. The last mass hack changes or overwrite the config.inc.php
#311736 - 10/15/0606:43 PMRe: Hosting being suspended due to sql errors :(
[Re: MossY]
Gizmo
Wizard
Registered: 01/10/00
Posts: 5123
Loc: Portland, OR, USA
Yes, you can, in most cases, find th emodifications in the UBB.Threads 6.5.x modifications forum here, IIP being one of them.
Another option would be upgrading to UBB.Threads, it is less intensive on the database as it utilizes a caching system, and comes with a lot of the previous popular mod's as stock features (including a portal).
one last question. which file do i edit to edit the navigation bar - you know... the one that says stuff like "Portal Page Forum List My Stuff User List Calendar Active Topics Search FAQ" along the top of the forums...