Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives

Reply
 
Thread Tools
Ahhhhh!! No post count! Emergency! Details »»
Ahhhhh!! No post count! Emergency!
Version: , by snyx snyx is offline
Developer Last Online: Jan 2013 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-01-2003 Last Update: Never Installs: 0
 
No support by the author.

ok well after installed the post increasment hack I think it really bunnged up my board. now another site just closed and we will have 100% of there traffic, and AHHHHH new users have no post count! I reverbed the hacked files but that didnt work, so I think its the DB changes made! plus another hint is when I try to update stars and such, I get this..
Code:
Invalid SQL: SELECT starlevel,starimg FROM stars WHERE minposts<= ORDER BY minposts DESC LIMIT 1
mysql error: You have an error in your SQL syntax near 'ORDER BY minposts DESC LIMIT 1' at line 1
could that be a clue to the problem?

now I wanna reverse the DB changes made, how would I do that when this is the changes I made?
Code:
alter table user add postdirection smallint(5) DEFAULT 1 NOT NULL;
alter table user modify posts int(6);
alter table usertitle modify minposts int(6);
thanks anyone who can even lend a few mins of help, its gunna be ugly tomrrow if I have 20-50 new registers and none have working post counts!!!

-myles

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 04-01-2003, 08:55 AM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
SELECT starlevel,starimg FROM stars WHERE minposts[high]<=[/high] ORDER BY minposts DESC LIMIT 1
you need to compare with a value.

2.
[sql]ALTER TABLE user DROP postdirection[/sql]
Reply With Quote
  #3  
Old 04-01-2003, 02:32 PM
snyx's Avatar
snyx snyx is offline
 
Join Date: Oct 2001
Location: Vancouver (whistler.2010)
Posts: 556
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you need to compare with a value? lol sorry I dont think I understand..

AHHHHH! why wont they work :sleep:
F****************CK!!!
Reply With Quote
  #4  
Old 04-01-2003, 03:15 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

look at the highlighted text, you have a smaller or equal condition an no value following.
Reply With Quote
  #5  
Old 04-01-2003, 04:45 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get the same erorr:

Quote:
Database error in vBulletin 2.2.9:

Invalid SQL: SELECT title FROM usertitle WHERE minposts<= ORDER BY minposts DESC LIMIT 1
mysql error: You have an error in your SQL syntax near 'ORDER BY minposts DESC LIMIT 1' at line 1

mysql error number: 1064

Date: Monday 31st of March 2003 02:34:32 PM
Script: http://www.bearfacts2.com/forum/foru...u=54&i=2735767
Referer:
and I have values after the minposts<=

Only I got it after a newuser registered.
Reply With Quote
  #6  
Old 04-01-2003, 05:10 PM
Zzed's Avatar
Zzed Zzed is offline
 
Join Date: Feb 2002
Location: Glendale, CA, USA
Posts: 463
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That line is generated by the following statement:

PHP Code:
$getstars=$DB_site->query_first("SELECT starlevel,starimg FROM stars WHERE minposts<=$bbuserinfo[posts]+1 ORDER BY minposts DESC LIMIT 1"); 
I don't understand why $bbuserinfo[posts]+1 turns itself into a null string to cause that MySQL error.

I would suggest maybe putting a pair of parenthesis around the addition statement.

PHP Code:
$getstars=$DB_site->query_first("SELECT starlevel,starimg FROM stars WHERE minposts<=($bbuserinfo[posts]+1) ORDER BY minposts DESC LIMIT 1"); 
And if that doesn't help, try and add 2 echo statements before the query and lets find out what happens the old fashioned way.

PHP Code:
echo "$bbuserinfo[posts] <br>";
echo 
"($bbuserinfo[posts]+1) <br>"
Reply With Quote
  #7  
Old 04-01-2003, 05:12 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mine is only happening in the register.php.
Reply With Quote
  #8  
Old 04-02-2003, 02:07 PM
snyx's Avatar
snyx snyx is offline
 
Join Date: Oct 2001
Location: Vancouver (whistler.2010)
Posts: 556
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yeah im having the same problems as boofo is seems, but I havent made any changes to register.php since it all started. werid. thanks zzed but sadly ether did anything im stumped with a unworking board, and im far to lazy to rehack it all (its unthinkable) guess I wait for vB3
Reply With Quote
  #9  
Old 04-02-2003, 02:41 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try running this and let me know if it fixes it for you.

Quote:
alter table user modify posts int(6) default 0 not null;
Reply With Quote
  #10  
Old 04-02-2003, 02:51 PM
g-force2k2 g-force2k2 is offline
 
Join Date: Mar 2002
Location: Everywhere you wanna be..
Posts: 1,608
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well you guys obviously don't have values... because the errors aren't showing them...

perhaps you have a variable that isn't defined...

and synx if there post count isn't incrementing then you probably deleted code that you needed in the newthread & newreply.php files...

regards,
g-force2k2
Reply With Quote
Reply

Thread Tools

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 06:48 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.04388 seconds
  • Memory Usage 2,294KB
  • Queries Executed 23 (?)
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
  • (3)bbcode_code
  • (3)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete