vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Need help with a $DB_SITE command. Seems pretty easy. HELP PLEASE. (https://vborg.vbsupport.ru/showthread.php?t=49221)

BigJohnson 02-22-2003 07:10 PM

Need help with a $DB_SITE command. Seems pretty easy. HELP PLEASE.
 
Help I have this command in the newreply.php and what it does is find the number of of new threads made in certain forums and average it out a month since the persons registration date.

PHP Code:

$threads $DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67) AND dateline>".(time()-2592000)); 


That line goes in this bunch of code.

PHP Code:

$threads $DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67) AND dateline>".(time()-2592000));
if(
in_array($threadinfo[forumid],array(2324252627282930323334353637385563656667)) and $threads[counter]<2) {
eval(
"standarderror(\"".gettemplate("error_notenoughthreads")."\");");
    exit;
  } 

but instead of searching for the number of threads that way I made a field in the USER table called THREADCOUNTER. the THREADCOUNT field has a number in the field and goes up 1 everytime i new thread is made in certain forums.

What I would like to do is. Use the number in the THREADCOUNTER field instead of this code

PHP Code:

$threads $DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67) AND dateline>".(time()-2592000)); 

because with the new code the counter does not decrease when a thread is deleted.

What I don't know how to do is change the code so it works. I hope someone can understand me and help me out by tell me the code I should use. Thank you.

BigJohnson 02-22-2003 11:44 PM

bump

BigJohnson 02-23-2003 09:40 AM

Can someone please help me thanks

Xenon 02-23-2003 09:55 AM

no need of bumping twice a day, some of us also have a live and can just look into the board every second day or so.....

instead of that:
PHP Code:

$threads $DB_site->query_first("SELECT COUNT(*) as counter FROM thread WHERE postuserid=$bbuserinfo[userid] AND forumid IN(23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 55, 63, 65, 66, 67) AND dateline>".(time()-2592000));
if(
in_array($threadinfo[forumid],array(2324252627282930323334353637385563656667)) and $threads[counter]<2) {
eval(
"standarderror(\"".gettemplate("error_notenoughthreads")."\");");
    exit;
  } 

this:
PHP Code:

if(in_array($threadinfo[forumid],array(2324252627282930323334353637385563656667)) and $bbuserinfo[threadcounter]<2) {
eval(
"standarderror(\"".gettemplate("error_notenoughthreads")."\");");
    exit;
  } 


BigJohnson 02-23-2003 10:25 AM

Awesome. But I need the average thingy in there too. How would I do that?
It averages it out towards a month.

Xenon 02-23-2003 11:26 AM

not with your implementation.

if you want the average also, you have to set up an extra field or use the old method..

BigJohnson 02-23-2003 11:29 AM

Well with the old method the thing is when a thread is deleted the thread count goes down and so does the average.

I want the average to stay the same and not go down if you delete a thread.

What will I have to create a new field for?

Do you think you could help me out? I am a little confused on what the new field would be for in the first place.

BigJohnson 02-25-2003 10:30 PM

bump please help xenon

BigJohnson 02-26-2003 09:05 AM

Sorry to bump again but my forums are down till I get this done. I hope someone can help me. Thanks.

Xenon 02-26-2003 05:11 PM

use the old version till someone posts what you want exactly...

i have no time these days to take a closer look to any requests..


All times are GMT. The time now is 06:19 AM.

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.00996 seconds
  • Memory Usage 1,751KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete