PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Installs and Upgrade - vBulletin 3.5.X (http://www.photopost.com/forum/installs-upgrade-vbulletin-3-5-x/)
-   -   SQL Error (http://www.photopost.com/forum/installs-upgrade-vbulletin-3-5-x/123495-sql-error.html)

cbr929rrerion March 3rd, 2006 01:41 PM

SQL Error
 
Code:

Content visible to verified customers only.
Any idea what this means or can if be fixed?

vb 3.5 and cmps 2.0 and VBGallery

KW802 March 3rd, 2006 02:02 PM

cbr929rrerion, You're getting a MySQL error during an update but where are you/what are you doing in vBGallery when you receive that error?

Zachariah March 3rd, 2006 02:05 PM

MySQL Error : Lost connection to MySQL server during query
Error Number : 2013

Does this happen all the time ?
- Are there any problems listed w/ the host ? (Network status)

This is a server issue usaly. You need to contact your host about this.

http://www.mysql.com/doc/G/o/Gone_away.html
http://www.mysql.com/doc/C/o/Common_errors.html
http://www.mysql.com/doc/S/e/Server_parameters.html
http://www.mysql.com/doc/O/p/Option_files.html
http://www.mysql.com/doc/S/H/SHOW_VARIABLES.html

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

4. or simply your host restarted mysql .. I'd contact your web host

cbr929rrerion March 3rd, 2006 02:56 PM

Script : http://www.crotchrocketracing.com/sh...ted=1#post3810
Referrer : http://www.crotchrocketracing.com/sh...=2902#post2902

Code:

Content visible to verified customers only.


All times are GMT -5. The time now is 05:57 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97