The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
That is not a issue with the tables, it is a server side issue.
MySQL server gone away error explained Reasons outlined at http://vbtechsupport.com/433/ ++++++++++++++++++++++++++++++++ http://dev.mysql.com/doc/refman/5.1/en/gone-away.html http://dev.mysql.com/doc/refman/5.1/...on-errors.html http://dev.mysql.com/doc/refman/5.1/...arameters.html http://dev.mysql.com/doc/refman/5.1/...ion-files.html http://dev.mysql.com/doc/refman/5.1/...variables.html [Updated 04/14/09.] The most common reason for the MySQL server has gone away error 1. Is that the server timed out and closed the connection. By default, the server closes the connection after 8 hours or 28800 seconds if nothing has happened. You can change the time limit by setting the wait_timeout variable when you start mysqld via your server's /etc/my.cnf as well. 2. Another common reason to receive the MySQL server has gone away error is because you have issued a ``close'' on your MySQL connection and then tried to run a query on the closed connection. You can check that the MySQL hasn't died by executing mysqladmin version and examining the uptime. i.e. to check mysql uptime, in shell as root user type: mysqladmin -u root -p version 3. You can also get these errors if you send a query to the server that is incorrect or too large. If mysqld gets a packet that is too large or out of order, it assumes that something has gone wrong with the client and closes the connection. If you need big queries (for example, if you are working with big BLOB columns), you can increase the query limit by starting mysqld with the -O max_allowed_packet=# option (default 1M) or via max_allowed_packet variable in your /etc/my.cnf file and restarting mysql after you edited your /etc/my.cnf file. The extra memory is allocated on demand, so mysqld will use more memory only when you issue a big query or when mysqld must return a big result row |
#12
|
|||
|
|||
thank you all
|
#13
|
||||
|
||||
Not a problem, glad to help.
Next time you post a issue, it would be best to provide as much information I'm your first post, so it would not take 11 posts to get to the proper solution. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|