Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 12-24-2008, 04:00 PM
KiLLWiT KiLLWiT is offline
 
Join Date: May 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default DB errors?

whenever someone tries to view a thread as a guest, it gives a database error. any reasons as to why it does this + if possible, a fix? i've tried reinstalling, removing any mods that might cause it, but no go. thanks.

forgot to mention:
this only happens if you click the thread from forumhome as lastpost, but not if you click it directly (as guest)
Reply With Quote
  #2  
Old 12-24-2008, 04:08 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It would help to see the actual database error.

Try disabling your plugins and see if you still have this problem.
Note: To temporarily disable the plugin system, edit config.php and add this line right under <?php

PHP Code:
define('DISABLE_HOOKS'true); 
Reply With Quote
  #3  
Old 12-25-2008, 03:05 PM
KiLLWiT KiLLWiT is offline
 
Join Date: May 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

um, it won't let me copy + paste error, freezes computer. edited first post.
Reply With Quote
  #4  
Old 12-25-2008, 03:51 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A database error on your server should not freeze your computer. In order to view a database error, you need to view the page source and then copy and paste it - is that when it is freezing? If the page itself is freezing, this sounds more like a browser issue. Try using a different browser.
Reply With Quote
  #5  
Old 12-28-2008, 11:08 PM
KiLLWiT KiLLWiT is offline
 
Join Date: May 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get a few now. I get this one in the admincp:
Code:
Database error in vBulletin 3.7.4:

Invalid SQL:


				UPDATE;

MySQL Error   : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Error Number  : 1064
Request Date  : Sunday, December 28th 2008 @ 08:06:13 PM
Error Date    : Sunday, December 28th 2008 @ 08:06:14 PM
Script        : -removed-/user.php?do=update
Referrer      : -removed-/user.php?do=edit&u=1
IP Address    : 78.145.163.44
Username      : n0x
Classname     : vB_Database
MySQL Version : 5.0.51a-community
and users get another one whilst viewing threads when they click on last post
Code:
 	Database error   	The EcKO Studios - The return... database has encountered a problem.   	

   	 		Please try the following: 		 			Load the page again by clicking the -removed-/showthread.php?p=118# button in your web browser. 			Open the -removed-/ home page, then try to open another page. 			Click the javascript:history.back(1) button to try another link. 		 	   	The -removed- forum technical staff have been notified of the error, though you may dbmaster@example.com if the problem persists.   	+
We apologise for any inconvenience.
Reply With Quote
  #6  
Old 12-28-2008, 11:22 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would guess this is from a modification since default vbulletin doesn't have a sql query that simply says "update". Try disabling your plugins as I suggested above and see if the error goes away.

As for the second one you posted, when you see that page, you need to then view the page source and near the bottom of the page source will be something that looks like your first snippet of code in the post above - that is the mysql error. See if it is different than the one you posted.
Reply With Quote
  #7  
Old 12-29-2008, 08:45 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please provide an URL to the board so we can see the problem.
Reply With Quote
  #8  
Old 12-29-2008, 01:18 PM
KiLLWiT KiLLWiT is offline
 
Join Date: May 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
I would guess this is from a modification since default vbulletin doesn't have a sql query that simply says "update". Try disabling your plugins as I suggested above and see if the error goes away.

As for the second one you posted, when you see that page, you need to then view the page source and near the bottom of the page source will be something that looks like your first snippet of code in the post above - that is the mysql error. See if it is different than the one you posted.
I tried disabling the plugins, but the sometimes I get an Internal Server error.
For the second error, this is the code in between comments:
Code:
<!--
Database error in vBulletin 3.7.4:

Invalid SQL:

			SELECT post.postid
			FROM post AS post
			
			WHERE post.threadid = 32
				AND post.visible = 1
				
				
			ORDER BY post.dateline 
			LIMIT -0, 10;

MySQL Error   : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-0, 10' at line 9
Error Number  : 1064
Request Date  : Monday, December 29th 2008 @ 10:14:41 AM
Error Date    : Monday, December 29th 2008 @ 10:14:41 AM
Script        : -removed-/showthread.php?p=123
Referrer      : -removed-/index.php
IP Address    : -removed-
Username      : Unregistered
Classname     : vB_Database
MySQL Version : 
-->
Quote:
Originally Posted by Marco van Herwaarden View Post
Please provide an URL to the board so we can see the problem.
I will. I am not on for long, so the next time I login, I will provide the URL. sorry.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:02 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05630 seconds
  • Memory Usage 2,236KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_code
  • (1)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (8)postbit_onlinestatus
  • (8)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete