vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   Code for adding multiple Prefixes (https://vborg.vbsupport.ru/showthread.php?t=276393)

steeler7 01-03-2012 11:51 AM

Code for adding multiple Prefixes
 
Hi,

This is actually code for vBadvanced to filter news items by Prefix. It works fine except that I want to add more than 1 prefix... I figured the code itself might be basic enough where someone with knowledge could help out

Code:

$getnewsids = $db->query_read("
                                SELECT $ratingsql threadid, firstpostid
                                FROM " . TABLE_PREFIX . "thread AS thread
                                WHERE visible = 1
                                        AND thread.prefixid = 'X'
                                        AND open != 10
                                        AND (thread.forumid IN(" . implode(',', $mods['inforums']) . ")
                                        " . iif(!empty($newstids), ' OR threadid IN(' . implode(',', $newstids) . ')') . "
                                        )
                                        " . iif($mod_options['portal_news_cutoffdate'], 'AND thread.dateline > ' . (TIMENOW - ($mod_options['portal_news_cutoffdate'] * 86400))) . "
                                ORDER BY " . iif($mod_options['portal_news_sticky'], 'sticky DESC,') . iif($mod_options['portal_news_orderby'] == 'postdateline', 'dateline', $mod_options['portal_news_orderby']) . " $mod_options[portal_news_direction]
                                $newslimit
                        ");

whats in red is my prefix id. I tried duplicating another prefix next to it with and without a comma and no luck

kh99 01-03-2012 12:10 PM

I think you want to change it like this:

Code:

AND thread.prefixid IN ('X', 'Y', 'Z')

steeler7 01-03-2012 02:12 PM

Thanks for your response!

I give it a try and I got the following Database Error message..

Quote:

Database error in vBulletin 4.1.7:

Invalid SQL:

SELECT threadid, firstpostid
FROM thread AS thread
WHERE visible = 1
AND thread.prefixid IN = ('Articles','News')
AND open != 10
AND (thread.forumid IN(53,7,42,15,22,47,29,30,31,41,35)

)

ORDER BY dateline DESC
LIMIT 5;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '= ('Articles','News')
--------------- Added [DATE]1325607249[/DATE] at [TIME]1325607249[/TIME] ---------------

Nevermind, I forgot to get rid of "=". it works perfectly now.

THANK YOU !!! this was a big help and need on my end!


All times are GMT. The time now is 04:10 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.01674 seconds
  • Memory Usage 1,717KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete