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)
-   -   Support for forums in send-to-friend (https://vborg.vbsupport.ru/showthread.php?t=24827)

theflow 08-24-2001 06:26 PM

Firefly, I have not yet upgraded from 2.01 to 2.03. But will be doing so shortly. Nevertheless, when I asked a friend to implement your great hack for me, she said:

he references changing a file called online.php which is nowhere to be found on theflow website - could this be a file that was created in a newer release of vbulletin? I can't find that snippet of code in any files that we have.

Can you supply a tweek to your code based on the 2.01 release, or is that too difficult since you are not running it anymore?

Admin 08-24-2001 06:30 PM

If you do not use v2.0.2 or higher, you will not have online.php.
But the changes done to online.php are very very minor, and have absolutely no influence on the sent-to-friend functionality. You can safely install this hack, and skip step 2. :)

EDIT:
Just so you understand. The changes in online.php are done to make it so that when a user is on the new page, it won't show a "Unknown location" message, but a "Sending a page to friend" message. Since you don't use online.php, there's no need in this.

LuBi 09-04-2001 07:13 AM

What does this hack do?

Admin 09-04-2001 10:49 AM

LuBi:
Know that link, "Email This Page to Someone!" at the bottom of every thread?
Well this hack lets you also add this link to the bottom of every forum, to send the forum page to someone else.

LuBi 09-04-2001 10:51 AM

Thanks, great hack.

Admin 09-04-2001 11:11 AM

Thank you. :)

Saiyan XL 02-27-2002 02:08 AM

that god damn demo thing didn't work for me..

FleaBag 05-21-2002 05:08 PM

Thanks for this hack FireFly, very useful - though it needed a little editing for version 2.2.5 [I'll post the fixes in my next post]. :) Saiyan XL is right too, the demo doesn't work anymore.

FleaBag 05-21-2002 05:15 PM

OK, here's a little update for people using later versions of vBulletin such as myself [I'm using 2.2.5].

Firstly the following code found in step one [as shown below]...

PHP Code:

if ($wordwrap!=0) [b]{[/b]
    
$threadinfo[title]=dowordwrap($threadinfo[title]);
  [
b]}[/b]

  eval(
"dooutput(\"".gettemplate("sendtofriend")."\");"); 

...is different, and actually looks like this...

PHP Code:

  if ($wordwrap!=0) {
    
$threadinfo[title]=dowordwrap($threadinfo[title]);
  }

  eval(
"dooutput(\"".gettemplate("sendtofriend")."\");"); 

...and you need to replace it with this...

PHP Code:

if ($wordwrap!=0) {
    
$foruminfo[title]=dowordwrap($foruminfo[title]);
  }

  eval(
"dooutput(\"".gettemplate("sendtofriendforum")."\");"); 

You'll also have to use this template rather than the one FireFly posted or you'll have extra HTML showing at the top of the page. So insert this into a new template called sendtofriendforum...

PHP Code:

{htmldoctype}
<
html>
<
head><title>$bbtitle :: Send Page to a Friend</title>
$headinclude
</head>
<
body>
$header

<form action="sendtofriendforum.php" method="post">
<
input type="hidden" name="s" value="$session[sessionhash]"><input type="hidden" name="forumid" value="$forumid">

<
table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" bgcolor="{tablebordercolor}" [b]{[/b]tableouterextra[b]}[/bwidth="{contenttablewidth}" align="center"><tr><td>
<
table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" [b]{[/b]tableinnerextra[b]}[/bwidth="100%">
<
tr>
    <
td bgcolor="{tableheadbgcolor}" colspan="2"><normalfont color="{tableheadtextcolor}" class="thtcolor"><b>Send This Page To A Friend</b></normalfont></td>
</
tr>
$logincode
<tr>
    <
td bgcolor="{secondaltcolor}"><normalfont><b>Send To (Person's Name):</b></normalfont></td>
    <td bgcolor="{secondaltcolor}"><normalfont><input type="text" class="bginput" name="sendtoname" size="25" maxlength="75"></normalfont></td>
</tr>
<tr>
    <td bgcolor="{firstaltcolor}"><normalfont><b>Send To (Email Address):</b></normalfont></td>
    <td bgcolor="{firstaltcolor}"><normalfont><input type="text" class="bginput" name="sendtoemail" size="25" maxlength="100"></normalfont></td>
</tr>
<tr>
    <td bgcolor="{secondaltcolor}"><normalfont><b>Subject:</b></normalfont></td>
    <td bgcolor="{secondaltcolor}"><normalfont><input type="text" class="bginput" name="emailsubject" value="$threadinfo[title]" size="25" maxlength="100"></normalfont></td>
</tr>
<tr>
    <td bgcolor="{firstaltcolor}" valign="top"><normalfont><b>Message:</b></normalfont></td>
    <td bgcolor="{firstaltcolor}"><textarea name="emailmessage" rows="10" cols="50">I thought you might be interested in reading this web page:
$bburl/forumdisplay.php?forumid=$forumid&referrerid=$bbuserinfo[userid]

From,
$bbuserinfo[username]
</textarea></td>
</tr>
</table>
</td></tr></table>

<br>

<table cellpadding="2" cellspacing="0" border="0" width="{contenttablewidth}" {tableinvisibleextra} align="center">
<tr>
    <td align="center"><normalfont>
    <input type="submit" class="bginput" name="submit" value="Send Email Now!" accesskey="s">
    <input type="hidden" name="threadid" value="$threadid">
    <input type="hidden" name="action" value="sendfriend">
    </normalfont></td>
</tr>
</table>

</form>

$footer

</body>
</html> 

...and finally, an extra step; edit your existing template called redirect_sentemail and replace it with the following - this changes the word Thread to Page, so it applies to threads and forums, and is also slightly more explanatory.

PHP Code:

We have sent your email to $sendtonameYou will now be returned to the page that you sent to your friend

Hope this might have helped some of you, and thanks again to FireFly for the hack! :)

FleaBag 06-20-2002 09:46 AM

Working on 2.2.6, doesn't need any changes between upgrade if you use FireFly's Add Who's Online Locations from Admin CP - otherwise just re-apply the changes to online.php! :)


All times are GMT. The time now is 11:57 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.01118 seconds
  • Memory Usage 1,766KB
  • 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
  • (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