View Single Post
  #25  
Old 10-31-2005, 08:26 PM
davidw's Avatar
davidw davidw is offline
 
Join Date: Jul 2005
Location: Arkansas
Posts: 2,815
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here's the instructions on how I did it...

I'm using this loosely for avi as examples on how to edit; replace with the appropriate file type

In your class_postbit.php file

Find:

PHP Code:
// wma attachment
    
global $wmaid,$wmafilename,$wmaextension,$wmafilenameandlocation,$wmafilesize
Add after:

PHP Code:
// avi attachment
    
global $aviid,$avifilename,$aviextension,$aviafilenameandlocation,$avifilesize
(replacing wma with avi in each)

Find:

PHP Code:
            //wma attachment
            
$wmaid=$post['userid'];
            
$wmafilename=$attachment['filename'];
         
$wmaextension=$attachment['attachmentextension'];                                     
         
$wmafilenameandlocation=$media_controller $attachmentid ;            
            
$wmafilesize=$attachment['filesize']; 

Add after:

PHP Code:
            //avi attachment
            
$aviid=$post['userid'];
            
$avifilename=$attachment['filename'];
         
$aviextension=$attachment['attachmentextension'];                                     
         
$avifilenameandlocation=$media_controller $attachmentid ;            
            
$avifilesize=$attachment['filesize']; 
(replacing wma with avi in each)

Find:

PHP Code:
                     case 'wma':
                         eval(
'$this->post[\'wmaattachments\'] .= "' fetch_template('postbit_attachmentwma') . '";');                     
                         
$show['wmaattachment'] = true;                     
                     break; 
Add after:

PHP Code:
                     case 'avi':
                         eval(
'$this->post[\'aviattachments\'] .= "' fetch_template('postbit_attachmentavi') . '";');                     
                         
$show['aviattachment'] = true;                     
                     break; 
(replacing wma with avi in each)

Postbit template edit (I use postbit legacy, you'll have to compare to postbit for the changes)

Find:

PHP Code:
<if condition="$show[wmaattachment]">
<
fieldset class="fieldset">
<
legend>$vbphrase[attach_wma$wmafilename</legend>

<
div style="padding:$stylevar[formspacer]px">
$post[wmaattachments]
</
div>
</
fieldset>

</if> 
Add after:

PHP Code:
<if condition="$show[aviattachment]">
<
fieldset class="fieldset">
<
legend>$vbphrase[attach_avi$avifilename</legend>

<
div style="padding:$stylevar[formspacer]px">
$post[aviattachments]
</
div>
</
fieldset>

</if> 
(replacing wma with avi in each)


ADMINCP - Attachments - Extensions & Sizes - Add New Extension

Extension: avi
Max Filesize(in bytes) 5000000 (or whatever you want
Mime Type: Content-type: video/x-ms-avi
Display thumbnail for this type? No
Open this attachment in a new browser window? No (Really this is your choice)
Enabled Yes

XML edit

Add this after one of your templates: (It will end in </template>)
PHP Code:
<template name="postbit_attachmentavi" templatetype="template" date="1125000000" username="christianb" version="3.5.0">
        <![
CDATA[    
                <
br>
                <
center>
             <
table border="0" align="center" width="400" cellspacing="0" cellpadding="0" height="275">
                    <
tr>
                     <
td class="thead" width="100%" height="25">
                      <
center>
                          <
font color="#FFFFFF">
                              
AVI Attachment 
                          
</font>
                      </
center>
                  </
td>             
                    </
tr>
                    <
tr>
                     <
td width="100%" height="225">             
                      <
center>             
                          <
object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="Player" width="400" height="225" 
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,0,0" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">

<
param name="URL" value="$avifilenameandlocation">
<
param name="rate" value="1">
<
param name="balance" value="0">
<
param name="currentPosition" value="1">
<
param name="defaultFrame" value>
<
param name="playCount" value="1">
<
param name="autoStart" value="-1">
<
param name="loop" value="-1">
<
param name="currentMarker" value="0">
<
param name="invokeURLs" value="-1">
<
param name="baseURL" value>
<
param name="volume" value="200">
<
param name="mute" value="0">
<
param name="uiMode" value="full">
<
param name="stretchToFit" value="0">
<
param name="windowlessVideo" value="0">
<
param name="enabled" value="-1">
<
param name="enableContextMenu" value="0">
<
param name="fullScreen" value="0">
<
param name="SAMIStyle" value>
<
param name="SAMILang" value>
<
param name="SAMIFilename" value>
<
param name="captioningID" value>
<
param name="enableErrorDialogs" value="0">
<
param name="_cx" value="7938">
<
param name="_cy" value="6482">

<
embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows95/downloads/contents/wurecommended/s_wufeatured/mediaplayer/default.asp" src="$wmafilenameandlocation
rate=1
balance
=0
currentPosition
=1
playCount
=1
autoStart
=1
loop
=-1
currentMarker
=0
invokeURLs
=-1
volume
=200
mute
=0
uiMode
=full
stretchToFit
=0
windowlessVideo
=0
enabled
=-1
enableContextMenu
=0
fullScreen
=0
SAMIStyle
SAMILang
SAMIFilename
captioningID
enableErrorDialogs
=0
_cx
=7938
_cy
=6482
width
=400 
height
=225>
</
embed>
</
object>
                      </
center>
                        </
td>
                 </
tr>             
                    <
tr>
                     <
td class="thead" width="100%" height="25">
                      <
center>
                          <
font color="#6600FF">
                              <
a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]target="_blank">$attachment[filename]</a> <span class="smallfont">($attachment[filesizebytes$attachment[counterviews)</span>
                          </
font>
                      </
center>
                  </
td>             
                    </
tr>
                
                </
table>
                </
center>
                <
br>
            ]]>
    </
template
Don't forget to update your phrase manager:

Add New Phrase

Phrase Type: Global
Varname: attach_avi
Text: AVI (doesn't really matter - shows up in your legend)
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01314 seconds
  • Memory Usage 1,901KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (9)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete