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)
-   -   [RELEASE v2.x] OPNews v1.2 << More features! (https://vborg.vbsupport.ru/showthread.php?t=26792)

merk 08-30-2001 01:09 AM

Ill need the $newsquery lines please.

IanMFT 08-30-2001 05:14 AM

$newsquery = "SELECT thread.*, post.*";
$newsquery .= " FROM thread,post";
$newsquery .= " WHERE post.threadid=thread.threadid";
$newsquery .= " AND thread.forumid=$newsforums";
$newsquery .= " GROUP BY thread.threadid";
$newsquery .= " ORDER BY thread.dateline DESC";
$newsquery .= " LIMIT $newsitems";


sorry bout' that :)

merk 08-30-2001 05:26 AM

Quote:

Originally posted by IanMFT
newsquery = "SELECT thread.*, post.*";
$newsquery .= " FROM thread,post";
$newsquery .= " WHERE post.threadid=thread.threadid";
$newsquery .= " AND thread.forumid=$newsforums";
$newsquery .= " GROUP BY thread.threadid";
$newsquery .= " ORDER BY thread.dateline DESC";
$newsquery .= " LIMIT $newsitems";
$newsquery = "SELECT thread.*, post.*";
$newsquery .= " FROM thread,post";
$newsquery .= " WHERE post.threadid=thread.threadid";
$newsquery .= " AND thread.forumid=$newsforums";
$newsquery .= " GROUP BY thread.threadid";
$newsquery .= " ORDER BY thread.dateline DESC";
$newsquery .= " LIMIT $newsitems";
^^ Hrm, thats the one i use, and it works fine.

Might just want to try reuploading the file.

merk 08-30-2001 05:27 AM

No problem about that either, just the newsbit template doesnt tell you much.

pier 08-30-2001 01:02 PM

I've a problem with the query showing ups thread titles & post text.

OpNEWS doesn't display the right pagetext if there're more than 1 post in the thread.

am I the only one with problems like this ? :confused:

thanks
pier

IanMFT 08-30-2001 05:34 PM

ok, something is REALLY screwey, i changed the 0 back to a 1(actually, i re copied the script) and its still displating the last comment instead of the news...this is quite odd. Any ideas?

merk 08-30-2001 09:01 PM

I dont get this problem.

Ill look into it, give me a day.

pier 08-31-2001 07:36 AM

Quote:

Originally posted by IanMFT
ok, something is REALLY screwey, i changed the 0 back to a 1(actually, i re copied the script) and its still displating the last comment instead of the news...this is quite odd. Any ideas?
Yes... same problem there

merk 08-31-2001 10:20 AM

That is REALLY strange.

I have this script running, here and it works fine.

Really weird.

Im actually working on another problem atm, so could you pls post a copy of the news.php file in here(just use [php] tags)

Thanks!

IanMFT 08-31-2001 04:03 PM

PHP Code:

<? 
error_reporting(7);
$templatesused='header,newsbit,shownews,headerbit,newsheaders';

//What is the ID of your News forum?

$newsforums = 48;

//How many news items should be displayed?
$newsitems = 10;

//Path to your forums directory (leave out trailing slash), i recomend using [url]http://www.domain.com/forumpath[/url]
$forumspath = "/forums";

require('./global.php');

$newsquery = "SELECT thread.*, post.*";
$newsquery .= " FROM thread,post";
$newsquery .= " WHERE post.threadid=thread.threadid";
$newsquery .= " AND thread.forumid=$newsforums";
$newsquery .= " GROUP BY thread.threadid";
$newsquery .= " ORDER BY thread.dateline DESC";
$newsquery .= " LIMIT $newsitems";

$headlinequery = "SELECT thread.*";
$headlinequery .= " FROM thread";
$headlinequery .= " WHERE forumid = $newsforums";
$headlinequery .= " ORDER BY threadid";
$headlinequery .= " DESC LIMIT $newsitems";

if ($action == "headlines") {$query = $headlinequery;} else {$query = $newsquery;}

$passthruquery=$DB_site->query($query);

while ($newsarray=$DB_site->fetch_array($passthruquery)) {
    //Get date in their timezone
    $dateposted = vbdate("jS F Y, H:i",$newsarray[dateline]);
    //If they select anything but 'headlines' as their action, assume they want news.
    if ($action != "headlines") {
        //You may remove this, and replace any reference to $commenttext in the templates to Coments, or use replacment variables
        //Make it plural if there is more than one comment
        if ($newsarray[replycount]==1) {
            $commenttext = "Comment";
        }
        else {
            $commenttext = "Comments";
        }
            //Process the thread, and make it parse vBcode, and stuff
            $cookedthread=bbcodeparse2($newsarray[pagetext],"1","1","1","1");
            //Call the template 'newsbit' for each news entry it finds in the database
            eval("\$newsbits .= \"".gettemplate("newsbit")."\";");
    }
    //They want headlines, so they get headlines
    if ($action == "headlines") {
        eval("\$newsbits .= \"".gettemplate("headlinebit")."\";");
    }
}

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

?>



All times are GMT. The time now is 08:51 PM.

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.02081 seconds
  • Memory Usage 1,747KB
  • 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_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
  • (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