Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
  #1  
Old 04-15-2007, 12:54 AM
kellyandmike's Avatar
kellyandmike kellyandmike is offline
 
Join Date: Mar 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Help I was running "Rebuild Forum Information", site crashed/main forum page error

Help,
Last night, I was in admin, pruned posts, rebuilt thread information 100 at a time, and then chose "Rebuild Forum Information". That shut the site down.

What I have since found is that I can get to the site, just not from the main index page. I can read Private Messages, get to my vbulletin admin, email users, post, reply and all, just not get to the main page.

I am running 3.5.4

Here is the error I get:
Warning: mysql_query(): Unable to save result set in /includes/class_core.php on line 405

The main page is at www.couponchix.com/feedback

Here is the link that works to one of the forums: http://couponchix.com/feedback/forum...daysprune=&f=4

Please help.
And thanks in advance,

Kelly
Reply With Quote
  #2  
Old 04-15-2007, 01:18 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Your actual error is something much more tangible (you can find it by viewing the page source):

Code:
Invalid SQL:

			SELECT title, data
			FROM datastore
			WHERE title IN ('','options','bitfields','forumcache','usergroupcache','stylecache','languagecache','products','pluginlist','cron','userstats','birthdaycache','maxloggedin','iconcache','eventcache','mailqueue');

MySQL Error  : Got error 127 from table handler
Error Number : 1030
Date         : Saturday, April 14th 2007 @ 07:17:07 PM
Script       : http://couponchix.com/feedback/
Referrer     : https://vborg.vbsupport.ru/showthread.php?t=144898
IP Address   : 207.167.100.99
Username     : 
Classname    : vb_database
Error 127s are no fun but generally they can be fixed. Run Repair/Optimize in the Admin CP, repeat a few times if necessary.

If things remain broken, ssh into your server and run the CHECK and REPAIR commands in mysql.

If you're still stuck let me know and I can explain about dealing with serious corruption.
Reply With Quote
  #3  
Old 04-15-2007, 12:14 PM
kellyandmike's Avatar
kellyandmike kellyandmike is offline
 
Join Date: Mar 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you for replying. I will try it this afternoon,

Quote:
Originally Posted by Ted S View Post
Your actual error is something much more tangible (you can find it by viewing the page source):

Code:
Invalid SQL:

			SELECT title, data
			FROM datastore
			WHERE title IN ('','options','bitfields','forumcache','usergroupcache','stylecache','languagecache','products','pluginlist','cron','userstats','birthdaycache','maxloggedin','iconcache','eventcache','mailqueue');

MySQL Error  : Got error 127 from table handler
Error Number : 1030
Date         : Saturday, April 14th 2007 @ 07:17:07 PM
Script       : http://couponchix.com/feedback/
Referrer     : https://vborg.vbsupport.ru/showthread.php?t=144898
IP Address   : 207.167.100.99
Username     : 
Classname    : vb_database
Error 127s are no fun but generally they can be fixed. Run Repair/Optimize in the Admin CP, repeat a few times if necessary.

If things remain broken, ssh into your server and run the CHECK and REPAIR commands in mysql.

If you're still stuck let me know and I can explain about dealing with serious corruption.
I am still stuck. Went to repair the tables through my vb admin and now the page to get into my admin is giving me an error. I can still get into certain pages, but just not the admin. I do have myPhPAdmin, but don't know anything about it. If you can help me, I can give you access. I am working today, from 3PM-9PM EST so if I don't respond until after then, you will know why.

Thanks so much offering to help.
Kelly

Here is the view source on this error:
<!--
Database error in vBulletin :

Invalid SQL:

SELECT title, data
FROM datastore
WHERE title IN ('','options','bitfields','forumcache','usergroupc ache','stylecache','languagecache','products','plu ginlist','cron','maxloggedin','mailqueue','pluginl istadmin');

