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)
-   -   Last XX Posts on non-vB page (https://vborg.vbsupport.ru/showthread.php?t=12324)

julius 04-29-2001 09:30 AM

Thx Tubedogg, it's perfect now. :)

For all (registered, guests and unlogged) it would be fine just something like server time +- n hours (or GMT +- n hours), without using cookies.

If in this way there are some problem with showing the correct date, it could be let it off.

eiko 04-29-2001 12:36 PM

Works great (except): When I put a forum number(s) in either (only 1 of the two) include or exclude forums, "can't select info" .

If I leave these blank, display's with no problem. Help!

Excellent hack.

tubedogg 04-29-2001 09:48 PM

Odd...I can't reproduce that problem. Make sure you are only putting numbers and commas into those two variables, and separating the numbers with commas. So it might look like:
Code:

$includeforums = "3,4,5,6";

eiko 04-29-2001 10:25 PM

That's exactly how I did it.
Would it be a good idea (or possible) to have the script automatically exclude private forums?

wajones 05-04-2001 11:25 PM

Nice hack tubedogg, it fit right in with what I was needing. Here is how I used it.

tubedogg 05-04-2001 11:47 PM

looks good, wajones! :)

wajones 05-07-2001 01:05 AM

Thought I'd share this, a few of my users wanted to include tubedogg's last10 hack on a vbulletin page and this is what I came up with...

In a copy of the last10.php script comment out or delete the following

require("$path/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassw ord) or die("Can't open connection to MySQL");
mysql_select_db($dbname) or die("Can't select database");

now add this to the phpinclude template

ob_start();
include_once("./last10.php");
$last10 = ob_get_contents();
ob_end_clean();

Then I was able to add $last10 into any vbulletin template to display the last10 table. Saved a lot of work trying to create templates and changing his code, plus if he changes it, it's simple to upgrade.

tubedogg 05-07-2001 01:57 AM

very cool idea. thanks, wajones! :)

Essam 05-07-2001 05:24 AM

tubedogg

any plans to add javascript, so that last posts can be shown in remote sites without actually accessing mysql.? I think it will be very useful for many ppl.

wajones 05-09-2001 02:17 PM

Quote:

Originally posted by tubedogg
very cool idea. thanks, wajones! :)
I like this better...
Create another copy of the last10.php named thelatest.php so you can set different param's.
Create a new forum and name it 'The latest posts" or what ever set it to "act as forum = no and open for posts = no" now put this into the phpinclude in place of what I told you before... $forumid being that forum you created

ob_start();
if ($forumid==34){
include_once("./thelatest.php");
$thisweek= ob_get_contents();
}else{
include_once("./last10.php");
$last10 = ob_get_contents();
}
ob_end_clean();


Now in the forumdisplay template find...

$forumdisplay[forumslist]

then right above it put $thisweek

Now the last10 or $thisweek in this case will show as a forum and be in the jumpforum box for quick access :D

Let me know if you see any conflicts....


All times are GMT. The time now is 10:36 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.01497 seconds
  • Memory Usage 1,735KB
  • 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
  • (1)bbcode_code_printable
  • (1)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
  • (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