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[filesize] bytes, $attachment[counter] views)</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)