vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   Newest Posts on Main page (https://vborg.vbsupport.ru/showthread.php?t=11618)

03-18-2001 08:25 AM

If you use this, than all threads are shown on the mainpage, even threads that are in internal forums.

Is there a solution for this?

03-18-2001 01:33 PM

very nice and easy to install.

Is there a way i could have the date of the post and the name of the poster + the title? like in http://www.sitepoint.com/

thank you in advance

03-18-2001 01:40 PM

yes, that is the script that will solve all of our problems.
I have asked Wayne on their forums about it, but got no reply :(

03-18-2001 02:57 PM

Quote:

Originally posted by auto
you can only include php code in a php page, which means it ends with either .php or .php3
a .shtml page can't execute php.

Um, actually it will if you use a SSI. As long as your server supports PHP parsing, you can include a PHP file via SSI (see this). Also, you can use the extension of .phtml on PHP files, assuming your server supports this.

03-18-2001 03:04 PM

Quote:

Originally posted by TommyXXL
If you use this, than all threads are shown on the mainpage, even threads that are in internal forums.
Do you mean private forums that are limited access? If so, here's the solution. Change the line
PHP Code:

$query "SELECT * FROM thread ORDER BY lastpost DESC LIMIT $maxthreads"

to
PHP Code:

$query "SELECT * FROM thread WHERE forumid!=XX ORDER BY lastpost DESC LIMIT $maxthreads"

and change the XX to the number of the forum you want to exclude. (You can determine the forum number by going to your main forums page and mousing over the link to each forum. The forum number is the part of the url after forumid; e.g. http://yoursite.com/forumdisplay.php?s=&forumid=36. To exclude more than one forum, add this:
PHP Code:

 AND forumid!=XX 

for each additional forum you want to exclude. MAKE SURE you add a space before the word AND and a space after XX and you change the XX to the number you want excluded. Example: I want to exclude forums 6, 12, and 35.
PHP Code:

$query "SELECT * FROM thread WHERE forumid!=6 AND forumid!=12 AND forumid!=35 ORDER BY lastpost DESC LIMIT $maxthreads"

Second example: I want to exclude forum 6.
PHP Code:

$query "SELECT * FROM thread WHERE forumid!=6 ORDER BY lastpost DESC LIMIT $maxthreads"


SVTBlackLight01 01-05-2003 01:21 AM

Is there a way to get the user and date to display too.


All times are GMT. The time now is 09:27 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.01092 seconds
  • Memory Usage 1,736KB
  • 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
  • (2)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
  • (6)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