The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
8WayRun.Com - Media Library Details »» | |||||||||||||||||||||||||||||||||||||||||
Don't forget to click INSTALL!
I'm an unemployed computer programmer... if you appreciate the work I have done on this mod, please don't hesitate in offering me a donation by clicking the "Support Developer" link to the right of this text. A donation of $50 or more automatically gives you the right to remove the copyright footer for this modification from a single forum. This is a new modification, spawning from the old VB 3.x Video Directory modifications. For all intents and purposes, both my old Video Directory Remixed mod, and Survivor's original Video Directory mod have been discontinued. Neither of us are maintaining these older versions, they will not receive any future updates and we will not be providing any support. This version has a new name because it has been completely rewritten from scratch and is not being built on Survivor's old code. Because of this, if you are upgrading to this new version, from the old version, be sure to read this entire post in order to understand the upgrade process. What is this mod? Simply put, this mod is a directory for media. It supports URL inputs, in order to extract meta data and directorize media into a simple and easy to understand library. Users can add their favorite media from a select few online distribution centers (such as Youtube or Vimeo) and categorize and tag them as they see fit. This mod offers rudimentary support for the hosting of local media. An administrator can upload a media to the /customVID/ (default) directory; then add the media to the library using the URL code of "local:filename". Media hosted locally will be displayed using JWPlayer, but will not provide meta data, so that kind of information will need to be entered manually. Demo: http://www.8wayrun.com/media.phpFeatures:
If you are upgrading from before version 1.1, please install that version first.
There is a conflict with this modification and some of Valter's VSA modifications that will prevent navbar permissions from being handled correctly. I don't know exactly who's fault it is; but I'm pretty sure there are no errors in my code that would be causing this problem. There is a work around for this however. Download Now
Show Your Support
|
17 благодарности(ей) от: | ||
8thos, Ahmet Turan, alhidaya, BlueCheri, hasidoo, InfoNirvana, Marcin_J_, Megaboost, misericorde, nacaruncr, owning_y0u, paulvev, RichieBoy67, romaszek, rootsxrocks, sodasusu |
Comments |
#2752
|
|||
|
|||
Quote:
|
#2753
|
|||
|
|||
is there any videogallery like this one plz if yes pm me link so i can download thankyou
|
#2754
|
||||
|
||||
Quote:
|
#2755
|
|||
|
|||
Yes indeed there is some problem with thumbs on godtube.com, so I have prepared the xml service with standard 8WR Media thumbnail. It works for me. Please find enclosed, install and check again.
Regards |
Благодарность от: | ||
Chadi |
#2756
|
||||
|
||||
Thanks. So there is no way around this, at all?
|
#2757
|
|||
|
|||
in media/media_function_build.php replace:
Code:
preg_match('#([\w]+)$#i',$thumbnail,$filetype); switch ($filetype[1]) { case "png": $oldImage = imagecreatefrompng($target); break; case "gif": $oldImage = imagecreatefromgif($target); break; case "jpg": default: $oldImage = imagecreatefromjpeg($target); break; } Code:
$filetype = exif_imagetype($thumbnail); switch ($filetype) { case IMAGETYPE_PNG: $oldImage = imagecreatefrompng($target); break; case IMAGETYPE_GIF: $oldImage = imagecreatefromgif($target); break; case IMAGETYPE_JPEG: default: $oldImage = imagecreatefromjpeg($target); break; } |
#2758
|
|||
|
|||
I found that if you have vbSEO there are some modifications to the php files that have to be made that will include the titles in the non friendly URL so that you can use custom rewrite rules in the vbSEO control panel to make this work properly.
I am undergoing the changes with the php file and writing the custom rewrite rules. I'll report back with the file and the rewrite rules if it's successful. Update: It is in fact working as I planned and will update the thread with the file to update as well as the custom rewrite rules you can copy and paste in your vbSEO control panel so the SEO Friendly URL's will work with your board and vbSEO. |
#2759
|
|||
|
|||
If you use vbSEO
Add the following Custom Rewrites via your vbSEO control panel area. Once finished, turn on friendly URL's via the VB Settings > Options > 8WayRUn.com Details Code:
// # Media Library '^media\.php\?do=tags_edit&mid=(\d+)&title=(.*)'=>'media/m$1-$2/tags' '^media\.php\?do=details_edit&mid=(\d+)&title=(.*)'=>'media/m$1-$2/edit' '^media\.php\?do=report&mid=(\d+)&title=(.*)'=>'media/m$1-$2/report' '^media\.php\?do=comment_edit&cmt=(.*)&mid=(\d+)&title=(.*)'=>'media/m$2-$3/c$1' //'^media\.php\do=details&mid=(\d+)&title=(.*)&pid=(\d+)'=>'media/m$1-$2/p$3' '^media\.php\?do=details&mid=(\d+)&title=(.*)'=>'media/m$1-$2' // '^media/p(\d+).*/edit$ media.php?do=playlist_edit&pid=$1 [QSA]' // '^media/p(\d+).* media.php?do=playlist&pid=$1 [QSA]' '^media\.php\?do=playlist&pid=(\d+)'=>'media/p$1' '^media\.php\?do=category&cid=(\d+)&title=(.*)'=>'media/c$1-$2' '^media\.php\?do=user&uid=(\d+)&title=(.*)'=>'media/u$1-$2' '^media\.php\?do=tag&tid=(.*)'=>'media/tag/$1' '^media\.php\?do=results&query=(.*)'=>'media/results/$1' '^media\.php\?do=advresults&query=(.*)'=>'^media/advresults/$1' '^media\.php\?do=letter&query=(.*)'=>'media/letter/$1' '^media\.php\?do=browse'=>'media/browse' '^media\.php\?do=search'=>'media/search' '^media\.php\?do=random'=>'media/random' '^media\.php\?do=submit'=>'media/submit' '^media\.php\?do=tagcloud'=>'media/tagcloud' '^media\.php\?do=playlists'=>'media/playslists' '^media\.php\?do=playlists_create'=>'media/pcreate' '^media\.php\?do=playlists_mine'=>'media/pmine' '^media\.php\?do=favorites'=>'media/favorites' '^media\.php\?do=subscriptions'=>'media/subscriptions' // '^media/admin/edit/s(\d+).* media.php?do=admin_host_edit&sid=$1 [QSA]' // '^media/admin/delete/s(\d+).* media.php?do=admin_host_delete&sid=$1 [QSA]' // '^media/admin/export/s(\d+).* media.php?do=admin_host_export&sid=$1 [QSA]' // '^media/admin/(\w+).* media.php?do=admin_$1 [QSA]' I couldn't figure out the playlist custom rewrites properly but don't even have these navigation items active as that is not the purpose of the directory for us. If you can figure it out, feel free to do so and update for others. In regards to the administrate options. I left this as is because I manually added the navigation links for these already in my navbar and didn't bother with them. No edits to any PHP file were needed to make these friendly links work, just redoing the .htaccess file listings to make them in the proper format for vbSEO. Hope this helps someone. You can view the friendly URL's working here: http://www.iplaycod.com/forums/media.php |
#2760
|
|||
|
|||
Add Facebook Like and Send option for each media listing:
First step is to go to https://developers.facebook.com/docs.../plugins/like/ and set up your settings as you would like. I chose the Like & Send option. Add the code they mention to add right after the body tag in the header template. The code where you want to display the like button: Style Manager > Edit Templates > 8WayRun.com Media Library Templates > 8WR_media_details Find: Code:
<b>{vb:phrase media_tags}:</b><br />
<ul class="commalist">
{vb:raw media.tags}
</ul>
Code:
<br /><br /> <div class="fb-like" data-send="true" data-width="450" data-show-faces="true"></div> |
2 благодарности(ей) от: | ||
CharlieDelta, Taurus1 |
#2761
|
|||
|
|||
Does anyone have a link to the current files to install this mod, thanks in advance, cheers.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|