vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Quick Reply Box (https://vborg.vbsupport.ru/showthread.php?t=34597)

otacon 09-07-2002 02:14 AM

hay u guys prob went trought this all redy but in my forums the post reply box is at the top to is there a way i can just get it on the bottom exe
http://www.thepunkit.com/forum/showt...php?threadid=5

2 X Viverridae 09-07-2002 02:43 AM

@ otacon - the code snippet in the 'showthread' template...

<!-- first unread and next/prev -->

...shows up a total of 4 times - $replybox should be after the fourth instance of it - you have it placed after the second instance of it.

Easy mistake to make...:D

otacon 09-07-2002 03:04 AM

o er er thanks

Illuvatar 09-07-2002 05:10 PM

Hey Firefly!

/me moves his whole site to new server, installs VB 2.2.7, and installs this most excellent hack!

Many thanks!

Illu

Joe Page 09-08-2002 01:43 PM

I'm using it on vB 2.2.7 with Quick Thread and the Store hack already installed. I get errors with this hack, it comes up with a Permissions error. I'm guessing that this hack won't work because I've got the Store hack and the Quick Thread hack installed?

Exo 09-08-2002 03:33 PM

How can i make it so that only admins can see the quick box when the thread is closed? Now can moderators see and post in the box too! :(

badham 09-08-2002 03:39 PM

Ok, here is a problem for you guys/gals. I have preformed hack as detailed in the readme untill the last step. I don't have a showthread template to modify by adding $replybox to (at least not that I can find) I have no box no nothing as far as my fourm nothing has changed. I inherited this fourm from another person, and I am assuming there is something acting like a showthread template as the fourm works, but I can't find the script that I need to add to....................HELP

PS the showthread_replybox template is there and will preview
I am running version 2.2.1 if that matters

badham 09-08-2002 07:16 PM

Firefly......somebody.........I am sure this is an easy fix for you (not for me). Do I need to make a showthread template since I dont have one, and what code needs to be in there.................

Pro 09-13-2002 01:17 AM

Quote:

1. In showthread.php find this bit of code:
// ##################################################
if (!$getperms['canviewothers'] and ($thread['postuserid']!=$bbuserinfo['userid'] or $bbuserinfo['userid']==0)) {
show_nopermission();
}

if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}
// ##################################################
And replace it with the following:
// ##################################################
if (!$getperms['canviewothers'] and $thread['postuserid']!=$bbuserinfo['userid']) {
show_nopermission();
}

if (($bbuserinfo['userid']!=$thread['postuserid']) and (!$getperms['canviewothers'] or !$getperms['canreplyothers'])) {
$replybox='';
} elseif (!$getperms['canview'] or (!$getperms['canreplyown'] and $bbuserinfo['userid']==$thread['postuserid'])) {
$replybox='';
} elseif (!$thread['open'] and !ismoderator($thread['forumid'],'canopenclose')) {
$replybox='';
} else {
$textareacols = gettextareawidth();
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");
}

if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}
I'm on 2.2.7 and those two:
Quote:

if (!$getperms['canviewothers'] and ($thread['postuserid']!=$bbuserinfo['userid'] or $bbuserinfo['userid']==0)) {
show_nopermission();
}

if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}
aren't together...

so where do i add:
Quote:

if (($bbuserinfo['userid']!=$thread['postuserid']) and (!$getperms['canviewothers'] or !$getperms['canreplyothers'])) {
$replybox='';
} elseif (!$getperms['canview'] or (!$getperms['canreplyown'] and $bbuserinfo['userid']==$thread['postuserid'])) {
$replybox='';
} elseif (!$thread['open'] and !ismoderator($thread['forumid'],'canopenclose')) {
$replybox='';
} else {
$textareacols = gettextareawidth();
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");
}
please help, i had the same problem in 2.2.6

Dan Flynn 09-15-2002 01:40 AM

Is there a way were it says post reply to change the wording to for quick replys or something like that?

NexDog 09-15-2002 02:26 AM

lol

Learner29 09-15-2002 03:08 PM

Dan Flynn
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Is there a way were it says post reply to change the wording to for quick
replys or something like that?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

of course, just put the code in a html editor and change the wording...

Cold Steel 09-15-2002 11:59 PM

I have the store hack and the pickpocket hack installed.

Users who shouldn't be able to post, still can, via this hack. Is there anyway to edit showthread.php around it?

I got it so that those "in prison" couldn't even view the thread, but all I want to do is change it so they can't see the quick reply box.

ghroob 09-16-2002 02:02 AM

Ok!

Who use vBulletin v.2.2.7
And like to install this hack with Smiles
Download please this file

And great Thanks for Chen :eek:

Mono 09-17-2002 12:03 AM

I have 2.2.7 board and /me hack seems to null out the quick reply. What I mean by that is if I have /me hack installed quick reply wont show up at all. I also had this problem when I was running 2.2.6. Anyone know how to fix?

Elem 09-17-2002 06:50 AM

how would i creat 2checkboxes underneath the [check message length] for 1: parse urls and 2:sigs on/off? any help would be much appreciated

o and absolutly awsome hack

ciudadhu 09-18-2002 02:56 PM

im using 2.2.7 i mdeda steps 1 &2 but in 3 i have a newbie question
Quote:

In the "showthread" template add $replybox right after the following:......

what i suposed to do???

Learner29 09-18-2002 04:52 PM

Quote:

