vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   attachment associations (https://vborg.vbsupport.ru/showthread.php?t=35181)

sccr410 02-18-2002 07:39 AM

How does vB check which attachment is associated with which thread? In the 'thread' table, it just has a variable to determine if there is an attachment, and in the 'attachment' table it only has attachmentid.

I am trying to modify a news system to display a link to a file attachment at the end of the post.

http://www.sandiegopegasus.com uses vB as the news system and many times there are file attachments. This would be *very* helpful!

Thanks for any help!

Admin 02-18-2002 07:48 AM

Let's say you have $attachmentid:
Code:

$getthreadid=$DB_site->query_first("SELECT threadid FROM post WHERE attachmentid=".intval($attachmentid));
$threadid=$getthreadid['threadid'];

The only problem is, when one attachment belongs to one or more posts (happens when you copy a thread, and a post has an attachment).

sccr410 02-18-2002 09:26 AM

Quote:

Fatal error: Call to a member function on a non-object in /home/sandieg/public_html/forum/PluhNews.php on line 68
Line 68 begins the code you started.

?

Admin 02-18-2002 09:43 AM

Use regular mysql_query() if it's not a vBulletin page.

sccr410 02-18-2002 09:31 PM

So actually it was even easier than that. You don't need to do another sql query because the news program already gets the postid, which is all you need.
PHP Code:

if ($attach == 1) { 
    
$displayattach "<small><a href=http://www.sandiegopegasus.com/forum/attachment.php?postid=".$postid.">Download attachment</a>";
}
else { 
$displayattach ""; } 


Admin 02-19-2002 11:07 AM

You are welcome.

sccr410 02-19-2002 04:30 PM

Thanks FireFly. You got me to actually think about how it works and I actually did something on my own!


All times are GMT. The time now is 08:16 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.00929 seconds
  • Memory Usage 1,724KB
  • 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_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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