vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Must Have First Posters Username In Your reply form (https://vborg.vbsupport.ru/showthread.php?t=45653)

Xenon 01-27-2003 01:26 PM

this ^^
PHP Code:

if($threadinfo[replycount]==and !strstr(strtoupper($message),strtoupper($getfirst['username']))) { 


BigJohnson 01-29-2003 01:22 PM

Quote:

Originally posted by Xenon
this ^^
PHP Code:

if($threadinfo[replycount]==and !strstr(strtoupper($message),strtoupper($getfirst['username']))) { 


This is not working. IT works for like the first replies or two but the other people dont have to have the username in there posts. I don't know why it doesnn't work. Can ya help me. Is there anyother code we could use?

BigJohnson 02-08-2003 10:09 PM

I need it to only have it do it for there first reply. Also how do i make it so if the person that made the new thread doesn't have t put there own name in there replies to there own threads?

Thanks.

Xenon 02-17-2003 05:17 PM

use this:

PHP Code:

$repliesbybbuser=$DB_site->query_first("SELECT COUNT(*) AS total FROM post WHERE userid=$bbuserinfo[userid] AND threadid=$threadid");
if(
$repliesbybbuser['total']==and $getfirst['userid'] != $bbuserinfo['userid'] and !strstr(strtoupper($message),strtoupper($getfirst['username']))) { 


BigJohnson 02-19-2003 01:42 PM

Works great but one little problem

SAY JOHN makes a new thread. And STEVE wants to reply and he doesnt use the users name of JOHN in his reply. He gets the error saying use the username but there is this line at the top of the web page

Warning: Empty Delimiter in /usr/local/psa/home/host/bburl.com/httpdocs/messageboard/newreply.php on line 102

Xenon 02-19-2003 01:51 PM

what is line 102 and about 5 lines above and below :)

BigJohnson 02-19-2003 02:14 PM

sorry haha

PHP Code:

// ############################### start post reply ###############################
if ($HTTP_POST_VARS['action']=="postreply") {

  
// check for subject and message
  
$message=trim($message);
  if (
$message=="") {
    eval(
"standarderror(\"".gettemplate("error_nosubject")."\");");
    exit;
  }

if (
in_array($threadinfo['forumid'], array(2324252627282930323334353637385556))) {
$repliesbybbuser=$DB_site->query_first("SELECT COUNT(*) AS total FROM post WHERE userid=$bbuserinfo[userid] AND threadid=$threadid");
if(
$repliesbybbuser['total']==and $getfirst['userid'] != $bbuserinfo['userid'] and !strstr(strtoupper($message),strtoupper($getfirst['username']))) {
  eval(
"standarderror(\"".gettemplate("error_nofirstusername")."\");");
  }
}

  
// decode check boxes
  
$parseurl=iif(trim($parseurl)=="yes",1,0);
  
$email=iif(trim($email)=="yes",1,0);
  
$allowsmilie=iif(trim($disablesmilies)=="yes",0,1);
  
$signature=iif(trim($signature)=="yes",1,0);
  
$preview=iif(trim($preview)!="",1,0); 

102 is

if($repliesbybbuser['total']==0 and $getfirst['userid'] != $bbuserinfo['userid'] and !strstr(strtoupper($message),strtoupper($getfirst['username']))) {

lol

Xenon 02-19-2003 02:20 PM

hmm, this should work normally...

maybe you can try this:
PHP Code:

if(intval($repliesbybbuser['total'])==and $getfirst['userid'] != $bbuserinfo['userid'] and !strstr(strtoupper($message),strtoupper($getfirst['username']))) { 


BigJohnson 02-19-2003 02:24 PM

nope same error. Weird.

BigJohnson 02-19-2003 04:29 PM

with the new code evn though i get that error even though u still put the name in the reply it says u need the usernames name in your reply error. Something is definately wrong. :)


All times are GMT. The time now is 04:05 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.01161 seconds
  • Memory Usage 1,763KB
  • 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)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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