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 |
#52
|
|||
|
|||
mine wont show the administer categories
|
#53
|
|||
|
|||
Okay, I just uploaded a new version which fixes the style for people who store as files...
Quote:
I feel like I'm on crazy pills here... Quote:
Can't help you with this, as I don't use VBSEO and I have no idea what your original URLs were. |
#54
|
|||
|
|||
Quote:
http://www.8wayrun.com/video.php http://www.8wayrun.com/video.php?do=...y&categoryid=4 http://www.8wayrun.com/video.php?do=...s&videoid=1482 http://www.8wayrun.com/video.php?do=...er&userid=2674 http://www.8wayrun.com/video.php?do=...&tag=nightmare Just need to convert these urls into new media library urls. |
#55
|
|||
|
|||
very nice work dude!
just awesome! is-there a way to change "media" to "videos"? |
#56
|
|||
|
|||
Is there any way to stop auto playing?
|
#57
|
|||
|
|||
You are a pro coder.. thats for sure.. even your site is truly amazing skills.. I uploaded the files i just downloaded today.. all of them and overwrite old but still rating don't work.. it also says done but with errors on page like before.. Thanks for doing such great work.. ill be patient as i know your working when you can.. thanks..
Forum Link: http://aogamers.com/forums/media.php? |
#58
|
|||
|
|||
Will the be the CMS widgets as well.
|
#59
|
|||
|
|||
CMS widgets will come eventually, but its not a priority right now because right now the VB4 CMS is HOT GARBAGE and I have standards.
Quote:
Yes, if you go into Administration: Services, you can edit the embed code of each of the hosters and turn off the autoplay flags. The flags are different for each service, so you'll have to figure it out on your own. Quote:
Quote:
Code:
## Charset AddDefaultCharset Off ## ETags FileETag None ## Expires <ifModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType text/html "access plus 1 seconds" ExpiresByType image/gif "access plus 259200000 seconds" ExpiresByType image/jpeg "access plus 259200000 seconds" ExpiresByType image/png "access plus 259200000 seconds" ExpiresByType text/css "access plus 60480000 seconds" ExpiresByType text/javascript "access plus 21600000 seconds" ExpiresByType application/x-javascript "access plus 21600000 seconds" </ifModule> ## Compression <ifmodule mod_headers.c> <ifmodule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html </ifmodule> </ifmodule> ## Rewrites RewriteEngine on Options +FollowSymlinks RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] # Media Library ReWriteRule ^media/m(\d+).*/tags$ media.php?do=tags_edit&mid=$1 ReWriteRule ^media/m(\d+).*/edit$ media.php?do=details_edit&mid=$1 ReWriteRule ^media/m(\d+).*/report$ media.php?do=report&mid=$1 ReWriteRule ^media/m(\d+).*/c(\d+)$ media.php?do=comment_edit&cmt=$2 ReWriteRule ^media/m(\d+).* media.php?do=details&mid=$1 ReWriteRule ^media/c(\d+).* media.php?do=category&cid=$1 ReWriteRule ^media/u(\d+).* media.php?do=user&uid=$1 ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$1 ReWriteRule ^media/tagcloud.* media.php?do=tag_cloud ReWriteRule ^media/search/(.*) media.php?do=search&query=$1 ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$1 ReWriteRule ^media/submit.* media.php?do=submit ReWriteRule ^media/random.* media.php?do=random ReWriteRule ^media/admin/(\w+).* media.php?do=admin_$1 # Media Library from Video Directory RewriteCond %{QUERY_STRING} do=viewdetails&videoid=(\d+) RewriteRule ^video\.php$ media.php?do=details&mid=%1 RewriteCond %{QUERY_STRING} viewcategory&categoryid=(\d+) RewriteRule ^video\.php$ media.php?do=category&cid=%1 RewriteCond %{QUERY_STRING} viewuser&userid=(\d+) RewriteRule ^video\.php$ media.php?do=user&uid=%1 RewriteCond %{QUERY_STRING} viewtag&tag=(.*) RewriteRule ^video\.php$ media.php?do=tag&tid=%1 ReWriteRule ^video\.php$ media.php # Forum RewriteRule ^threads/.* showthread.php [QSA] RewriteRule ^forums/.* forumdisplay.php [QSA] RewriteRule ^members/.* member.php [QSA] RewriteRule ^blogs/.* blog.php [QSA] ReWriteRule ^entries/.* entry.php [QSA] RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] # MVC RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA] |
#60
|
|||
|
|||
Hello Jaxel, I think this is a great mod and will prob purchase the copyright free version. Do you offer general support with this though if we make purchase? (ie. just bugs, not custom work etc)?
|
#61
|
|||
|
|||
Quote:
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|