ciudadhu wrote :

im using 2.2.7 i mdeda steps 1 &2 but in 3 i have a newbie question
Quote:

In the "showthread" template add $replybox right after the
following:......
what i suposed to do???
you should add the word "$replybox" right after the text that was mentioned
here above.

that is look for the text above (use control + F, or Edit, and then Find) ,
and then immediately below it add this word :

$replybox

NexDog 09-18-2002 09:55 PM

I serarched 14 pages and gave up. Any way to subscribe people to the thread when they reply using the Quick Reply Box. My forum has actually dropped off a bit as people aren't getting email notifications when they use the Box. Any fix?

Link14716 09-18-2002 10:05 PM

14 Pages? Man, especially when the link is sitting on the first post. Ouch! :)

https://vborg.vbsupport.ru/showthrea...950#post253950

NexDog 09-18-2002 11:29 PM

Errf, that was page 28, but cheers. :)

Link14716 09-19-2002 12:03 AM

Quote:

Originally posted by NexDog
Errf, that was page 28, but cheers. :)
Yea, but FireFly linked to it in big bold letters in the fist post :)

gsnetworks 09-19-2002 09:47 PM

I can't seem to install it, as I cannot find:
Quote:

<!-- first unread and next/prev -->
<table cellpadding="2" cellspacing="0" border="0" width="95%" align="center">
<tr>
<td><smallfont>$pagenav&nbsp;</smallfont></td>
<td align="right"><smallfont>
<img src="https://vborg.vbsupport.ru/images/prev.gif" alt="" border="0">
<a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&goto=nextoldest">Last Thread</a>
&nbsp;
<a href="showthread.php?s=$session[sessionhash]&threadid=$threadid&goto=nextnewest">Next Thread</a>
<img src="https://vborg.vbsupport.ru/images/next.gif" alt="" border="0">
</smallfont></td>
</tr>
</table>
<!-- first unread and next/prev -->
in the showthread.php file... I haven't hacked vB's before, so if this is stupid that is my excuse. :)

otacon 09-19-2002 09:59 PM

BEST HACK EVER

Mono 09-19-2002 10:22 PM

Quote:

Originally posted by Mono
I have 2.2.7 board and /me hack seems to null out the quick reply. What I mean by that is if I have /me hack installed quick reply wont show up at all. I also had this problem when I was running 2.2.6. Anyone know how to fix?
Anyone?

Learner29 09-19-2002 10:35 PM

Quote:

gsnetworks
I can't seem to install it, as I cannot find:
Quote:

<!-- first unread and next/prev -->
<table cellpadding="2" cellspacing="0" border="0" width="95%"
align="center">
................
<!-- first unread and next/prev -->
in the showthread.php file... I haven't hacked vB's before, so if this is
stupid that is my excuse. :)

sometimes the code is a bit different but you can still recognize it ......
just look for a portion of the code....

gsnetworks 09-20-2002 09:34 PM

Problem is I can't find anything that looks anything like it.. I use version 2.2.7

Help would be appreciated.

Roderik 09-21-2002 08:07 PM

thx! Works great @ http://www.overclocking.be/forum/sho...=&postid=28763

bouncer18 09-23-2002 02:32 AM

great hack!

alanvo 09-27-2002 03:30 PM

I dont think this hack work with 2.2.8...can someone please double check...

Xenon 09-27-2002 03:32 PM

you should take a look at this board here:
"Powered by: vBulletin version 2.2.8, copyright ©2000 - 2002, Jelsoft Enterprises Limited"

and as you can see the quick reply is working..

JFry 09-27-2002 09:04 PM

I can't seem to get it to work on 2.2.8, either. I did everything, exactly as instructed. No reply box shows up.

TheComputerGuy 09-28-2002 11:26 AM

Look for "if (!$getperms['canviewothers'] and ($thread['postuserid']!=$bbuserinfo['userid'] or $bbuserinfo['userid']==0)) {
show_nopermission();
}

if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") {
$pagenumber=1;
}"

on the second time...

Cause I got lost as well, but then I searched for it and it was the second listing...Great hack still.

Ceros Sin Kii 09-28-2002 02:41 PM

I recently installed it, and it works out great for the most part. One problem, however..

It appears at the top of each thread rather than the bottom. Anyway to fix this?

Tony DiMera 09-28-2002 06:29 PM

I have done that, make sure you put $ replybox(without the space) after the 4th <!-- first unread and next/prev --> in the showthread template

JFry 09-29-2002 02:35 AM

I restored my original showthread.php file, removed the new template, and reverted the modified template to the original. I then reinstalled and it still doesn't work. It doesn't show up in new threads, old threads, posts of admins, posts of regular members. The box is nowhere to be found. Any ideas what I could possibly be doing wrong to cause it to simply not appear? Thanks.

alanvo 09-29-2002 04:04 AM

so, can anybody tell me the correct info to make this hack work with 2.2.8

Chris M 09-29-2002 11:50 AM

@alanvo - Just install the hack as told...

It works on vB 2.2.8:)

Satan

alanvo 09-29-2002 04:58 PM

I did, it doesn't work...have you install it yet? 2.2.8 is different from 2.2.7.....

antifanatic 09-30-2002 01:44 PM

can any 1 make this work with 2.0.0 as i need it bad! thanks!


All times are GMT. The time now is 06:42 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.02378 seconds
  • Memory Usage 1,825KB
  • 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
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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