PDA

View Full Version : database errors


oldfan
08-16-2004, 12:17 PM
I'm getting these errors
dbconn: mysql_connect: Can't create a new thread (errno 11). If you are not out of available memory, you can consult the manual for a possible OS-dependent bug

I have paid hosting and there telling my its a error form my end, the last thing I editied/ added to my vB3 was spoiler_hack.
I cannot login to have mysql, ftp, etc to fix/look at this error

Anyone else experince this error?

thanks

Modin
08-16-2004, 01:33 PM
um, your host didn't give you any clues to what may be causing it?

Where do these errors happen? Is this a custom script you have? Do other scripts work?

oldfan
08-16-2004, 01:59 PM
Sounds like this may be a permissions issue - have you modified any other
files, including folder permissions, or modifying users?

Any information you can give us will help us determine the cause of the
problem - it could be something that seems entirely unrelated.


Thats the last response I got from them :(

I get this error when I try to load mine main site/vB3

There seems to have been a slight problem with the database.
Please try again by pressing the refresh button in your browser.

An E-Mail has been dispatched to our Technical Staff, who you can also contact if the problem persists.

We apologise for any inconvenience.

Got the other error when I try to login to my phpMyAdmin and VTBB http://www.phpsoft.org/vbtt.php
I also get a 500 error when I try to login to my webmail, I haven't tried the other features because I don't use them.
My mysql is up and down like a yoyo :(

All these problems started when I got this message

The server is online but there was an issue with the control panel software.
This has been repaired and everything should appear normal now.

Please let us know if there is anything else we can help you with.
Thanks.

oldfan
08-16-2004, 02:00 PM
oh this is my site

www.metallifukinca.com

Colin F
08-16-2004, 02:17 PM
Try uninstalling the last modification you installed.

oldfan
08-16-2004, 02:22 PM
i added the spolier mod last and before that I added 10 - uShop_&_uCash_095_[2004-07-16]

Dean C
08-16-2004, 02:34 PM
oldfan - right click and view the source and paste the error message up here :)

oldfan
08-16-2004, 02:41 PM
heres one
http://www.metallifukinca.com/mail/

The database it backup at the momment, I'll post the errors when it goes down.

Dean C
08-16-2004, 03:31 PM
I mean the errors to do with your vBulletin. The error displayed there is somethign wrong within your webserver configuration/

oldfan
08-16-2004, 05:44 PM
Your privvmpages value (as can be seen by using the command: cat
/proc/user_beancounters) is currently at 322983515, There is a soft limit at
, 125000 ,so it is being stopped from exceeding that.

Normal usage should be around 70,000 to 80,000 - so your current usage is
multiple times that.

This suggests that there is a memory leak somewhere in a script or aplication
on your server; do you have custom scripts installed?



This is the problem, I'm told :O
Could that be the vB3?

oldfan
08-16-2004, 09:23 PM
I removed the spoiler and signature mod and the error seems to be gone :)

these were the mods,


Open includes/function_showthread.php, find:

$post['signature'] = $sigcache["$post[userid]"];

Replace with:

//$post['signature'] = $sigcache["$post[userid]"];
$post['signature'] = "";


That's it! Upload the file.



and

// Spoiler-Hack v 1.0.0
// This hack was developed by one of our users, TheSmallOne for use on www.comicforum.de
// The hack adds a spoiler-tag to the vbCode and displays the entered text between the tags
// as a button, displaying only "Show Spoiler". Once clicked, the spoiler is displayed.
// Very useful to hide postings on movie- or comicbook-forums, in which secrets about a
// story are revealed - in order to keep it up to every user, whether he would like to read
// it or not.
//
// Features: - own image on editor
// - button with javascript
//
// Templates to be changed: 1 (headinclude)
// New phrases to be added: 2 (showspoiler, showspoilerwithtitle)
// New custom BB Codes to be added: 2

Step 1:
=====================================
Upload the gif in this ZIP:
=====================================
spoiler.gif
upload to: images/editor/


Step 2:
=====================================
Search in template "headinclude" for:
=====================================
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
// -->
</script>

=====================================
replace with:
=====================================
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
// -->
function showSpoiler(block) {
// by The Small One
block.nextSibling.nextSibling.style.display ="block";
block.parentNode.removeChild(block);
}
</script>


Step 3:
=====================================
Add this new BB Codes:
=====================================
Title: Spoiler
Tag: spoiler
Replacement:
<div class="spoiler">
<input type="button" class="button" onClick="showSpoiler(this);" value="Show spoiler">
<span class="content" style="display:none">{param}</span>
</div>
Example: Spoilertext
Description:
If you would like to reviel any information, which could spoiler other users, please use this spoiler-tag.
Use {option}: NO
Picture for this button: Don't insert anything here.


Step 4:
=====================================
Add this new BB Codes:
=====================================
Title: Spoiler with title
Tag: spoiler
Replacement:
<div class="spoiler">
<input type="button" class="button" onClick="showSpoiler(this);" value="Show Spoiler about {option}">
<span class="content" style="display:none">{param}</span>
</div>
Example: Spoilertext
Description:
If you would like to reviel any information, which could spoiler other users, please use this spoiler-tag. You can use a title, if you wish. Just write spoiler=title or something else.
Use {option}: YES
Picture for this button: images/editor/spoiler.gif

=====================================
That's all folks. Any questions go to: admin@comicforum.de

Brad
08-17-2004, 01:49 AM
You most likely broke something while installing the hacks, sounds more like a server wide error tho. I don't see how a vBulletin php file could trip off phpmyadmin and webmail :confused:

Modin
08-17-2004, 10:18 PM
yeah, only if vbulletin pretty much took down the server that it would affect the others...

I'd double and triple check you installed the hack properly.

coldpride
09-13-2004, 12:24 AM
thankx awesome... I was woundering can you make it so you can give a title to the spolier. ex: instead of showing "show spolier" you can give it whatever name you want it like "favorite members, my other sig, cool people... basically anything. I hope this makes a little sense and someone can make it I would really preshiate it.