MySQL Error : Can't open file: 'datastore.MYI'. (errno: 145)
Error Number : 1016
Date : Sunday, April 15th 2007 @ 11:13:43 AM
Script : http://couponchix.com/feedback/admincp/index.php
Referrer : http://couponchix.com/feedback/showthread.php?t=5
IP Address : 208.104.25.214
Username :
Classname : vb_database
-->

FIXED.

Ran REPAIR TABLE datastore; query in myPhp admin.

Thank you so much.
Reply With Quote
  #4  
Old 04-17-2007, 08:58 PM
ThorstenA's Avatar
ThorstenA ThorstenA is offline
 
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I solved problems with this type by just turning off datastore file cache.
Reply With Quote
  #5  
Old 04-17-2007, 10:54 PM
kellyandmike's Avatar
kellyandmike kellyandmike is offline
 
Join Date: Mar 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do you turn off the database cache?

My board is still slow and here is the error message now sometimes...

Database error in vBulletin :

mysql_connect(): Too many connections
/home/couponch/public_html/feedback/includes/class_core.php on line 280

MySQL Error :
Error Number :

Date : Tuesday, April 17th 2007 @ 02:16:08 PM
Script : http://couponchix.com/feedback/searc...0&pp=25&page=2
Referrer : http://couponchix.com/feedback/searc...earchid=111430
IP Address : 67.83.36.228
Username :
Classname : vb_database
Reply With Quote
  #6  
Old 04-18-2007, 06:42 AM
ThorstenA's Avatar
ThorstenA ThorstenA is offline
 
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kellyandmike View Post
How do you turn off the database cache?
1. open
includes/config.php

2. replace
??line with "using datastore file cache
with
// ??line with "using datastore file cache.
Reply With Quote
  #7  
Old 04-18-2007, 10:29 AM
kellyandmike's Avatar
kellyandmike kellyandmike is offline
 
Join Date: Mar 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What program do I open it with? I had been opening them with Macromedia Dreamweaver, but ipower told me that one of my files was corrupt and I was thinking it was one that I opened with that program. ipower said it was opened with Word, but was not.

Thanks again for your reply. :up:
Reply With Quote
  #8  
Old 04-18-2007, 05:07 PM
dj_melayu dj_melayu is offline
 
Join Date: Aug 2006
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use Notepad
Reply With Quote
  #9  
Old 04-19-2007, 05:20 PM
kellyandmike's Avatar
kellyandmike kellyandmike is offline
 
Join Date: Mar 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HELP with these errors!!!

Database error in vBulletin :

mysql_connect(): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (61)
/home/couponch/public_html/feedback/includes/class_core.php on line 279

MySQL Error :
Error Number :

Date : Thursday, April 19th 2007 @ 07:13:09 AM
Script : http://couponchix.com/feedback/priva...wpm&pmid=87264
Referrer : http://couponchix.com/feedback/priva...wpm&pmid=87264
IP Address : 24.119.192.18
Username :
Classname : vb_database



Database error in vBulletin :

mysql_connect(): Too many connections
/home/couponch/public_html/feedback/includes/class_core.php on line 279

MySQL Error :
Error Number :
Date : Thursday, April 19th 2007 @ 09:42:12 AM
Script : http://couponchix.com/feedback/forum...ort=replycount
Referrer :
IP Address : 128.241.20.202
Username :
Classname : vb_database

Running 3.5.4
couponchix.com/feedback

Please help.
Reply With Quote
  #10  
Old 04-20-2007, 07:19 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

mysql_connect(): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (61)

This error means either:
1. The info in your config.php file is wrong (in which case your forums wouldn't work at all), or
2. MySQL crashed, it's not running or it can't find the socket. You need to contact your host about this. Here is more info on this error:
http://dev.mysql.com/doc/mysql/en/Ca...to_server.html

mysql_connect(): Too many connections

Your host is limiting the maximum number of connections, please contact your host and request this to be raised.
Reply With Quote
Reply

Thread Tools
Display Modes

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:29 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05752 seconds
  • Memory Usage 2,253KB
  • Queries Executed 11 (?)
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
  • (2)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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_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