PDA

View Full Version : Major Additions - 8WayRun.Com - Media Library


Pages : [1] 2 3 4 5 6 7 8 9 10 11 12 13

Jaxel
04-16-2010, 10:00 PM
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.php

Features:
Integrated directly into the vBulletin user database and product manager.
Fully phrased and built on tempaltes for easy re-skinning and styling.
Simple to use administration features and usergroup permission settings.
Landing page with the most recent, most popular and highest rated media.
Ability to add media into a single category, while adding multiple tags.
Ability to browse media through categories, tags, and user contributions.
Summary tag cloud with a link to the entire list of tags in the system.
Comment and rating system based on AJAX including graceful degredation.
Individual RSS Feeds for newest videos, categories, tags and user media.
Search function for titles and descriptions.Installation:If you are upgrading from before version 1.1, please install that version first.

Upload all the files in the "upload" directory of the attached zip file to your forum root.
CHMOD the /customVID/thumbs/ directory to full read/write/execute 777 permissions.
CHMOD the /customVID/sitemap/ directory to full read/write/execute 777 permissions.
Import the product file called "product-medialibrary.xml" in the Product Manager of vBulletin.
Set your usergroup permissions and media library settings in your administration control panel.
OPTIONAL: Enable the "Generate XML Media Sitemap" scheduled task in your administration control panel.

NOTES: Make sure you decide what you wish to use for your thumbnail quality setting. By default, thumbnails are saved at 50% quality. At 50%, thumbnails will only be 2kb in size, but at the expense of quality. At 100%, thumbnails will be about 15kb in size, but will have the highest quality. I recommend setting it to 80%, which would leave thumbnails at 5kb in size with still excellent quality.

Every time you change your thumbnail quality setting, you will need to run the "Rebuild Media Thumbnails" to see any changes.Upgrading from VDR (https://vborg.vbsupport.ru/showthread.php?t=200819):
The "video*" tables from your previous installation of VDR need to exist in your database.
Enable the "media ADMIN import" plugin in the plugin manager of your control panel.
Run the "Import Media from VDR" process in your update counters menu in maintenance.
Disable the "media ADMIN import" plugin in the plugin manager of your control panel.
Run the "Rebuild Media Thumbnails" process in your update counters menu in maintenance.
You may now uninstall VDR once you confirm everything has been imported as intended.

NOTES: You will mostly likely get at least one error while rebuilding media thumbnails...

When you get an error, click the details link for that media. If the media displays some sort of error such as "This video has been removed" or "This video no longer exist", then that means that media is gone and you'll be unable to generate a thumbnail for that particular media. Use the available options on that media's detail page to DELETE it from your library. Then go back to your browser window which is rebuilding thumbnails and click the "retry from this position" link.

If you got an error for a media, but after clicking the details link you can find no obvious error with the video; then the error could have just been a simple syn/ack failure. Just click the "retry from this position" link and the system will try to rebuild that thumbnail again.Known Bugs: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.

Admin Control Panel > Plugins & Products > Plugin Manager > "media NAVTAB"

Find the code:
$perms = media_permissions();Replace with:
$perms['rate'] = true;
$perms['comment'] = true;
$perms['submit'] = true;
$perms['playlist'] = true;

if (is_member_of($vbulletin->userinfo, explode(',','5,6')))
{
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;
}

Jaxel
04-17-2010, 07:54 PM
================================================== =========
Version 4.1.5 MAINTENANCE RELEASE
================================================== =========

CHANGES: Service Hosters can now retrieve XML information based on ERRORS.
What this means, instead of YouTube returning a "Media contains invalid data" prompt,
the script will instead post the direct error prompt supplied by YouTube Error Code.
The issues people were having with foreign language forums and YouTube will be explained.

You MUST run the "Click here to restore all services in the "/media/xml" directory to their default settings" process.

BUG FIX: Fixed service codes for MetaCafe and Dailymotion who changed their functions
BUG FIX: Fixed a table prefix issue with both playlists and the search functions.
BUG FIX: Disabled the ImageMagick routines once again until I can get it working.
NOTICE: All install procedures pre-4.1.2 have been rolled up into the initial release.


================================================== =========
Version 4.1.5 PLAYLISTS AND CUSTOM VARIABLES
================================================== =========

CHANGES: Object types are now explicitly defined in service XML files.

You MUST run the "Click here to restore all services in the "/media/xml" directory to their default settings" process.
The reason for this change is so that you can now host local WMV files using the included JW Silverlight Player.
The LocalAudio/LocalVideo services have been depricated and replaced with Local-MP3, Local-MP4, Local-WMA, and Local-WMV.

NEW FEATURE: Administrators can now define up to 9 custom variables.

The custom variable system must be enabled in the control panel before you can use any custom variables.
Custom variables can be enabled or disabled by either adding or deleting their custom variable names.

NEW FEATURE: Advanced Search can be found by clicking on the "Search" link on the sidebar.

The search function will now properly seperate search terms by spaces.
Advanced search will automatically include all enabled custom variables.

NEW FEATURE: Users with permissions to do so, can now create public playlists.

A new usergroup bitfield has been added for this permission, so you may need to rebuild bitfields.
Playlists are not currently paginated, but at the same time, there is no limit to playlist sizes.

BUG FIX: Fixed a bug where certain cells did not properly fill out the entire page.
BUG FIX: Fixed a bug where comments could not be posted if pm inboxes were full.


================================================== =========
Version 4.1.1 STREAMING AND TEMPLATE FIXES
================================================== =========

NEW FEATURE: You can now embed streams and chats from Justin.TV and uStream.

You MUST run the "Click here to restore all services in the "/media/xml" directory to their default settings" process.

CHANGES: Moved the admin links 100px to the left for small fixed width forums.
BUG FIX: Fixed the template bug where boxes wouldn't stretch to fit the page.
BUG FIX: Fixed the browse media page for those forums that use TABLE_PREFIX.
BUG FIX: Fixed thumbnail rebuilding for media that doesn't have per video RSS.
BUG FIX: Fixed thumbnail creation for hosters that don't use JPG (GIF or PNG).


================================================== =========
Version 4.1.0 INCREMENTAL CHANGES AND BUG FIXES
================================================== =========

NEW FEATURE: You can now import media directly from an installation of vBTube.
NEW FEATURE: You can now import media with consolidated IDs from VD Remixed.
CHANGES: All tags and tag content are now processed through the Data Manager.
CHANGES: This mod is now once again 100% XHTML and RSS validated.
BUG FIX: Foreign languages will now be processed correctly in AJAX comments.
BUG FIX: Media Submissions will now properly follow autoforwarding links.
BUG FIX: Main page will now properly hide videos in inactive categories.
BUG FIX: XML will now FORCE the UTF-8 charset, so people should get less errors. This will make it so that you shouldn't have to change to UTF-8 to get this mod working. However, I still recommend switching to UTF-8 if you want to handle videos from some foreign sources.


================================================== =========
Version 4.0.9 EMERGENCY BUG FIX
================================================== =========
UPGRADERS:

You MUST run the "Click here to restore all services in the "/media/xml" directory to their default settings" process.



BUG FIX: The construct for the object/embed codes have been completely rewritten. They now use a universal template file, and store only the target SWF, instead of the entire object/embed construct. You MUST run the "Click here to restore all services in the "/media/xml" directory to their default settings" process if you want this mod to continue functioning. This change was put in to fix some errors in the MRSS sitemap.
BUG FIX: The plugin to create the [media] bbcode for this mod has been encapsulated within a switch from a vb setting. There is a new setting in your Media Library options that operates this switch which will enable or disable the parsing of the [media] code. By default this switch is disabled; if you enable it and suddenly parts of your forum stop working (such as your CMS), then that means you have another mod installed on your forum that is conflicting with this one. I have gone through my code a dozen times trying to see if there is anything in it that would cause this problem and I could not find anything.


================================================== =========
Version 4.0.8 SUBSCRIPTIONS AND SITEMAP
================================================== =========
UPGRADERS:

This version has changed the way the media bits are constructed. If you install this version and suddenly notice you are getting an error when browsing the media library, just go into your admin CP and reselect your media bit style.
The sitemap has been expanded to support ALL videos in your media library. Because of this, a new directory was created in /customVID/sitemap; please make sure this directory is CHMOD 777 in order to use the sitemap.
Also remember to update your .htaccess file, and check the new entries in the known bugs section for permission changes for those using VSA mods.



NEW FEATURE: Users can now sort media by rating, favorites, comments, views and dateline.
NEW FEATURE: Users can now subscribe to media, they will recieve a PM when a comment is posted.
NEW FEATURE: A BBCode called [media] has now been implemented for posting from the library.
NEW FEATURE: A Scheduled Task has been added to build your sitemap. (disabled by default)
BUG FIX: Ampersands will now get replaced in strings properly for services such as MySpace.


================================================== =========
Version 4.0.7 BIG BUGFIX ROLLUP
================================================== =========
UPGRADERS: If you are upgrading to 4.0.7 follow these steps:

Delete the entire directory /media and all files within it.
Upload contents /upload folder of ZIP file to your forum root.
Import product-medialibrary.xml as a product, allow overwrite.
Run http://URLtoYourForums/media.php?do=admin_host_restore



NEW FEATURE: Service Hosters now support secondary service values! This is important for video hosters such as Hulu which purposely obfuscate their embed codes.
NEW FEATURE: Submission form for media will now validate fields.
NEW FEATURE: Category Descriptions will now parse BBCode.
CHANGES: Service Hosters no longer require semicolons at the end of fields.
CHANGES: Regex now use # delimeters, so / no longer needs to be \ cancelled.
BUG FIX: Comments and Editing boxes have been fixed! This issue was related to the guide here on vb.org being wrong about how to valdiate WYSIWYG textboxes. As a temporary fix, a plugin has been installed that will completely disable WYSIWYG options inside of the Media Library.
BUG FIX: ~E_DEPRECATED has been removed, since it has been depricated... oh irony.
BUG FIX: Loading media details will no longer prompt a javascript error for favorites.
BUG FIX: Thumbnail compression will now default to GD only, until I can find a fix for ImageMagick.
BUG FIX: Tags will now strip the following characters from any entry:
# $ ? & @ % + = ^ | : ; / \ < > { } [ ]

These characters are reserved URI characters and were giving problems with tags. This fix will fix any NEW tags, however this will not affect your existing tags. I recommend everyone to head to their administrate tags panel and delete any tags which contain any of these characters.

BUG FIX: More miscellaneous code and template revisions...


================================================== =========
Version 4.0.6 FAVORITES AND WIDGETS
================================================== =========

NEW FEATURE: Users can now give hearts to media and mark them as favorites.
Any usergroup with permissions to rate, will have permission to mark favorites.
NEW FEATURE: User Profile Tab for most recent media.
This uses the new "tiny" bit; which is selectable as the main bit in admincp.
NEW FEATURE: Widget support for both the ForumHome Sidebar and the vbCMS.
This has been updated since the previous versions, so please update your codes.
BUG FIX: Fixed formatting buttons on quick reply for comments.
BUG FIX: Fixed MySQLi errors for those who happen to be using it.
BUG FIX: Fixed service constructs for non-SEO slugged links.
BUG FIX: Fixed RSS feeds for tags in table prefix settings.


================================================== =========
Version 4.0.5 SERVICE HOST XML REWRITE AND SITEMAP
================================================== =========

NEW FEATURE: You can now add new services by developing your own XML files.
I will write a guide on how to construct these XML files soon enough, but for now, you'll have to figure it out on your own.
NEW FEATURE: Google Video Sitemap now available at "media.php?do=sitemap".
This sitemap will only parse LOCAL audio and video files.
BUG FIX: Fixed some leftover thumbnail problems from the previous version.
BUG FIX: Miscellaneous SQL and template errors no one knew about but me.


================================================== =========
Version 4.0.4 XHTML VALIDATED AND THUMBNAIL REWRITE
================================================== =========

CHANGE: Thumbnails are now stored in "/customVID/thumbs/" (default) directory.
UPGRADERS: If you are upgrading to 4.0.4 from a previous edition of this mod, you can now delete all the "/customVID/0-9/" thumbnail folders, but should make sure to CHMOD the "/customVID/thumbs/" folder to 777. In addition, upgraders will be required to run the "Rebuild Thumbnail Process" to generate thumbnails in the appropriate folder.
CHANGE: Administrate Services control panel is more streamlined for editing.
CHANGE: This mod is now 100% XHTML certified using the W3C XHTML Validator.
NEW FEATURE: You can now enable/disable the autoplay feature in media.
UPGRADERS: If you are upgrading to 4.0.4 from a previous edition of this mod, you must MANUALLY make changes in your services to handle the new "autoplay" setting. The new Administrate Services page will make this update process easy. Just read THIS POST (https://vborg.vbsupport.ru/showpost.php?p=2022842&postcount=3) and copy and paste the recommended embed codes into the appropriate Edit Service page.
NEW FEATURE: You can now host media locally on your server! Media must be uploaded to the "/customVID/" (default) directory. Then you can add the media to the library by using the codes "localvideo:filename.ext" or "localaudio:filename.ext" as the Media URL on the submit form. You can also add subdirectories inside of "/customVID/"; so if you uploaded "/customVID/intros/SC2intro.mkv", you can add it as a video to your library with "localvideo:intros/SC2intro.mkv". 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.
BUG FIX: Comments and Descriptions will now parse URLs into BBcode.
BUG FIX: Auto-Create Threads will now properly update forum last post times.
BUG FIX: Deleting a media will now properly delete the assosciated thumbnail.
BUG FIX: Fixed report page for those not using Search Engine Optimization.
BUG FIX: Fixed RSS Feeds for those not using Search Engine Optimization.


================================================== =========
Version 4.0.3 AUTO CREATE AND VERIFICATION FEATURES
================================================== =========

NEW FEATURE: The Auto-Create Thread feature has once again returned!
NEW FEATURE: Tag, Comment, Description and Title verification handlers now follow built in vB4 settings. Each of these fields will follow their related forum setting such as "Tag Minimum Length" or "Tag Maximum Length". If a field should fail to meet the specifications, the error handlers will now explain why it has failed in more detail.
BUG FIX: Fixed information retrieval for feeds with non-Latin sources.
BUG FIX: Fixed phrasegroup error within AJAX functions created in 4.0.2.
BUG FIX: Miscellaneous SQL and template errors no one knew about but me.


================================================== =========
Version 4.0.2 MASSIVE TEMPLATE REWRITE
================================================== =========

NEW FEATURE: StyleVar group has been created to handle Media Library styles.
This is a complete overhaul of the template system for this mod. Every old template has been replaced with new templates which include stylevars, and a new naming structure. I used replace functions in Notepad++ in order to replace the template calls in all the files so there shouldn't be any errors; however, please inform me if there are any issues with this new version, whether it be a template not being called correctly or even unchached templates.
BUG FIX: Fixed htaccess QSA errors were page numbers were not being processed.
BUG FIX: Fixed avatar constructs for comments due to a bug within vB4 itself.


================================================== =========
Version 4.0.1 SECURITY UPDATE AND BUG FIX ROLLUP
================================================== =========

CHANGE: Added lines to htaccess to convert VDR URLS to Media Library URLS.
NOT A BUG: Navbar permissions not processing.

Make sure you are running the most recent version of vBulletin 4x.
There are TWO permission groups for this mod. Make sure you set BOTH.
Permissions work fine on my test forum with no other mods installed.
None the less, I created a function to process all permission values.

BUG FIX: Fixed a XSS EXPLOIT with the tagging system and single quotes.
BUG FIX: Fixed Implicit GROUP BY error with certain versions of MySQL.
BUG FIX: Fixed various TABLE_PREFIX bugs in places without datamanager.
BUG FIX: Fixed CSS construction for people using "stylesheets as files".
BUG FIX: Fixed datamanager call for description length when rating media.
BUG FIX: Fixed media phrasegroups when making calls to ajax functions.

Jaxel
04-17-2010, 07:55 PM
reserved....

Jaxel
04-17-2010, 07:55 PM
================================================== =========
HOW TO MAKE YOUR OWN SERVICE HOST XML FILES WITHOUT RSS FEEDS
================================================== =========

Coming back soon...

Veer
04-17-2010, 08:02 PM
Excellent product Jaxel. Rated, Installed and Nominated ;)

Keep up the good work, Thumbs up!

Juggernaut
04-17-2010, 08:09 PM
Tagged.

l7azat
04-17-2010, 08:16 PM
installed ...
is this version will be work with VB 3.8.X .. ??

Bannec
04-17-2010, 08:26 PM
Thanks Jaxel.
Great Job!

kho91
04-17-2010, 08:36 PM
thank you, installed, rated anf MOTM

Riccardo83
04-17-2010, 08:40 PM
Everything works perfect, except u see html code for & and other symbols like TV &amp; Performances on some pages. In the drop down menu it is displayed correctly tho.

http://www.alizee-forum.com/media.php

Jaxel
04-17-2010, 09:20 PM
Use & instead of &amp;

The string is treated as raw unparsed text, for security reasons.

rule0
04-17-2010, 09:29 PM
When I click a user link in media.php it gives the following sql error:

Invalid SQL:

SELECT user.*, media.userID, COUNT(media.mediaID) AS count
FROM vb_user AS user
LEFT JOIN vb_media AS media ON(media.userID = user.userid)
WHERE user.userid = '1';

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140


vb 4.0.3

ps: thanks, we've been waiting for this, was keeping 3.x plugin since 4.x upgrade. nominated and appreciated :)

kho91
04-17-2010, 09:38 PM
that work fine for me, but i have too small problem, : the yahoo video and google video don't work

Jaxel
04-17-2010, 09:42 PM
When I click a user link in media.php it gives the following sql error:

vb 4.0.3

ps: thanks, we've been waiting for this, was keeping 3.x plugin since 4.x upgrade. nominated and appreciated :)

Okay, its odd that you are getting this error on user pages, but NOT tag or category pages; since NONE of those pages have the implicit GROUP BY clause either. In my version of MySQL, GROUP BY is not required. Do you get this error on any other pages? Most importantly, do you also get it on a SEARCH page?

Anyway, I uploaded a new version just for you... try it now.

that work fine for me, but i have too small problem, : the yahoo video and google video don't work

Thats because there is no import function for Yahoo or Google yet.

rule0
04-17-2010, 10:03 PM
Okay, its odd that you are getting this error on user pages, but NOT tag or category pages; since NONE of those pages have the implicit GROUP BY clause either. In my version of MySQL, GROUP BY is not required. Do you get this error on any other pages? Most importantly, do you also get it on a SEARCH page?


i checked now and it gives the same error in category links.
also when i search smtg it gives this error:
Parse error: syntax error, unexpected ';' in ..\media\media_search.php on line 76

mysql: 5.0.51b
os: windows 2k3
php 5.2.6
vb: 4.0.3

note: upgraded from VDR

edit: ok trying new version, ty for quick response :)

rule0
04-17-2010, 10:08 PM
..
Anyway, I uploaded a new version just for you... try it now.
..


user and category links are ok now! problem fixed. thanks.

but search still gives the following error:

Parse error: syntax error, unexpected ';' in ...\media\media_search.php on line 73

Jaxel
04-17-2010, 10:10 PM
I'm an idiot... new version... fixed.

How you guys like the new thumbnail format?

kho91
04-17-2010, 10:16 PM
i can't edit TAG a have this error

Database error in vBulletin 4.0.3:

Invalid SQL:

SELECT media_tag_content.*, media_tag.tagText, user.username
FROM vbmedia_tag_content AS media_tag_content
LEFT JOIN vbmedia_tag ON(media_tag.tagID = media_tag_content.tagID)
LEFT JOIN vbuser AS user ON (user.userid = media_tag_content.userid)
WHERE media_tag_content.mediaID = '186';

MySQL Error : Unknown column 'media_tag.tagText' in 'field list'
Error Number : 1054
Request Date : Sunday, April 18th 2010 @ 01:14:55 AM
Error Date : Sunday, April 18th 2010 @ 01:14:56 AM
Script : http://www.mysite.com/media.php?do=tags_edit&mid=186
Referrer : http://www.mysite.com/media.php?do=details&mid=186
IP Address :
Username : Aroot
Classname : vB_Database
MySQL Version : 5.0.67-log

Jaxel
04-17-2010, 10:23 PM
Dammit... its always some random TABLE PREFIX error that I miss... fixed.

rule0
04-17-2010, 10:26 PM
I'm an idiot... new version... fixed.

How you guys like the new thumbnail format?

ok, search is working good now. 449 media imported from vdr and all is working perfect! ty!

new thumbnail format is much better. this is a perfect mod. :up:

kho91
04-17-2010, 10:29 PM
it's ok...thank you very much Jaxel!

freexav
04-17-2010, 11:30 PM
can't download file... could-you fix it? can't wait to install this hack!!!
cheers

xav

literatestylish
04-18-2010, 12:08 AM
Would like to see a demo or screenshot.

Kaleem
04-18-2010, 02:35 AM
I am having the style problems any suggestions?

http://www.friendskorner.com/forum/media.php

ProFifaLeagues
04-18-2010, 03:00 AM
Love this mod install and rated 5 stars but ive run into a issue which could even be an error from utube but after adding a few videos which work A1 now when i try i get this message
vBulletin Message

The description you have given this media is too short! Please go back and try again.

Any ideas please?

ProFifaLeagues
04-18-2010, 04:11 AM
No sorry all fine it was a fault with the video file.
Super mod very happy with it thanks again.

ahmedipa
04-18-2010, 04:45 AM
I love it , I was waiting for this thank you so much

dxds
04-18-2010, 06:27 AM
Very nice!... rating does not work for me.. http://aogamers.com/forums/media.php

I followed directions 100%.. Thanks for such a nice setup.. i like were your going with this..

dxds
04-18-2010, 06:32 AM
maybe thumbnails could be a bit smaller were 4 would fit on my page..

Arved Yagami
04-18-2010, 07:11 AM
Thanks for the update. How can I use latin charsets for the comments?

Also, I can change the info for the media, it was a nice feature in the directory video to change the video description (i used to translate info to spanish).

ProFifaLeagues
04-18-2010, 07:59 AM
How can i change the Media Tab in the Navbar to Say something Different??

Candostum
04-18-2010, 11:19 AM
Thanks very nice mod installed. But How can I add google video?

kho91
04-18-2010, 11:30 AM
Thanks very nice mod installed. But How can I add google video?

for the time being we can't add google and yahoo video

ProFifaLeagues
04-18-2010, 12:17 PM
Is there a way to make extra Categories????
i havent been able to find it

your24hourstore
04-18-2010, 12:17 PM
for the time being we can't add google and yahoo video


oh I see its for youtube http://www.youtube.com/watch?v=Cf3puNgjwxU

COL NIL SATIS
04-18-2010, 02:13 PM
Very nice mod this is.....is it possible too add categories ??? if so where do you add them ??

HappyFeet
04-18-2010, 03:07 PM
Excellent! I was hoping this would see new life. I pulled our old files from the database without a glitch. Waiting on a fix for the comment buttons...

Rated and Nominated!! Thanks:up:

Jaxel
04-18-2010, 04:17 PM
Thanks very nice mod installed. But How can I add google video?
Right now it only supports: YouTube, Vimeo, MetaCafe, DailyMotion, Veoh, MegaVideo and uStream. I will make a video guide on how to make your own services within the coming weeks.

How can i change the Media Tab in the Navbar to Say something Different??
The system is PHRASED. Look for the global phrase "media" and simply change it to something else.

Thanks for the update. How can I use latin charsets for the comments?

Also, I can change the info for the media, it was a nice feature in the directory video to change the video description (i used to translate info to spanish).
I dont quite understand what you are asking. You can change the description when you add the video. You can also click the "edit media" button on the top right of a media's details page... this link will only show up if you have the appropriate permissions, or the media belongs to you.

Very nice!... rating does not work for me..
Okay, the rating bug was caused when I phrases the system and forgot to add the media phrasegroup to the ajax system. It has been fixed in the version I just uploaded...

maybe thumbnails could be a bit smaller were 4 would fit on my page..
You can edit the styles in "css templates >> media.css". Look for the /* MEDIA BIT SMALL */ section and change the width to whatever you see fit.

Excellent! I was hoping this would see new life. I pulled our old files from the database without a glitch. Waiting on a fix for the comment buttons...
Comment buttons? Whats wrong with the comment buttons? They work fine for me. It also degrades gracefully when I disable AJAX functions. So if there is an issue, please keep me informed.

Very nice mod this is.....is it possible too add categories ??? if so where do you add them ??
You can add categories by clicking on the "Administrate: Categories" link in the media library itself; NOT THE ADMIN CP. This link will only show up if your usergroup has the correct permissions.

daveaite
04-18-2010, 04:28 PM
reserved. screenshots please.

your24hourstore
04-18-2010, 04:34 PM
I see you updated it... do i need to reinstall the whole package or just the new XML?
I see the zip is the same size so probibly same files

Juggernaut
04-18-2010, 04:34 PM
I'd like to see screenshots :)

Stefanus
04-18-2010, 04:40 PM
I am having the style problems any suggestions?

http://www.friendskorner.com/forum/media.php

Got the same CSS problem:
http://www.wendag.com/forum/media.php?

Any help on the cause of this?

HappyFeet
04-18-2010, 04:44 PM
Comment buttons? Whats wrong with the comment buttons? They work fine for me. It also degrades gracefully when I disable AJAX functions. So if there is an issue, please keep me informed.



Sorry, I meant to say the buttons on the comment form... You have it posted as a known bug.

Bold, Italic, Underline, Font color ect.

COL NIL SATIS
04-18-2010, 04:51 PM
You can add categories by clicking on the "Administrate: Categories" link in the media library itself; NOT THE ADMIN CP. This link will only show up if your usergroup has the correct permissions.

just done that but still no sign of this link for adding categories.....we have 1 category general media ????? gahhh

Veer
04-18-2010, 04:56 PM
A few suggestions for future releases:

Mass move media
Mass delete media
Who's Online (watching media) on Media page.
Integration with vBulletin's built-in Facebook Connect

Thanks.

Jaxel
04-18-2010, 05:43 PM
Got the same CSS problem:
http://www.wendag.com/forum/media.php?

Any help on the cause of this?

That is very odd... it appears that media.css is not being called correctly on your forum...
http://www.wendag.com/forum/clientscript/vbulletin_css/style00010l/media.css

I have figured it out though... it seems to be a problem with the "Store CSS Stylesheets as Files?" option. A bug with VB itself handling non-default CSS styles. I'll look into it; for now, disable this option and it will work.

just done that but still no sign of this link for adding categories.....we have 1 category general media ????? gahhh

Did you scroll down to the bottom of the page?

COL NIL SATIS
04-18-2010, 05:53 PM
will try again now mate ..its a brilliant mod ,once i suss this it will be awesome ..

Stefanus
04-18-2010, 06:50 PM
That is very odd... it appears that media.css is not being called correctly on your forum...

I have figured it out though... it seems to be a problem with the "Store CSS Stylesheets as Files?" option. A bug with VB itself handling non-default CSS styles. I'll look into it; for now, disable this option and it will work.


Thanks.

The "Tag Cloud" does not follow forum settings - "Tag Cloud: Number of Levels"

could you look into this as well?

Thanks

Ahmet Turan
04-18-2010, 07:21 PM
How do I add categories. I can not see anything to add categories

Veer
04-18-2010, 08:21 PM
You can use HTACCESS to convert old video URLs into the new media URL.

Jaxel, can you provide htaccess code to convert old video URLs into the new media URL? so we will not get not found errors.

your24hourstore
04-18-2010, 08:39 PM
mine wont show the administer categories

Jaxel
04-18-2010, 09:29 PM
Okay, I just uploaded a new version which fixes the style for people who store as files...

How do I add categories. I can not see anything to add categoriesmine wont show the administer categories


I feel like I'm on crazy pills here...
https://vborg.vbsupport.ru/external/2010/04/37.jpg

Jaxel, can you provide htaccess code to convert old video URLs into the new media URL? so we will not get not found errors.


Can't help you with this, as I don't use VBSEO and I have no idea what your original URLs were.

Veer
04-18-2010, 09:35 PM
Can't help you with this, as I don't use VBSEO and I have no idea what your original URLs were.
I never used vbseo, my video urls was just like as yours at 8wayrun.com/video.php

http://www.8wayrun.com/video.php
http://www.8wayrun.com/video.php?do=viewcategory&categoryid=4
http://www.8wayrun.com/video.php?do=viewdetails&videoid=1482
http://www.8wayrun.com/video.php?do=viewuser&userid=2674
http://www.8wayrun.com/video.php?do=viewtag&tag=nightmare

Just need to convert these urls into new media library urls.

freexav
04-18-2010, 09:39 PM
very nice work dude!
just awesome!
is-there a way to change "media" to "videos"?

Veer
04-18-2010, 09:47 PM
Is there any way to stop auto playing?

dxds
04-18-2010, 10:00 PM
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?

Preech
04-18-2010, 10:22 PM
Will the be the CMS widgets as well.

Jaxel
04-19-2010, 04:37 AM
Will the be the CMS widgets as well.
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.


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..
Ratings are working flawlessly for me... what errors are you getting exactly? Are you using the most up to date version of this? I've updated it several times today.


Is there any way to stop auto playing?
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.


very nice work dude!
just awesome!
is-there a way to change "media" to "videos"?
You can change "Media" to "Videos" in the PHRASES. This entire mod is phrased. So search your phrases for the test "Media"; the one you are probably looking for is in the GLOBAL phrasegroup.


I never used vbseo, my video urls was just like as yours at 8wayrun.com/video.php

http://www.8wayrun.com/video.php
http://www.8wayrun.com/video.php?do=viewcategory&categoryid=4
http://www.8wayrun.com/video.php?do=viewdetails&videoid=1482
http://www.8wayrun.com/video.php?do=viewuser&userid=2674
http://www.8wayrun.com/video.php?do=viewtag&tag=nightmare

Just need to convert these urls into new media library urls.
Below is my current htaccess file. It will handle the rewrites you are looking for, and its the htaccess file I recommend everyone use for their forum. This htaccess will handle the rewrites for vbulletin perfectly, as well as cache your images and files perfectly. Using this file, it single handedly sped up my forum from 5 seconds on the front page to less than 1 second on subsequent loads.

## 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]

Jabong82
04-19-2010, 05:39 AM
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)?

Veer
04-19-2010, 05:58 AM
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.

Yes, I got it, thank you.

Below is my current htaccess file. It will handle the rewrites you are looking for, and its the htaccess file I recommend everyone use for their forum. This htaccess will handle the rewrites for vbulletin perfectly, as well as cache your images and files perfectly. Using this file, it single handedly sped up my forum from 5 seconds on the front page to less than 1 second on subsequent loads.


Works perfectly, thanks a lot.

Jabong82
04-19-2010, 06:35 AM
Hello just wondering the "Edit Video" tag doesn't work. Basically when you make changes and click "Edit Video", none of the changes are saved.

Also the "Report" function doesn't work for me either.

Any help would be appreciated. Thank you again.

Jabong82
04-19-2010, 08:00 AM
Oh also every now and then when I upload a video I get this error:

Database error in vBulletin 4.0.2:

Invalid SQL:

INSERT IGNORE INTO media_tag
(tagText, dateline)
VALUES ('russell', 1271667386),('peters', 1271667386),('secret', 1271667386),('policeman's', 1271667386),('ball', 1271667386),('amnesty', 1271667386),('international', 1271667386),('comedy', 1271667386),('human', 1271667386),('rights', 1271667386);

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's', 1271667386),('ball', 1271667386),('amnesty', 1271667386),('international', 1' at line 3
Error Number : 1064
Request Date : Monday, April 19th 2010 @ 03:56:26 AM
Error Date : Monday, April 19th 2010 @ 03:56:27 AM
Script : http://www.site.com/media.php
Referrer : http://www.site.com/media.php
IP Address : XXXXXXXXXX
Username : XXXXXXXXX
Classname : vB_Database
MySQL Version : 5.1.30

The videos load fine, but for some reason this error pops up, but once I navigate away from this page everything is fine.

Rahstyles
04-19-2010, 08:26 AM
Yo this thing is hott. but got too many bugs. man.. it dont go with my background.. and i cant creat catigories.. every other add.. is a database error.. and.. to top it off. when i click on the content i uploaded it just goes to the media front page it wont even go to the movie

ProFifaLeagues
04-19-2010, 08:50 AM
Gott say i agree its a hot mod mate,but we have it installed and theres no errors at all its working A1 and we are very happy with it!We just need to sort the adding of more sections.
Vbull forum 4.0 Best mod we have used!!!!!

Veer
04-19-2010, 09:21 AM
Hello just wondering the "Edit Video" tag doesn't work. Basically when you make changes and click "Edit Video", none of the changes are saved.

Also the "Report" function doesn't work for me either.

Any help would be appreciated. Thank you again.

I duplicate this.

Edit media doesn't save editing, especially media description.
"Report" page doesn't show anything.

hassshasss
04-19-2010, 03:26 PM
https://vborg.vbsupport.ru/attachment.php?attachmentid=115968&stc=1&d=1271629728


I look like the administration is not doing links.
How can I make out?

xxalexkimxx
04-19-2010, 03:36 PM
Thanks for the mod

WuMing
04-19-2010, 04:02 PM
Thanks for the mod. I have a ques
How post play list youtube in Media Library ?

ANGEL OF FIRE
04-19-2010, 04:19 PM
While video from Youtube loading to videoarchive we have faced such problem:

To copy the information about a clip we use Youtube button "Retrieve Information". Only the text typed by a Latin simbols is copied correctly. Cyrillic symbols are displayed as question signs.

An example:
????? & ???????? ?????????? - "?????? ??????? ???" The official videoclip for Anatoliy BONDARENKO & Group NANCY song "IVA".
???????? ?.??????????,????? ?????? ?. ?????????? ???????? ???., ? ?.

We need a code page 1251 to use in the forum. Apparently, the error occurs because of wrong conversion UTF8 in CP1251.

Is it possible to fix it?

Stefanus
04-19-2010, 04:38 PM
Thanks.

The "Tag Cloud" does not follow forum settings - "Tag Cloud: Number of Levels"

could you look into this as well?

Thanks

Got the following errors today:

Database error in vBulletin 4.0.3:

Invalid SQL:

SELECT media_tag.*, COUNT(media_tag_content.mediaID) AS count
FROM media_tag AS media_tag
LEFT JOIN media_tag_content AS media_tag_content ON(media_tag_content.tagID = media_tag.tagID)
WHERE media_tag.tagText = 'd'arc'
GROUP BY media_tag.tagText;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'arc'
GROUP BY media_tag.tagText' at line 4
Error Number : 1064
Request Date : Monday, April 19th 2010 @ 11:37:31 AM
Error Date : Monday, April 19th 2010 @ 11:37:32 AM
Script : http://www.wendag.com/forum/media.php?do=tag&tid=d'arc
Referrer :
IP Address : 66.249.66.9
Username : Unregistered
Classname : vB_Database
MySQL Version :

Julie
04-19-2010, 04:53 PM
I did an upgrade from the old Video Directory...

When trying to edit comments (one made in the old system, and one in the new for testing purpose) I get the following error message after clicking on the "Edit" link:

The comment you have entered is far too short and has been rejected.

Edit: Where can I set/alter the minimum characters in comments?

your24hourstore
04-19-2010, 06:08 PM
OK now seems to be working great all aspects seem functional. nominated
found one issue..how do you delete a category?

N/M i see you can just overwrite them to something new ..this is sweet man
ps: first let me say I just thought it would be easier to go to you tube and look at them, but when i did you get these annoying
little ads pop up in the flash you have to click on them on the little X to get rid of them, but once you repost the links via this nod to a site those idiot ads don't appear, so its actually better than you tube. thanks man i see what this is all about now. I will try and send something for your effort.

Jaxel
04-19-2010, 06:57 PM
OK now seems to be working great all aspects seem functional. nominated
found one issue..how do you delete a category?

N/M i see you can just overwrite them to something new ..this is sweet man
I have not programmed in a method to delete categories. Categories are a required field for every media; so in order to delete a category, you would either have to move all the existing media in that category to a new category, or delete all the media within that category with it. Deleting a media also deletes ratings, comments, thumbnails, and tags that go with it. I figured it wasn't worth the time to program this in; as you can easily just change a category's information to something new, or mark it inactive. If there is enough demand, I guess I could write this in, but for now it seems pointless.


Got the following errors today:
This is a major XSS error that can lead to some nasty SQL Injection. It has been fixed in the new version I will be uploading soon. If you are concerned about security, I would recommend DISABLING THIS MOD until I upload the new version. This is REALLY REALLY REALLY BAD. Thank you for the many who have reported this bug.


Only the text typed by a Latin simbols is copied correctly. Cyrillic symbols are displayed as question signs.
I am using vBulletin's built in cURL clone called vURL. I will try to get it working with non UTF8 characters, but you're going to have to give me an example link for me to work through first.


Thanks for the mod. I have a ques
How post play list youtube in Media Library ?
You can't... yet.


I look like the administration is not doing links.
How can I make out?
What version of vB are you using? I am using 4.0.3 and everything is working fine. Someone else who is reporting the same problem you are having is using 4.0.0 PL1. vB4 has shipped with so many bugs that you really need to keep it up to date to make sure everything is working correctly. Try upgrading to the newest version of VB and then tell me if you're still having issues with permissions. This should also fix the REPORT function hopefully.

Jaxel
04-19-2010, 07:27 PM
================================================== =========
Version 4.0.1 SECURITY UPDATE AND BUG FIX ROLLUP
================================================== =========

Added lines to htaccess which will convert old VDR URLS to Media Library URLS.
NOT A BUG: Navbar permissions not proccessing.

Make sure you are running the most recent version of vBulletin 4x.
There are TWO permission groups for this mod. Make sure you set BOTH.
Permissions work fine on my test forum with no other mods installed.
None the less, I created a function to process all permission values.

BUG FIX: Fixed an XSS EXPLOIT with the tagging system and single quotes.
BUG FIX: Fixed Implicit GROUP BY error with certain versions of MySQL.
BUG FIX: Fixed various TABLE_PREFIX bugs in places without datamanager.
BUG FIX: Fixed CSS construction for people using "stylesheets as files".
BUG FIX: Fixed datamanager call for description length when rating media.
BUG FIX: Fixed media phrasegroups when making calls to ajax functions.

COL NIL SATIS
04-19-2010, 07:43 PM
================================================== =========
Version 4.0.1 SECURITY UPDATE AND BUG FIX ROLLUP
================================================== =========

Added lines to htaccess which will convert old VDR URLS to Media Library URLS.
NOT A BUG: Navbar permissions not proccessing.

Make sure you are running the most recent version of vBulletin 4x.
There are TWO permission groups for this mod. Make sure you set BOTH.
Permissions work fine on my test forum with no other mods installed.
None the less, I created a function to process all permission values.

BUG FIX: Fixed an XSS EXPLOIT with the tagging system and single quotes.
BUG FIX: Fixed Implicit GROUP BY error with certain versions of MySQL.
BUG FIX: Fixed various TABLE_PREFIX bugs in places without datamanager.
BUG FIX: Fixed CSS construction for people using "stylesheets as files".
BUG FIX: Fixed datamanager call for description length when rating media.
BUG FIX: Fixed media phrasegroups when making calls to ajax functions.


Jaxel ...legend mate ....when ours is all sorted fella we will send a nice donation your way for your time and effort...really appreciate it!!! Col and Rammie

Veer
04-19-2010, 07:59 PM
After adding your htaccess file I noticed on whos online page there are some visitors at this unknown location:

116030

And please tell me how and where to check reported media?

Jaxel
04-19-2010, 08:15 PM
Veer, xd_receiver.htm has something to do with facebook. No idea what it is.

Reported media is EMAILED directly to any usergroup which has Can-Moderate-Details permissions.

Jaxel
04-19-2010, 09:31 PM
Just uploaded a miscellaneous update for phrases, product update checking, and some htaccess QSA fixes.

TimberFloorAu
04-19-2010, 09:35 PM
Just downloaded and installed.
Click Category link and takes us back to home page

TimberFloorAu
04-19-2010, 09:38 PM
When submitting media we get this error:

Warning: fopen([path]/customVID/1/d1_JBMrrYw8.jpg) [function.fopen]: failed to open stream: Permission denied in [path]/media/media_functions_builds.php on line 23

Warning: fwrite(): supplied argument is not a valid stream resource in [path]/media/media_functions_builds.php on line 24

Warning: fclose(): supplied argument is not a valid stream resource in [path]/media/media_functions_builds.php on line 25

Warning: getimagesize([path]/customVID/1/d1_JBMrrYw8.jpg) [function.getimagesize]: failed to open stream: No such file or directory in [path]/media/media_functions_builds.php on line 27

Warning: Division by zero in [path]/media/media_functions_builds.php on line 29

Warning: imagecreatefromjpeg([path]/customVID/1/d1_JBMrrYw8.jpg) [function.imagecreatefromjpeg]: failed to open stream: No such file or directory in [path]/media/media_functions_builds.php on line 37

Warning: imagecopyresampled(): supplied argument is not a valid Image resource in [path]/media/media_functions_builds.php on line 38

Warning: unlink([path]/customVID/1/d1_JBMrrYw8.jpg) [function.unlink]: No such file or directory in [path]/media/media_functions_builds.php on line 40

TimberFloorAu
04-19-2010, 10:22 PM
Fixed the above issue I think: Should URLs within the media library be slugged for SEO?

Set to NO and seems to work fine

TimberFloorAu
04-19-2010, 10:46 PM
WORKS A DREAM ;) thankyou

Only issue is Comments.
The avatar has a weird link and says vbulletin in weird text.

Jaxel
04-19-2010, 11:33 PM
Just downloaded and installed.
Click Category link and takes us back to home page
Fixed the above issue I think: Should URLs within the media library be slugged for SEO?

Set to NO and seems to work fine
As you already figured out, you were getting this error because you enabled SEO slugs. There is an additional file which is included in the zip called ".htaccess". You MUST have an apache server, and MUST upload this file to your forum root in order to get SEO slugs to work correctly. Without this file, your website won't know how to translate the SEO slugs into workable URLs.

When submitting media we get this error:

<snip>
You did not follow the complete installation procedures.
CHMOD the /customVID directory and all directories within it to full read/write/execute 777.
You are getting these permissions errors and subsequent errors because you did not give your server full 777 rights to the directories in which thumbnails are created.


Only issue is Comments.
The avatar has a weird link and says vbulletin in weird text.
Certified "Works for Me". The links on avatars are using vBulletin's official constructs.

Jabong82
04-19-2010, 11:35 PM
Hey Jaxel I was wondering if there is any fix yet for the report and edit functions? Thank you again.

TimberFloorAu
04-20-2010, 12:09 AM
The error when submitting video, etc. Was sorted by disabling the slug. All folders htaccess etc followed and done prior to testing.

The avatar issue is more of a problem.

If memory serves me correct this was also an issue with Farcasters event attendance. I believe was a VB issue. ( could be totally unrelated )

Jaxel
04-20-2010, 01:08 AM
The error when submitting video, etc. Was sorted by disabling the slug. All folders htaccess etc followed and done prior to testing.

The avatar issue is more of a problem.

If memory serves me correct this was also an issue with Farcasters event attendance. I believe was a VB issue. ( could be totally unrelated )
Okay, new version is up with a "fix". I've also discovered a bug in VB4 relating to their avatar construction. (one of many I've discovered, but this is the only one I've bothered reporting; really VB4 is chock full of bugs)


Hey Jaxel I was wondering if there is any fix yet for the report and edit functions? Thank you again.
There is no fix on the way for this, as I can't find a problem on vb4.0.3. Make sure you are running the most recent version of VB4. Provide me with more information.

TimberFloorAu
04-20-2010, 02:15 AM
Beautiful Fixed. Thanks :up:

Jabong82
04-20-2010, 02:54 AM
There is no fix on the way for this, as I can't find a problem on vb4.0.3. Make sure you are running the most recent version of VB4. Provide me with more information.

Ah I see. I'm still runnin 4.0.2. I'm paranoid about upgrading to 4.0.3 with all the bugs that have been reported. Thanks again.

Jaxel
04-20-2010, 03:26 AM
I think you guys are gonna like whats coming tomorrow... STYLEVARS!

jacobskinner811
04-20-2010, 04:00 AM
im pretty sure this is what my site needs but i have no idea how to upload it...if i could get step by step instructions that would be great

Jabong82
04-20-2010, 04:17 AM
im pretty sure this is what my site needs but i have no idea how to upload it...if i could get step by step instructions that would be great


1. Upload all the files in the "upload" directory of the attached zip file to your forum root.
2. CHMOD the /customVID directory and all directories within it to full read/write/execute 777.
3. Import the product file called "product-media.xml" in the Product Manager of vBulletin.
4. Set your usergroup permissions and media library settings in your administration control panel.


Those are the steps, pretty standard. Are you new to VB? If you are I could help explain further.

Jaxel
04-20-2010, 04:36 AM
================================================== =========
Version 4.0.2 MASSIVE TEMPLATE REWRITE
================================================== =========

NEW FEATURE: StyleVar group has been created to handle Media Library styles.
This is a complete overhaul of the template system for this mod. Every old template has been replaced with new templates which include stylevars, and a new naming structure. I used replace functions in Notepad++ in order to replace the template calls in all the files so there shouldn't be any errors; however, please inform me if there are any issues with this new version, whether it be a template not being called correctly or even unchached templates.
BUG FIX: Fixed htaccess QSA errors were page numbers were not being processed.
BUG FIX: Fixed avatar constructs for comments due to a bug within vB4 itself.

Rahstyles
04-20-2010, 04:42 AM
================================================== =========
Version 4.0.2 MASSIVE TEMPLATE REWRITE
================================================== =========

NEW FEATURE: StyleVar group has been created to handle Media Library styles.
This is a complete overhaul of the template system for this mod. Every old template has been replaced with new templates which include stylevars, and a new naming structure. I used replace functions in Notepad++ in order to replace the template calls in all the files so there shouldn't be any errors; however, please inform me if there are any issues with this new version, whether it be a template not being called correctly or even unchached templates.
BUG FIX: Fixed htaccess QSA errors were page numbers were not being processed.
BUG FIX: Fixed avatar constructs for comments due to a bug within vB4 itself.


Ok so weres the new version??

willy888
04-20-2010, 04:52 AM
Database error
the plugin installed ok but the link does not work

Jaxel
04-20-2010, 05:31 AM
Ok so weres the new version??
Umm... its at the top of the page?


Database error
the plugin installed ok but the link does not work
Can't help you. When you get an error, you should cut and paste the error so that I know what the error is and can fix it. Also, what plugin? What link?

hassshasss
04-20-2010, 05:45 AM
I can not get admin options.
I gave the necessary user group izinleride What can I do please help.

willy888
04-20-2010, 06:41 AM
Can't help you. When you get an error, you should cut and paste the error so that I know what the error is and can fix it. Also, what plugin? What link?

The media library plugin installed ok , there is in the admin room and i see the settings , also the media link button appears in navbar but when I press it all the page goes down with the message database error .

TimberFloorAu
04-20-2010, 07:14 AM
Tellya what I would like as a feature request.

Current Users Viewing the Media Library

zane99
04-20-2010, 08:10 AM
ive installed etc but obviously something is wrong. When i put in a youtube link and press 'retrieve information' it just turns to 'please wait' and then does nothing............

ANGEL OF FIRE
04-20-2010, 08:48 AM
I am using vBulletin's built in cURL clone called vURL. I will try to get it working with non UTF8 characters, but you're going to have to give me an example link for me to work through first.

For example, if I take this clip

http://www.youtube.com/watch?v=TySRnSsJ9mE

I receive such result:

http://img69.imageshack.us/img69/1925/tatut.png

http://img690.imageshack.us/img690/8410/tatu1.png

http://img88.imageshack.us/img88/5494/tatu2.png



.............................

In the version for vB 3.8 I used iconv converter:

$this->videotitle = iconv('UTF-8','cp1251', $title);

Philippe J
04-20-2010, 10:03 AM
How to upgrade from 4.01 version ?
Do we need to install the whole "upload" folder again or just the new XML?

Thanks for the mod !

Webbstre
04-20-2010, 10:37 AM
Oh my god this is exactly what I had been searching for. Definitely going onto my site!

mobe00
04-20-2010, 01:01 PM
I see on your website you have a widget on the frontpage called recent videos. You have the code for us so we can make a similar widget ? :) thx for a great mod

mobe00
04-20-2010, 02:06 PM
My mailbox fills up with vbulletin database error when i installed this mod. What is wrong ?

Database error in vBulletin 4.0.3:

Invalid SQL:

SELECT
userfield.*, usertextfield.*, user.*, UNIX_TIMESTAMP(passworddate) AS passworddate, user.languageid AS saved_languageid,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid,
language.phrasegroup_global AS phrasegroup_global,
language.phrasegroup_media AS phrasegroup_media,
language.options AS lang_options,
language.languagecode AS lang_code,
language.charset AS lang_charset,
language.locale AS lang_locale,
language.imagesoverride AS lang_imagesoverride,
language.dateoverride AS lang_dateoverride,
language.timeoverride AS lang_timeoverride,
language.registereddateoverride AS lang_registereddateoverride,
language.calformat1override AS lang_calformat1override,
language.calformat2override AS lang_calformat2override,
language.logdateoverride AS lang_logdateoverride,
language.decimalsep AS lang_decimalsep,
language.thousandsep AS lang_thousandsep

FROM user AS user
LEFT JOIN userfield AS userfield ON (user.userid = userfield.userid)
LEFT JOIN usertextfield AS usertextfield ON (usertextfield.userid = user.userid) LEFT JOIN language AS language ON (language.languageid = IF(user.languageid = 0, 2, user.languageid))

WHERE user.userid = 1;

MySQL Error : Unknown column 'language.phrasegroup_media' in 'field list'
Error Number : 1054
Request Date : Tuesday, April 20th 2010 @ 01:53:44 PM
Error Date : Tuesday, April 20th 2010 @ 01:53:45 PM
Script : http://xxxxxxxx/media_ajax.php?do=rating
Referrer : http://xxxxxxx/media.php?do=details&mid=3
IP Address : 193.212.211.162
Username :
Classname : vB_Database
MySQL Version :

mobe00
04-20-2010, 02:14 PM
an other error

Database error in vBulletin 4.0.3:

Invalid SQL:

SELECT
userfield.*, usertextfield.*, user.*, UNIX_TIMESTAMP(passworddate) AS passworddate, user.languageid AS saved_languageid,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid,
language.phrasegroup_global AS phrasegroup_global,
language.phrasegroup_media AS phrasegroup_media,
language.options AS lang_options,
language.languagecode AS lang_code,
language.charset AS lang_charset,
language.locale AS lang_locale,
language.imagesoverride AS lang_imagesoverride,
language.dateoverride AS lang_dateoverride,
language.timeoverride AS lang_timeoverride,
language.registereddateoverride AS lang_registereddateoverride,
language.calformat1override AS lang_calformat1override,
language.calformat2override AS lang_calformat2override,
language.logdateoverride AS lang_logdateoverride,
language.decimalsep AS lang_decimalsep,
language.thousandsep AS lang_thousandsep

FROM user AS user
LEFT JOIN userfield AS userfield ON (user.userid = userfield.userid)
LEFT JOIN usertextfield AS usertextfield ON (usertextfield.userid = user.userid) LEFT JOIN language AS language ON (language.languageid = IF(user.languageid = 0, 2, user.languageid))

WHERE user.userid = 1;

MySQL Error : Unknown column 'language.phrasegroup_media' in 'field list'
Error Number : 1054
Request Date : Tuesday, April 20th 2010 @ 03:08:56 PM
Error Date : Tuesday, April 20th 2010 @ 03:08:56 PM
Script : http://xxxxxxxxxxx/media_ajax.php?do=details_pagenav
Referrer : http://xxxxxxxxxxxxx/media.php?do=details&mid=22
IP Address : 95.34.187.106
Username :
Classname : vB_Database
MySQL Version :

Jaxel
04-20-2010, 03:37 PM
Oops, very sorry about the DB errors with the new version... I forgot to change one line of code.

Try the current version, should fix the phrase errors.

Jaxel
04-20-2010, 04:13 PM
I see on your website you have a widget on the frontpage called recent videos. You have the code for us so we can make a similar widget ? :) thx for a great mod

That widget is for the 3.8 version of Video Directory Remixed. I have not made a widget for this version yet.



How to upgrade from 4.01 version ?
Do we need to install the whole "upload" folder again or just the new XML?

Thanks for the mod !

Generally speaking, with modifications, you will want to re-upload everything when an update comes out. I've been updating this mod something like 5 times a day since it came out, so I understand thats quite a lot of work. But its not a lot of files, so it really won't take much. Updates will slow down soon as I believe I have most of the bugs worked out. (Really, most of the bugs are caused by VB itself not acting the way it should)



For example, if I take this clip

http://www.youtube.com/watch?v=TySRnSsJ9mE

New version just uploaded will now process foreign languages correctly. For some odd reason, vBulletin's built in XML parser converts everything to ISO-8859-1 by default. I don't understand why, when EVERY OTHER XML parser in existence converts things to Unicode. Thankfully, they let you force an encoding type with a simple value pass. So I have forced the parser to read every feed as UTF-8.



I can not get admin options.
I gave the necessary user group izinleride What can I do please help.

Please update your VB to 4.0.3

COL NIL SATIS
04-20-2010, 04:45 PM
Jaxel wont the add categories work on 4.0.0?????

IR15H
04-20-2010, 04:48 PM
Nice work! :)

A few bugs/requests after having a quick play with it on my test site;

If Can browse the library is set to No for a user group then hide the navbar from them.
When adding new comments, 10 seems to be the minimum number of characters allowed, irrespective of the setting in ADMIN CP > Settings > Options > Message Posting and Editing Options> Minimum Characters Per Post. If possible, if a user tries to enter a message that is too short then it should say what the minimum length allowed is (rather than just "too short").
Attempting to edit a comment returns an error of "The comment you have entered is far too short and has been rejected." (regardless of comment length).
There is no way to delete a comment (unless this is done via the "Edit" link?).
If you enter a comment it displays the message "Your comment has been posted! It will show up shortly..." which remains there even when the message has already shown up and prevents the user from being able to submit another comment (without refreshing the page).
Error messages (such as "Our records show that this particular media is already in the media library!") don't have 'Back' buttons, so if a user encounters them there's no way to navigate away from it.
The "Report Media" feature doesn't seem to work.
Tagging doesn't follow the minimum value set in ADMIN CP > Settings > Options > Tagging Options > Tag Minimum Length.


They're just a few minor things I found but overall very impressive and thanks for your work :).

mgcom
04-20-2010, 05:25 PM
one of the best mods ever, thanks for the hardwork

mgcom
04-20-2010, 05:44 PM
fuk spoke to soon

everytime i play a vid i get a datebase error emailed to me even though everything is working fine

Database error in vBulletin 4.0.3:

Invalid SQL:

SELECT
userfield.*, usertextfield.*, user.*, UNIX_TIMESTAMP(passworddate) AS passworddate, user.languageid AS saved_languageid,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid,
language.phrasegroup_global AS phrasegroup_global,
language.phrasegroup_media AS phrasegroup_media,
language.options AS lang_options,
language.languagecode AS lang_code,
language.charset AS lang_charset,
language.locale AS lang_locale,
language.imagesoverride AS lang_imagesoverride,
language.dateoverride AS lang_dateoverride,
language.timeoverride AS lang_timeoverride,
language.registereddateoverride AS lang_registereddateoverride,
language.calformat1override AS lang_calformat1override,
language.calformat2override AS lang_calformat2override,
language.logdateoverride AS lang_logdateoverride,
language.decimalsep AS lang_decimalsep,
language.thousandsep AS lang_thousandsep

FROM user AS user
LEFT JOIN userfield AS userfield ON (user.userid = userfield.userid)
LEFT JOIN usertextfield AS usertextfield ON (usertextfield.userid = user.userid) LEFT JOIN language AS language ON (language.languageid = IF(user.languageid = 0, 1, user.languageid))

WHERE user.userid = 1;

MySQL Error : Unknown column 'language.phrasegroup_media' in 'field list'
Error Number : 1054
Request Date : Tuesday, April 20th 2010 @ 07:42:39 PM
Error Date : Tuesday, April 20th 2010 @ 07:42:39 PM

hassshasss
04-20-2010, 06:29 PM
= Originally Posted by hassshasss View Post

I can not get admin options.
I gave the necessary user group izinleride What can I do please help.

Please update your VB to 4.0.3




I have 4.0.3 and so good already.

Stefanus
04-20-2010, 06:54 PM
fuk spoke to soon

everytime i play a vid i get a datebase error emailed to me even though everything is working fine

Hi,
Did you do the product update "product-medialibrary.xml"?
Had a simmilar problem - uploaded the files without the product update, gave me some weird errors, check that you uploaded all the files in the upload folder.

mgcom
04-20-2010, 07:42 PM
Hi,
Did you do the product update "product-medialibrary.xml"?
Had a simmilar problem - uploaded the files without the product update, gave me some weird errors, check that you uploaded all the files in the upload folder.

yeah i uploaded it to the xml folder

xxalexkimxx
04-20-2010, 07:52 PM
Thanks for the update, I think this is the best mod I ever seen!!!

TimberFloorAu
04-20-2010, 08:30 PM
Ok Upgraded.

One suggestion, could you rename your zip and upgrade by new version. With more apt version changes please.

Also, great work btw. Can we now delete all media templates apart from new ones: with prefix 8wr_media

If so: please supply a list of all obsolete templates

Jaxel
04-20-2010, 08:43 PM
================================================== =========
Version 4.0.3 AUTO CREATE AND VERIFICATION FEATURES
================================================== =========

NEW FEATURE: The Auto-Create Thread feature has once again returned!
NEW FEATURE: Tag, Comment, Description and Title verification handlers now follow built in vB4 settings. Each of these fields will follow their related forum setting such as "Tag Minimum Length" or "Tag Maximum Length". If a field should fail to meet the specifications, the error handlers will now explain why it has failed in more detail.
BUG FIX: Fixed information retrieval for feeds with non-Latin sources.
BUG FIX: Fixed phrasegroup error within AJAX functions created in 4.0.2.
BUG FIX: Miscellaneous SQL and template errors no one knew about but me.

Jaxel
04-20-2010, 08:48 PM
Nice work! :)

A few bugs/requests after having a quick play with it on my test site;

If Can browse the library is set to No for a user group then hide the navbar from them.
When adding new comments, 10 seems to be the minimum number of characters allowed, irrespective of the setting in ADMIN CP > Settings > Options > Message Posting and Editing Options> Minimum Characters Per Post. If possible, if a user tries to enter a message that is too short then it should say what the minimum length allowed is (rather than just "too short").
Attempting to edit a comment returns an error of "The comment you have entered is far too short and has been rejected." (regardless of comment length).
There is no way to delete a comment (unless this is done via the "Edit" link?).
If you enter a comment it displays the message "Your comment has been posted! It will show up shortly..." which remains there even when the message has already shown up and prevents the user from being able to submit another comment (without refreshing the page).
Error messages (such as "Our records show that this particular media is already in the media library!") don't have 'Back' buttons, so if a user encounters them there's no way to navigate away from it.
The "Report Media" feature doesn't seem to work.
Tagging doesn't follow the minimum value set in ADMIN CP > Settings > Options > Tagging Options > Tag Minimum Length.


They're just a few minor things I found but overall very impressive and thanks for your work :).
1. I'll look into it
2. Fixed in new version.
3. Editing comments works fine for me, vb4.0.3... what other mods do you have installed?
4. Yes, deleting comments is done through the edit link.
5. This is BY DESIGN. If you look at YouTube, it does a the same thing. You can only comment on a video once without refreshing. This is a deterrent so that people don't try to spam the comments.
6. The error pages use the built in error system for VB. There is no back button because VB itself does not have a back button built in. A user can simply press the back button on their browser, or use the backspace key to go back a page.
7. Reporting media works fine for me, vb4.0.3... what other mods do you have installed?
8. Fixed in new version.


fuk spoke to soon

everytime i play a vid i get a datebase error emailed to me even though everything is working fine
This bug has been fixed in the newest version.


Ok Upgraded.

One suggestion, could you rename your zip and upgrade by new version. With more apt version changes please.

Also, great work btw. Can we now delete all media templates apart from new ones: with prefix 8wr_media

If so: please supply a list of all obsolete templates
If you didn't change your templates, the obsolete templates should have been deleted automatically. Anything without "8wr_media" in the front is obsolete.

Veer
04-20-2010, 08:59 PM
Few suggestion:

"Like" button or "Thanks" button integration on media page
"Add to Favorites" button on media page
"Download This Media" button on media page
"Related Media" on media page
"Most Discussed Media" on Main page of Media Library
"Featured Media" on Main page of Media Library
"Recent Media" forum block

mgcom
04-20-2010, 09:19 PM
update worked a charm cheers

TimberFloorAu
04-20-2010, 09:21 PM
A cracking feature would be:

A submit button on forum post ( for users when creating posts ) to submit the video within that post to the media centre.

Similar system to vbookie, or polls. Where users place a post anyway, and in this case a tick box ( with perhaps category drop down ) allows the user to simultaneously submit the video to media center after they have submitted new post.

With integration of video parsing in vbulletin this could be done one of two ways, as above: or an extra tick box, when a user clicks the video bbcode button in editor.

This would inevitably propogate the media library quicker and make it more intune with the forum.

IR15H
04-20-2010, 09:22 PM
1. I'll look into it
2. Fixed in new version.
3. Editing comments works fine for me, vb4.0.3... what other mods do you have installed?
4. Yes, deleting comments is done through the edit link.
5. This is BY DESIGN. If you look at YouTube, it does a the same thing. You can only comment on a video once without refreshing. This is a deterrent so that people don't try to spam the comments.
6. The error pages use the built in error system for VB. There is no back button because VB itself does not have a back button built in. A user can simply press the back button on their browser, or use the backspace key to go back a page.
7. Reporting media works fine for me, vb4.0.3... what other mods do you have installed?
8. Fixed in new version.


Thanks.
Thanks.
None, unless you count blog/cms. Fresh install of 4.0.3 on local machine. The error message on trying to edit now tells me it's 0 characters long (regardless of actual length).
Okay but can't access it it due to error above.
Okay.
Okay, I'll mention it over on .com then and see what they say about it.
As above, none. What exactly is suppose to happen when you hit Report? Below is what I see from an end user point of view;
http://img219.imageshack.us/img219/521/80853269.png
From an admin point of view, is there a "Reported Media" section?
Thanks.

TimberFloorAu
04-20-2010, 09:24 PM
Please can you tell us what changes have been made ( changelog ) in this version MediaLibrary-0.3.zip to previous version. As we have done many Phrase changes , and each time we have to redo all of these.

I also have in 8wr_media_main this at very top of the template , {vb:raw submitsmall}
This is in addition to the one at the bottom.

svandanam
04-20-2010, 09:58 PM
================================================== =========
Version 4.0.3 AUTO CREATE AND VERIFICATION FEATURES
================================================== =========

NEW FEATURE: The Auto-Create Thread feature has once again returned!
NEW FEATURE: Tag, Comment, Description and Title verification handlers now follow built in vB4 settings. Each of these fields will follow their related forum setting such as "Tag Minimum Length" or "Tag Maximum Length". If a field should fail to meet the specifications, the error handlers will now explain why it has failed in more detail.
BUG FIX: Fixed information retrieval for feeds with non-Latin sources.
BUG FIX: Fixed phrasegroup error within AJAX functions created in 4.0.2.
BUG FIX: Miscellaneous SQL and template errors no one knew about but me.


A small Bug with Auto-create Thread feature...when enabled..it does get created inside the forum , but on the main forum it does not show as there is a new thread .

WassoufTunClub
04-20-2010, 10:05 PM
Few suggestion:

"Like" button or "Thanks" button integration on media page
"Add to Favorites" button on media page
"Download This Media" button on media page
"Related Media" on media page
"Most Discussed Media" on Main page of Media Library
"Featured Media" on Main page of Media Library
"Recent Media" forum block

:up::up::up::up: Good suggestion

TimberFloorAu
04-20-2010, 11:19 PM
Exclude thread id for whats new would be useful.
I have forgotten the code to add

Jaxel
04-20-2010, 11:39 PM
None, unless you count blog/cms. Fresh install of 4.0.3 on local machine. The error message on trying to edit now tells me it's 0 characters long (regardless of actual length).
As above, none. What exactly is suppose to happen when you hit Report? Below is what I see from an end user point of view;
From an admin point of view, is there a "Reported Media" section?

Can you give me the URL that the report page sends you to after you submit? If you are using the SEO slugs, try the MOST RECENT version of .htaccess included in the zip.



Please can you tell us what changes have been made ( changelog ) in this version MediaLibrary-0.3.zip to previous version. As we have done many Phrase changes , and each time we have to redo all of these.

I also have in 8wr_media_main this at very top of the template , {vb:raw submitsmall}
This is in addition to the one at the bottom.
If you open up "product-medialibrary.xml", you'll see that every phrase is timestamped with version numbers. Anything with 4.0.2 or 4.0.3 will need to be updated. You should be using the phrase manager from within your admin CP to update your phrases. It will make it easier for you to find which phrases have been updated.

Also, I have no idea what you said about {vb:raw submitsmall}...



A small Bug with Auto-create Thread feature...when enabled..it does get created inside the forum , but on the main forum it does not show as there is a new thread .
That is very weird. Looks like vb changed something because I'm using the same thread creation datamanager (which is included with vb) that I was using with Video Directory Remixed...



Exclude thread id for whats new would be useful.
I have forgotten the code to add
Again... no idea what you are saying...

TimberFloorAu
04-20-2010, 11:50 PM
Thread does not appear in forumhome view.

Which I can live with.

But does diaplay in What's New link in Navbar

Sorted this part: with &amp;exclude=192 added to whats new search url in Navbar ( where 192 is our forum id )
As it is, it will spam the whats new box up for all members with videos.

your24hourstore
04-21-2010, 01:49 AM
i did a reinstall to the board and did a fresh install on this mod but now i cant get the administrative link to show again, just where does that htaccess go anyways ?

Jaxel
04-21-2010, 02:10 AM
the htaccess goes in your forum root...

If you did a fresh install, remember to check your permissions.

*EDIT* I just did a fresh install of my test forum... everything is working fine.
http://test.8wayrun.com/media.php

willy888
04-21-2010, 05:22 AM
Still not work for me = database error
Probably language problem (greek)

Jaxel
04-21-2010, 05:28 AM
Still not work for me = database error
Probably language problem (greek)
Database error
the plugin installed ok but the link does not work
Can't help you. When you get an error, you should cut and paste the error so that I know what the error is and can fix it. Also, what plugin? What link?

Delilahs
04-21-2010, 05:29 AM
I've gone through all the permissions, but am still unable to see this create category link.

is there a quick fix as everything else works fine

rotor
04-21-2010, 06:05 AM
Installed, voted MOTM and donation made ..... and well worth it I might add :D

This is the best mod that i've installed on VB .... hope you continue to support the VB community with your great mod!!!!!


Thank you very much .... :)

ProFifaLeagues
04-21-2010, 06:17 AM
I've gone through all the permissions, but am still unable to see this create category link.

is there a quick fix as everything else works fine


I think its a bug in lower versions of vbulletin mate so you need to be on vbulletin 4.0.3 min to get it 100% working with the category links etc.
Superb mod tho and worth upgrading vbull to 4.3 just for this!

nishant.soni
04-21-2010, 07:59 AM
I own a forum about hollywood/bollywood movies, celebs. Would this plugin help me creating a picture gallery of all actors?

xxalexkimxx
04-21-2010, 08:28 AM
The URL SEO doesn't work for me since I'm using vBSEO for my forums. Please do check on that.
Thanks

rotor
04-21-2010, 08:39 AM
As my previous post ... this is an excellent mod - thankyou


Is there any chance of some one making a widget for the CMS. I'd have a go myself but I'd like it to be a success :rolleyes:


cheers

mobe00
04-21-2010, 08:48 AM
As my previous post ... this is an excellent mod - thankyou


Is there any chance of some one making a widget for the CMS. I'd have a go myself but I'd like it to be a success :rolleyes:


cheers


I agree a widget for both cms and forumblock/sidepanel would be very great.

your24hourstore
04-21-2010, 09:21 AM
I think its a bug in lower versions of vbulletin mate so you need to be on vbulletin 4.0.3 min to get it 100% working with the category links etc.
Superb mod tho and worth upgrading vbull to 4.3 just for this!
got same deal but im current Admin Control Panel (vBulletin 4.0.3)

first test i did on this it did this also , i went through a few updates and all the sudden it was showing but not this install :<

Delilahs
04-21-2010, 10:03 AM
I'm on version 4.03

What updates did you do Harleyparts?

mobe00
04-21-2010, 11:24 AM
most popular media is not working. it still shows the three first youtube clips i uploaded. And shows only 1 view. I have other clips that been watched 10 times but are not showing up under most popular media ?????

your24hourstore
04-21-2010, 11:24 AM
I'm on version 4.03

What updates did you do Harleyparts?

Oh updates to this mod from the first one to now ive installed them all must have been 8 or 10 of them
seems the 2nd or third update they just appeared below my navbar and they worked. But i did a complete new install on my actual board with this latest zip and cannot get it to show,and yes i have all permissions and htaccess in place
so im baffld, guess i will put them all in one catigory :>

below are mods i have installed maybe one of them is the problem

vBulletin 4.0.3

8WR Media Library 4.0.3 8WayRun.Com - Media Library

Automatic Tagger From Content and Title 4.4.0 Automatically adds tags to according to message content, title and already existing tags in forum.

BBR - Welcome Thread On Register 2.02 Creates a welcome thread when a new user registers

Calendar Search and Download 1.09b Search calendar for events and download results.

Easy Forms 4.0.7 Create Forms without any hassle or fuss. Form list at misc.php?do=forms

EveryWhere Sidebar 1.1.4 This mod will show the sidebar everywhere in the forum if the sidebar is enabled by the administrator

First Post on all pages 1.2 first on all pages

Follow Us 1.4 Puts a follow us on Twitter, Facebook, and Myspace on the forumhome

Hide Version 1 Hide Version

Highlight Threadstarter 3.0.0 Release Candidate 3 Highlights the threadstarter

Inactive User Reminder Emails 2.1.1 Sends emails out to inactive users encouraging them to re-visit the forum

iTrader 2.7.0 Trader Feedback System

Send message to Admin if fail to login to admincp 2.0.0 Send message to Admin if fail to login to admincp

SEOforums.org Fuzzy SEO Booster RC2 1.3.2 SEOforums.org Fuzzy SEO Booster RC2

SEOforums.org SEO Link Replacement 1.2 Replaces words in posts to be a link to the destination of your choice! Handy for affiliate links and SEO friendly ones!

SFS Integration 1.0.0 Integrates the SFS database into the registration functions of vBulletin.

Spiders in WGO 1.0 Show Spiders In Whats Going On Box

vBadvanced CMPS 4.0.0 RC1 vBadvanced Content Management & Portal System

vBH - Add new tabs 1.2 1.2 This plugin adds new tabs to the main navbar

vBulletin Blog 4.0.3 Personal web log, integrated with vBulletin.

vBulletin CMS 4.0.3 Content Management System

VSa - Advanced Registration 2.0.1 VSa - Advanced Registration

VSa - ChatBox 3.1.6 VSa - ChatBox

VSa - Forums Online CountUp 2.0 VSa - Forums Online CountUp

mobe00
04-21-2010, 11:45 AM
what is the link i need to use for the rss feed ????

Webbstre
04-21-2010, 11:58 AM
I've just installed the newest version out at the moment (great work btw, I look forward to seeing this improve). I can't seem to submit anything. I'm testing it by putting a simple link to a .jpg image on my site, but no matter what I do I get "Could not parse media URL."

mobe00
04-21-2010, 12:06 PM
when i try to add the rss feed adress http://www.xxxxxxxxxxx.xx/media.php?do=rss to feedburner i get an error messages. So something is wrong with the RSS feed.

Sorry

This feed does not validate.

*

line 27, column 110: XML parsing error: <unknown>:29:110: not well-formed (invalid token) [help]

... 76a129771397318305b1&amp;do=category&cid=4">- Humor</category>
^

line 27 looks like

# <category domain="http://www.xxxxxxxx.xx/media.php?do=category&cid=6">- Humor</category>

your24hourstore
04-21-2010, 12:38 PM
when i try to add the rss feed adress http://www.xxxxxxxxxxx.xx/media.php?do=rss to feedburner i get an error messages. So something is wrong with the RSS feed.

Sorry

This feed does not validate.

*

line 27, column 110: XML parsing error: <unknown>:29:110: not well-formed (invalid token) [help]

... 76a129771397318305b1&amp;do=category&cid=4">- Humor</category>
^

line 27 looks like

# <category domain="http://www.xxxxxxxx.xx/media.php?do=category&cid=6">- Humor</category>

I didnt even know it did RSS, install over it, didnt work for me but LOL you have more working than i do

I do have it showing up in my site rss (http://www.harleydavidsonpartsforum.com/external.php?type=RSS2)

cindy helmond
04-21-2010, 12:44 PM
great mod !! but can you change the url when its opening create an thread ? now its opening in an new window can you change it in _self window ?
thx !!

mobe00
04-21-2010, 01:36 PM
I didnt even know it did RSS, install over it, didnt work for me but LOL you have more working than i do

I do have it showing up in my site rss (http://www.harleydavidsonpartsforum.com/external.php?type=RSS2)

You use the auto thread create , thats why you see it. the rss link you posted is the standard vbulletin rss link. its an own rss feed for media library only

Delilahs
04-21-2010, 01:40 PM
The Media rss doesn't work on my site either,

21: <pubDate>Wed, 21 Apr 2010 06:22:53 GMT</pubDate>
22: <comments><![CDATA[http://www.delilahsforum.co.uk/forum/media.php?do=details&mid=3#comments]]></comments>
23: <guid isPermaLink="true"><![CDATA[http://www.delilahsforum.co.uk/forum/media.php?do=details&mid=3]]></guid>
24: <category domain="http://www.delilahsforum.co.uk/forum/media.php?do=category&cid=1">- General Media</category>
25: <category domain="http://www.delilahsforum.co.uk/forum/media.php?do=user&uid=4">+ Wily Boos Knees</category>
26: <category domain="http://www.delilahsforum.co.uk/forum/media.php?do=tag&tid=chealseagirl">chealseagirl</category>
27: <category domain="http://www.delilahsforum.co.uk/forum/media.php?do=tag&tid=modettes">modettes</category>

Delilahs
04-21-2010, 01:46 PM
I've just inputted a few medial urls and it is not creating a new thread in the designated forum either.

cindy helmond
04-21-2010, 01:47 PM
dont see the Admin Control Panel (vBulletin 4.0.3) in the media mod any help ?
cant make any caterogies is this an bug ?

Report its not working
thx

Delilahs
04-21-2010, 01:53 PM
it's a bug as quite a few of us cannot get it, so we are awaiting a fix for it.

mobe00
04-21-2010, 01:59 PM
i only get the rss feed to show up in safari. no other browsers. tested safari, firefox, ie and opera

Jaxel
04-21-2010, 03:01 PM
Feeds are working for me in every browser I have... Internet Explorer, Firefox, Chrome and Opera...

http://test.8wayrun.com/media.php?do=rss
http://test.8wayrun.com/media.php?do=rss&cid=10

They also validate on Feedburner... Anyone who is having trouble with the feeds, I want you to try something for me...

First go into your usergroup permissions and make sure UNREGISTERED can view library and view details

If RSS feeds still dont work... open "media_functions_hrefs.php"... find:
return "media" . ($vbulletin->options['media_doseo'] ? "/" : ".php?".$vbulletin->session->vars['sessionurl']);
Replace with...
return "media" . ($vbulletin->options['media_doseo'] ? "/" : ".php?");


Tell me if the feed (and the rest of the mod) work for you after this.

Delilahs
04-21-2010, 03:39 PM
can't find media_functions_href.php

only

media_functions_hrefs.php

and that is a blank file

it may be a good idea to upload the complete file set that you have working and upload it to here with the correct version number

Jaxel
04-21-2010, 03:43 PM
Sorry, I meant media_functions_hrefs.php...

and that file CANT be blank. If that file is blank, then not a single link on your media library would work. Redownload the entire package and reinstall, it sounds like you download a bum zip.

Delilahs
04-21-2010, 03:57 PM
no change, still can't see the category links or view rss

xxalexkimxx
04-21-2010, 04:35 PM
The Media rss doesn't work on my site either,
I think he didn't set full permission all the folder was told to, it happened to me once.

Jaxel
04-21-2010, 04:46 PM
RSS FEED will only work if you have unregistered viewing enabled...

AUTO THREAD will only work if you select a forum and that forum is open.

mobe00
04-21-2010, 05:12 PM
still not working. only shows in safari . in firefox i get no rss feeds..in opera i get xml parser error an tells me the chars marked in red here is wrong. unregistrered user settings are enabled

<category domain="http://www.xxxxxx.xx/media.php?do=category&cid=6">- Humor</category>

when i try the rss feed link in feed burner i only get this error message

The URL does not appear to reference a valid XML file. We encountered the following problem: Error on line 27: The reference to entity "cid" must end with the ';' delimiter.

IR15H
04-21-2010, 05:13 PM
Can you give me the URL that the report page sends you to after you submit? If you are using the SEO slugs, try the MOST RECENT version of .htaccess included in the zip.

Ah ha! The source of the problem is when SEO is set to No. If I set it to yes then I can see both the edit and report pages (although I'm still not sure where the report goes to?). With SEO off then the links are forum/media.php?do=comment&mid=X and forum/media.php?do=details_report&mid=X respectively, which fail.

Jaxel
04-21-2010, 05:15 PM
still not working. only shows in safari . in firefox i get no rss feeds..in opera i get xml parser error an tells me the chars marked in red here is wrong. unregistrered user settings are enabled

<category domain="http://www.xxxxxx.xx/media.php?do=category&cid=6">- Humor</category>

when i try the rss feed link in feed burner i only get this error message

The URL does not appear to reference a valid XML file. We encountered the following problem: Error on line 27: The reference to entity "cid" must end with the ';' delimiter.
Fix for this coming soon... "&cid" should be "&amp;cid".

New version should be coming tommorow, and will be 100% XHTML validated.

Ah ha! The source of the problem is when SEO is set to No. If I set it to yes then I can see both the edit and report pages (although I'm still not sure where the report goes to?). With SEO off then the links are forum/media.php?do=comment&mid=X and forum/media.php?do=details_report&mid=X respectively, which fail.

Aha! You are correct sir! Fix will be coming in 4.0.4. new version will be coming tomorrow because I need to spend time validating these shitty EMBED codes.

mobe00
04-21-2010, 05:34 PM
Keep up the good work jaxel :) We are all very grateful for you effort in this mod.

mobe00
04-21-2010, 05:44 PM
any idea why the most popular media doesnt change ? its the same regardless of how many views the other media files have.

Jaxel
04-21-2010, 05:49 PM
Most popular media is done by COMMENTS, not VIEWS.

zane99
04-21-2010, 06:03 PM
ive installed etc but obviously something is wrong. When i put in a youtube link and press 'retrieve information' it just turns to 'please wait' and then does nothing............


:confused::confused::confused::confused::confused: :confused::confused:

Webbstre
04-21-2010, 09:28 PM
So.... question: After re-reading the description I noticed that this only takes data from other sources, when I'd like to keep most of the media on my own site. I just want to catalogue pictures and videos. Is there anything that will allow me to do this?

your24hourstore
04-21-2010, 10:40 PM
So.... question: After re-reading the description I noticed that this only takes data from other sources, when I'd like to keep most of the media on my own site. I just want to catalogue pictures and videos. Is there anything that will allow me to do this?

heres a search link for that type of mods, looks like a few you may be interested in (https://vborg.vbsupport.ru/search.php?searchid=15462276)

Webbstre
04-21-2010, 11:01 PM
heres a search link for that type of mods, looks like a few you may be interested in (https://vborg.vbsupport.ru/search.php?searchid=15462276)

Unfortunately, I've looked through all of those and they all fail somewhere. I like the design and organization of this mod, I just need a way to include images and videos that are locally hosted.

your24hourstore
04-21-2010, 11:54 PM
Unfortunately, I've looked through all of those and they all fail somewhere. I like the design and organization of this mod, I just need a way to include images and videos that are locally hosted.

im sure he can fix you up, they do custom jobs for peeps here.

Juggernaut
04-22-2010, 12:34 AM
I love this mod :D

TimberFloorAu
04-22-2010, 12:53 AM
I voted it for MOTM.

Just two niggles tho:
The thread submission portion, doesnt register the new thread as a thread in forumhome view.

We need to see who "has watched a video" or current users on this part of the forum.

Juggernaut
04-22-2010, 01:04 AM
Only problem I have is the spanish special characters are not showing in the comments section :)
Nominated for MOTM

Jaxel
04-22-2010, 01:14 AM
RSS errors will be fixed with the new version... this entire mod will soon be 100% XHTML valdiated!

The thread submission portion, doesnt register the new thread as a thread in forumhome view.

Fixed in 4.0.4

Webbstre
04-22-2010, 01:41 AM
im sure he can fix you up, they do custom jobs for peeps here.

That would be awesome, and to be honest I am surprised these options haven't appeared so far. If the author offered a Pro version for sale that included options to upload images and videos (or incorporated images/videos uploaded via ftp) I would buy it. This is the last part of my site that I need to replace before I can switch over from Wordpress :(

Jaxel: If you include these options in a future version you will definitely either get a purchase or a donation from me as soon as my next batch of ad money comes in.

Arved Yagami
04-22-2010, 04:04 AM
I dont quite understand what you are asking. You can change the description when you add the video. You can also click the "edit media" button on the top right of a media's details page... this link will only show up if you have the appropriate permissions, or the media belongs to you.What I tried to say is that I can't edit the media description. When I click submit or save all I get is the original description again, even if i changed it.

My other question is how to use latin chars in the comments?

rotor
04-22-2010, 04:55 AM
What I tried to say is that I can't edit the media description. When I click submit or save all I get is the original description again, even if i changed it.


This also happens on both my sites ..... but it does save into a different directory if I choose that option, and saves any changes in the Title - it's just the comments don't change on edit

Jaxel
04-22-2010, 05:40 AM
That would be awesome, and to be honest I am surprised these options haven't appeared so far. If the author offered a Pro version for sale that included options to upload images and videos (or incorporated images/videos uploaded via ftp) I would buy it. This is the last part of my site that I need to replace before I can switch over from Wordpress :(

Jaxel: If you include these options in a future version you will definitely either get a purchase or a donation from me as soon as my next batch of ad money comes in.

Uploaded via FTP coming in next version. Videos should be uploaded by FTP to customVID directory (default). Then you submit the video to the library using the syntax "internal:videolocation". So if a video is located at customVID/video.mp4, you type in "internal:video.mp4". If a video is located at customVID/folder3/video7.flv (dont forget to CHMOD 777 folder3), you type in "internal:folder3/video7.flv". Of course, since there is no XML or video data, that means the system can't extract a thumbnail, title, description, timecode or tags. It will auto generate a title and description based on the filename, and will give a default thumbnail, but the rest will have to be inputted manually. A nice donation would be appreciated...




This also happens on both my sites ..... but it does save into a different directory if I choose that option, and saves any changes in the Title - it's just the comments don't change on edit

Fixed for next version...

Webbstre
04-22-2010, 05:43 AM
Uploaded via FTP coming in next version. Videos should be uploaded by FTP to customVID/0 directory (default). Then you submit the video to the library using the syntax "internal:videolocation". So if a video is located at customVID/0/video.mp4, you type in "internal:video.mp4". If a video is located at customVID/0/folder3/video7.flv (dont forget to CHMOD 777 folder3), you type in "internal:folder3/video7.flv". Of course, since there is no XML or video data, that means the system can't extract a thumbnail, title, description, timecode or tags. It will auto generate a title and description based on the filename, and will give a default thumbnail, but the rest will have to be inputted manually. A nice donation would be appreciated...

Example: http://test.8wayrun.com/media.php?do=details&mid=1493

Thank you! Any hope for image files to be incorporated as well?

Juggernaut
04-22-2010, 05:53 AM
I keep getting this message when trying to post a video, that's although I do make the description of the videos longer than 5 characters:

The description you have entered is too short (0 characters). Please lengthen your description to at least 5 characters.

xxalexkimxx
04-22-2010, 05:57 AM
dont see the Admin Control Panel (vBulletin 4.0.3) in the media mod any help ?
cant make any caterogies is this an bug ?

Report its not working
thx

On the Media page, you will see the Admin control area option at the Sub menu of the Media page. It is working 100%, really mod, I enjoy it! Except the SEO that didn't work for me because I'm using vBSEO.

xxalexkimxx
04-22-2010, 05:58 AM
I keep getting this message when trying to post a video, that's although I do make the description of the videos longer than 5 characters:

The description you have entered is too short (0 characters). Please lengthen your description to at least 5 characters.

It happened to me, too. Either you have the longer description or leave it blank!

Juggernaut
04-22-2010, 06:01 AM
I still get the message when I leave it blank.
Also my descriptions are not very short, they tend to be a few lines at least.

Jaxel
04-22-2010, 06:06 AM
Thank you! Any hope for image files to be incorporated as well?
Not unless every server on the net suddenly installed FFmpegPHP on their servers, this isn't going to happen. In order to extract information from a video, such as thumbnails, length, tags or any such other ID information, there needs to be the libraries required to do so installed on your server. No server comes with video libraries installed by default; hell, there are still a ton of servers out there that don't have GD2 (image libraries)!

What you can do is click "Edit Details" and at the bottom is the option to upload a custom thumbnail. So you can upload a custom thumbnail for every media in your system. However, be warned, if you ever run the "Rebuild Thumbnail Information" process, it will seek out original thumbnails from the service host. I have written in an exception so that it will SKIP the rebuild of any thumbnails in the INTERNAL service host group; but for other service hosts (like YouTube, etc), this process will overwrite your custom thumbnails.

svandanam
04-22-2010, 06:19 AM
Any chance the thread view on the main forum will be fixed in the next version ?? Also, Is there a way to change the name of the media tab on the nav bar ??

Webbstre
04-22-2010, 06:32 AM
Not unless every server on the net suddenly installed FFmpegPHP on their servers, this isn't going to happen. In order to extract information from a video, such as thumbnails, length, tags or any such other ID information, there needs to be the libraries required to do so installed on your server. No server comes with video libraries installed by default; hell, there are still a ton of servers out there that don't have GD2 (image libraries)!

What you can do is click "Edit Details" and at the bottom is the option to upload a custom thumbnail. So you can upload a custom thumbnail for every media in your system. However, be warned, if you ever run the "Rebuild Thumbnail Information" process, it will seek out original thumbnails from the service host. I have written in an exception so that it will SKIP the rebuild of any thumbnails in the INTERNAL service host group; but for other service hosts (like YouTube, etc), this process will overwrite your custom thumbnails.

Hehe, I should have been more specific: any chance of having image galleries implemented someday in the future? As I mentioned above, if you incorporated images into the galleries and then created an upload script you could definitely sell it as a Pro version.

Also, my site runs on a private server, so if I can make sure FFmpegPHP and GD2 are installed will that help with the thumbnails thing?

Thanks for the responses btw!

Veer
04-22-2010, 07:37 AM
Hehe, I should have been more specific: any chance of having image galleries implemented someday in the future? As I mentioned above, if you incorporated images into the galleries and then created an upload script you could definitely sell it as a Pro version.

Also, my site runs on a private server, so if I can make sure FFmpegPHP and GD2 are installed will that help with the thumbnails thing?

Thanks for the responses btw!
I believe jaxel will provide a guide on how to make your own hosters, so you can make hosters for images. Personally I don't like to have image galleries in media library, but I would love to have audio/mp3 media implemented in the future, so we will be able to make songs albums, playlists etc.

Webbstre
04-22-2010, 07:39 AM
I believe jaxel will provide a guide on how to make your own hosters, so you can make hosters for images. Personally I don't like to have image galleries in media library, but I would love to have audio/mp3 media implemented in the future, so we will be able to make songs albums, playlists etc.

That would be useful too. I'll be patient for advice on how to implement these kinds of things :)

Now to get back to learning stylevars

rolet
04-22-2010, 01:19 PM
I must be doing something wrong, When I hit submit video I get a 404 page, but the thumbnail shows up on my media page, but none of the videos are there when you choose one to click on...I have no idea what I am doing wrong... really none of the links other than the one below work....please help

the link is http://pixiesaver.com/media.php

Delilahs
04-22-2010, 01:21 PM
Try this for your url.

http://www.pixiesaver.com/media.php

unregistered people are unable to see the media files so you have to adjust your permissions if you want us to have a butchers.

rolet
04-22-2010, 01:31 PM
ooops fixed

rolet
04-22-2010, 01:32 PM
so I start with the www, but it takes me to the direct link, and those still don't work... all 404's across everything

Delilahs
04-22-2010, 02:28 PM
go into settings and unselect rewrite.

the top one, search engine, select no and save

rolet
04-22-2010, 03:30 PM
@Delilahs THANK YOU!!!!!!!!!!!!!!!!!!

Jaxel
04-22-2010, 05:24 PM
I believe jaxel will provide a guide on how to make your own hosters, so you can make hosters for images. Personally I don't like to have image galleries in media library, but I would love to have audio/mp3 media implemented in the future, so we will be able to make songs albums, playlists etc.
Okay... small change to the internal hoster... I changed it from "internal" to "localvideo" and "localaudio"

rolet
04-22-2010, 06:06 PM
I am starting to feel stupid here, but how do I create more categories?

ndL
04-22-2010, 06:07 PM
checked it for future use, but now its not quite proffesional, because still needs tweaking.

TimberFloorAu
04-22-2010, 09:11 PM
I am starting to feel stupid here, but how do I create more categories?

See Images

checked it for future use, but now its not quite proffesional, because still needs tweaking.

And coders wonder why they bother with comments like this !

ProFifaLeagues
04-22-2010, 09:39 PM
Ive had a few issues with this mod but am gonna upgrade to 4.03 and see if there ironed out as its superb peice of work!
Keep it going mate as its the best mod ive used on vbull!

Veer
04-22-2010, 10:09 PM
Okay... small change to the internal hoster... I changed it from "internal" to "localvideo" and "localaudio"
Yeah, I see, It is nice.

So is it required to upload audio files locally? I think we can make audio hosters too.

Jaxel
04-22-2010, 10:17 PM
================================================== =========
Version 4.0.4 XHTML VALIDATED AND THUMBNAIL REWRITE
================================================== =========

CHANGE: Thumbnails are now stored in "/customVID/thumbs/" (default) directory.
UPGRADERS: If you are upgrading to 4.0.4 from a previous edition of this mod, you can now delete all the "/customVID/0-9/" thumbnail folders, but should make sure to CHMOD the "/customVID/thumbs/" folder to 777. In addition, upgraders will be required to run the "Rebuild Thumbnail Process" to generate thumbnails in the appropriate folder.
CHANGE: Administrate Services control panel is more streamlined for editing.
CHANGE: This mod is now 100% XHTML certified using the W3C XHTML Validator.
NEW FEATURE: You can now enable/disable the autoplay feature in media.
UPGRADERS: If you are upgrading to 4.0.4 from a previous edition of this mod, you must MANUALLY make changes in your services to handle the new "autoplay" setting. The new Administrate Services page will make this update process easy. Just read THIS POST (https://vborg.vbsupport.ru/showpost.php?p=2022842&postcount=3) and copy and paste the recommended embed codes into the appropriate Edit Service page.
NEW FEATURE: You can now host media locally on your server! Media must be uploaded to the "/customVID/" (default) directory. Then you can add the media to the library by using the codes "localvideo:filename.ext" or "localaudio:filename.ext" as the Media URL on the submit form. You can also add subdirectories inside of "/customVID/"; so if you uploaded "/customVID/intros/SC2intro.mkv", you can add it as a video to your library with "localvideo:intros/SC2intro.mkv". 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.
BUG FIX: Comments and Descriptions will now parse URLs into BBcode.
BUG FIX: Auto-Create Threads will now properly update forum last post times.
BUG FIX: Deleting a media will now properly delete the assosciated thumbnail.
BUG FIX: Fixed report page for those not using Search Engine Optimization.
BUG FIX: Fixed RSS Feeds for those not using Search Engine Optimization.

Juggernaut
04-22-2010, 11:00 PM
I ran the upgrade, but the descriptions of the videos are still not being saved.
Also comments are not being saved :(

Jaxel
04-22-2010, 11:12 PM
Destron, redownload the package and reupload the INCLUDES folder. I made one small change; tell me if that fixes your problems.

Juggernaut
04-22-2010, 11:21 PM
Thank you, I can now comment on the videos, however, when I attempt to edit a comment made, the newly edited comment isn't saved, they can not be edited. Sorry to bother you, but the spanish language characters still don't show in the comments. :)
Last thing the video description edits aren't saved either. :)

Jaxel
04-22-2010, 11:30 PM
Destron, are you using SEO slugs? Are you using the most recent version of the HTACCESS file? It sounds like the QSA error that a fixed a couple of days ago.

Juggernaut
04-22-2010, 11:34 PM
I don't have a SEO plugin, but I have search optimization turned on, also I pasted your htaccess to the bottom of my regular htaccess file. :)
Should I not use the htaccess if I don't have a SEO plugin?

Veer
04-22-2010, 11:38 PM
Upgraded to 0.4 I got these errors when rebuilding thumbnails: Warning: Division by zero in [path]/media/media_functions_builds.php on line 29 Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: gd-jpeg: JPEG library reports unrecoverable error: in [path]/media/media_functions_builds.php on line 37 Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: '[path]/customVID/thumbs/1102.jpg' is not a valid JPEG file in [path]/media/media_functions_builds.php on line 37 Warning: imagecopyresampled(): supplied argument is not a valid Image resource in [path]/media/media_functions_builds.php on line 38 After complete I noticed that MegaVideo thumbnails are not created, what to do now?

Veer
04-22-2010, 11:49 PM
I'm unable to MANUALLY make changes in services, clicking on "Edit Service" does not show anything.

P.S After updating new htaccess its working fine now.

Found another problem when add megavideo it do not auto load video informations like title, desc, length, tags etc

your24hourstore
04-22-2010, 11:50 PM
its working great thanks man semding some cash now:D

Jaxel
04-23-2010, 12:20 AM
Upgraded to 0.4 I got these errors when rebuilding thumbnails: Warning: Division by zero in [path]/media/media_functions_builds.php on line 29 Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: gd-jpeg: JPEG library reports unrecoverable error: in [path]/media/media_functions_builds.php on line 37 Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: '[path]/customVID/thumbs/1102.jpg' is not a valid JPEG file in [path]/media/media_functions_builds.php on line 37 Warning: imagecopyresampled(): supplied argument is not a valid Image resource in [path]/media/media_functions_builds.php on line 38 After complete I noticed that MegaVideo thumbnails are not created, what to do now?

Interesting... can you replace the contents of the plugin "media ADMIN thumb" with the following code and tell me if that works? I don't actually use MegaVideo, and I know their RSS feed is so out of whack it took me a bit just to get it working...

if ($_REQUEST['do'] == 'chooser')
{
print_form_header('misc', 'rebuild_media_thumbs');
print_table_header("Rebuild Media Thumbnails", 2, 0);
print_description_row("This function will rebuild the thumbnails in the media library.");
print_input_row("Number of media to process per cycle", 'perpage', 50);
print_input_row("Media ID Staring Location", 'startat', 0);
print_submit_row("Rebuild Media Thumbnails");
}

if ($_REQUEST['do'] == 'rebuild_media_thumbs')
{
require_once(DIR . '/media/media_functions_builds.php');
require_once(DIR . '/media/media_functions_hrefs.php');

if (empty($vbulletin->GPC['perpage']))
{
$vbulletin->GPC['perpage'] = 50;
}

$finishat = $vbulletin->GPC['startat'] + $vbulletin->GPC['perpage'];

echo '<p>' . "Rebuild Media Thumbnails" . '</p>';

$medias = $vbulletin->db->query_read_slave("
SELECT * FROM " . TABLE_PREFIX . "media as media
LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
WHERE mediaID >= " . $vbulletin->GPC['startat'] . " AND mediaID < $finishat
ORDER BY mediaID
");

while ($media = $vbulletin->db->fetch_array($medias))
{
echo construct_phrase($vbphrase['processing_x'], $media['mediaID']) . " - <a href=\"../" . construct_href_details($media) . "\" target=\"_blank\">" . $media['title'] . "</a><br />"; vbflush();

if ($media['svcThumb'])
{
if (($media['svcName'] == "LocalVideo") || ($media['svcName'] == "LocalAudio"))
{
echo ' - LOCAL MEDIA - SKIPPING THUMBNAIL RECONSTRUCTION<br />';
}
else
{
$media['feed'] = str_replace('{serviceVAL}', $media['serviceVAL'], $media['svcFeed']);
$feed['serviceVAL'] = $media['serviceVAL'];

require_once(DIR.'/includes/class_xml.php');
require_once(DIR.'/includes/class_vurl.php');

$vurl = new vB_vURL($vbulletin);
$vurl->set_option(VURL_URL, $media['feed']);
$vurl->set_option(VURL_USERAGENT, 'vBulletin/' . FILE_VERSION . ' | Media');
$vurl->set_option(VURL_RETURNTRANSFER, 1);
$vurl->set_option(VURL_TIMEOUT, 30);
$result = $vurl->exec();

$xmlobj = new vB_XML_Parser($result);
$arr = $xmlobj->parse();
eval("\$thu = $media[svcThumb]");

if (!$thu)
{
echo '<blockquote><br />ERROR CONSTRUCTING THUMBNAIL<br />
<a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a></blockquote>';
exit;
}

build_thumbnail($thu, $media['mediaID']);
}
}

echo '<img src="/'.$vbulletin->options['media_thumb_dir'].'/thumbs/'.$media['mediaID'].'.jpg"><br />';
vbflush();

$finishat = ($media['mediaID'] > $finishat ? $media['mediaID'] : $finishat);
}

if ($checkmore = $vbulletin->db->query_first("SELECT mediaID FROM " . TABLE_PREFIX . "media WHERE mediaID >= $finishat LIMIT 1"))
{
print_cp_redirect("misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&startat=$finishat&pp=" . $vbulletin->GPC['perpage']);
echo "<p><a href=\"misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&amp;startat=$finishat&amp;pp=" . $vbulletin->GPC['perpage'] . "\">" . $vbphrase['click_here_to_continue_processing'] . "</a></p>";
}

define('CP_REDIRECT', 'misc.php');
print_stop_message('updated_threads_successfully') ;
}

Veer
04-23-2010, 12:29 AM
Interesting... can you replace the contents of the plugin "media ADMIN thumb" with the following code and tell me if that works? I don't actually use MegaVideo, and I know their RSS feed is so out of whack it took me a bit just to get it working...

if ($_REQUEST['do'] == 'chooser')
{
print_form_header('misc', 'rebuild_media_thumbs');
print_table_header("Rebuild Media Thumbnails", 2, 0);
print_description_row("This function will rebuild the thumbnails in the media library.");
print_input_row("Number of media to process per cycle", 'perpage', 50);
print_input_row("Media ID Staring Location", 'startat', 0);
print_submit_row("Rebuild Media Thumbnails");
}

if ($_REQUEST['do'] == 'rebuild_media_thumbs')
{
require_once(DIR . '/media/media_functions_builds.php');
require_once(DIR . '/media/media_functions_hrefs.php');

if (empty($vbulletin->GPC['perpage']))
{
$vbulletin->GPC['perpage'] = 50;
}

$finishat = $vbulletin->GPC['startat'] + $vbulletin->GPC['perpage'];

echo '<p>' . "Rebuild Media Thumbnails" . '</p>';

$medias = $vbulletin->db->query_read_slave("
SELECT * FROM " . TABLE_PREFIX . "media as media
LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
WHERE mediaID >= " . $vbulletin->GPC['startat'] . " AND mediaID < $finishat
ORDER BY mediaID
");

while ($media = $vbulletin->db->fetch_array($medias))
{
echo construct_phrase($vbphrase['processing_x'], $media['mediaID']) . " - <a href=\"../" . construct_href_details($media) . "\" target=\"_blank\">" . $media['title'] . "</a><br />"; vbflush();

if ($media['svcThumb'])
{
if (($media['svcName'] == "LocalVideo") || ($media['svcName'] == "LocalAudio"))
{
echo ' - LOCAL MEDIA - SKIPPING THUMBNAIL RECONSTRUCTION<br />';
}
else
{
$media['feed'] = str_replace('{serviceVAL}', $media['serviceVAL'], $media['svcFeed']);
$feed['serviceVAL'] = $media['serviceVAL'];

require_once(DIR.'/includes/class_xml.php');
require_once(DIR.'/includes/class_vurl.php');

$vurl = new vB_vURL($vbulletin);
$vurl->set_option(VURL_URL, $media['feed']);
$vurl->set_option(VURL_USERAGENT, 'vBulletin/' . FILE_VERSION . ' | Media');
$vurl->set_option(VURL_RETURNTRANSFER, 1);
$vurl->set_option(VURL_TIMEOUT, 30);
$result = $vurl->exec();

$xmlobj = new vB_XML_Parser($result);
$arr = $xmlobj->parse();
eval("\$thu = $media[svcThumb]");

if (!$thu)
{
echo '<blockquote><br />ERROR CONSTRUCTING THUMBNAIL<br />
<a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a></blockquote>';
exit;
}

build_thumbnail($thu, $media['mediaID']);
}
}

echo '<img src="/'.$vbulletin->options['media_thumb_dir'].'/thumbs/'.$media['mediaID'].'.jpg"><br />';
vbflush();

$finishat = ($media['mediaID'] > $finishat ? $media['mediaID'] : $finishat);
}

if ($checkmore = $vbulletin->db->query_first("SELECT mediaID FROM " . TABLE_PREFIX . "media WHERE mediaID >= $finishat LIMIT 1"))
{
print_cp_redirect("misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&startat=$finishat&pp=" . $vbulletin->GPC['perpage']);
echo "<p><a href=\"misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=rebuild_media_thumbs&amp;startat=$finishat&amp;pp=" . $vbulletin->GPC['perpage'] . "\">" . $vbphrase['click_here_to_continue_processing'] . "</a></p>";
}

define('CP_REDIRECT', 'misc.php');
print_stop_message('updated_threads_successfully') ;
}
Okay, give me the link to retry from the custom position because I don't wanna rebuild all thumbnails again, these are 1000+ you know :D

<a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a>

rotor
04-23-2010, 01:16 AM
Upgrade to .4 went fine :D

rebuild all ok :D

comment edit working perfectly :D

all good ..... I guess I'm all smiles lol :D :D :D


Thx for the mod .... it's great!!

Jaxel
04-23-2010, 01:34 AM
Okay, give me the link to retry from the custom position because I don't wanna rebuild all thumbnails again, these are 1000+ you know :D

<a href="misc.php?' . $vbulletin->session->vars['sessionurl'] . 'do=rebuild_media_thumbs&startat=' . $media['mediaID'] . '&pp=' . $vbulletin->GPC['perpage'] . '">click here to retry from this position</a>

You can enter a starting position on the form to start the rebuild process.

Veer
04-23-2010, 01:44 AM
You can enter a starting position on the form to start the rebuild process.
oh yes, got it working now.

thanks :)

Juggernaut
04-23-2010, 01:51 AM
I'm running vBulletin 4.0.3, but the video description editing is not saving the edits :(

Jaxel
04-23-2010, 02:37 AM
I'm running vBulletin 4.0.3, but the video description editing is not saving the edits :(
You're the only one having this problem... I can't reproduce it.

Juggernaut
04-23-2010, 02:52 AM
Thank you for trying, maybe I'll try a clean install of the latest version and see if that helps. :D

TimberFloorAu
04-23-2010, 03:02 AM
Note on Navbar link reads : media.php? instead of media.php

Pedantic but fix would be good.

freni32
04-23-2010, 04:39 AM
I have VBSEO so the url-rewrites I want arent working so have to go to the old fashioned thread that doesnt have the keywords in the url, wish someone had a fix for vbseo

j?rgk
04-23-2010, 04:45 AM
Hello,

we have Problems with German Charakters " ö ä ü ß " they will not show correct in the comments and in the description of the videos!

I hope you can fix this!

Great Mod. Thank you

Jaxel
04-23-2010, 04:45 AM
I have VBSEO so the url-rewrites I want arent working so have to go to the old fashioned thread that doesnt have the keywords in the url, wish someone had a fix for vbseo
Ask on the VBSEO forums. Honestly, if you have an apache server and VB4, you shouldn't be using VBSEO. VBSEO does rewrites through code execution, instead of actual apache rewrite rules. Additional code execution will only bog your server down, while apache rewrite is pretty much instant and doesn't add much of any additional server load.

Delilahs
04-23-2010, 04:48 AM
done the upgrade and still unable to create more categories.

Juggernaut
04-23-2010, 05:13 AM
I uninstalled everything and re-installed the mod, but I still have the same problem.
Can't use spanish characters nor can I edit the video descriptions. :(

mobe00
04-23-2010, 06:29 AM
ok jaxel now the rss feed works, but something is wrong after you did the thumbnail edit in customvid 0-9 over to customvid/thumbs.. the images links in rss feed doesnt work cause the links is looking in customvid/0-9 / filename... i did all the update counters on thumbs and media info. But still the same result..also on a newly posted video

here is an example on the rss feed image link

http://www.xxxx.xx/customVID/1/ArAlwupRy6c.jpg

cause when i go into Media and right click on the image and choose copy image url this is the url i get which is correct
http://www.xxxxxx.xx/customVID/thumbs/69.jpg

how can i fix that the links inn rss feed look like this http://www.xxxx.xx/customVID/thumbs/69.jpg instead ???

Arcania
04-23-2010, 09:06 AM
dont see the Admin Control Panel (vBulletin 4.0.3) in the media mod any help ?
cant make any caterogies is this an bug ?

Report its not working
thx

On the Media page, you will see the Admin control area option at the Sub menu of the Media page. It is working 100%, really mod, I enjoy it! Except the SEO that didn't work for me because I'm using vBSEO.

I have the same Problem. All permissions are set. When I enter the URL (ex. media.php?do=admin_host_edit&sid=$1) it works. But no Admin Control Area is shown...

Gn_Snake
04-23-2010, 10:34 AM
Hi,
i have error during import plugin
?Altering Table usergroup ...Done!
?Creating Table HG_media ... Done!
?Creating Table HG_media_category ... Done!
?-- Adding Category Row General ...
Warning: require_once([path]/includes/class_dm_media_category.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/functions.php on line 115

Fatal error: require_once() [function.require]: Failed opening required '/var/www/virtual/hardwaregame.org/htdocs/forum/includes/class_dm_media_category.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/virtual/hardwaregame.org/htdocs/forum/includes/functions.php on line 115


:confused:

Rahstyles
04-23-2010, 10:58 AM
Can sombody install this for me please?

your24hourstore
04-23-2010, 01:03 PM
Can sombody install this for me please?

have you tried already to install it?

your24hourstore
04-23-2010, 01:15 PM
did a complete reinstall and got the product working , and i did install this product first, then started adding in others. the only thing that isn't working now is google adsense ads don't appear. wondered if anyone else is seeing this or using the adsence program?

Solved this. wasnt an issue with this mod, it was VB, they neglected to ad the adsence file to the most recent download of 4.0.3.
So cause a problem with new installs. Also there is a new patch for that version 4.0.3pl1
I find the easiest way to do them is
1. download the new file
2. unzip it and delete the images file, favicon. ico, and install,php
3 zip it back up and upload it to the appropriate files
and run http://yourdomain.com/yourforum/install/upgrade.php
your done

Delilahs
04-23-2010, 01:58 PM
could it be that the people who have google adsense cant get the admin links and vice versa?

I'll disable some forum ads to see what happens this end

edit; just tried it and no difference.

kefallon
04-23-2010, 02:41 PM
Originally Posted by cindy helmond View Post

dont see the Admin Control Panel (vBulletin 4.0.3) in the media mod any help ?
cant make any caterogies is this an bug ?

Report its not working
thx

Originally Posted by xxalexkimxx View Post

On the Media page, you will see the Admin control area option at the Sub menu of the Media page. It is working 100%, really mod, I enjoy it! Except the SEO that didn't work for me because I'm using vBSEO.

I have the same Problem. All permissions are set. When I enter the URL (ex. media.php?do=admin_host_edit&sid=$1) it works. But no Admin Control Area is shown...

Exactly the same issue,have not got VBSEO, anyone got a fix???

By_X1903
04-23-2010, 02:45 PM
Turkish char. problem?

What happened...

stwan
04-23-2010, 03:11 PM
How to update the Video-Directory 1.3.0 in the Media Library 4.0.4?

Jaxel
04-23-2010, 03:12 PM
For anyone who is having problems getting links to appear with permissions in the navbar... there is a "work-a-round" you can do. It will enable the links for EVERYBODY (they will be stopped with a permission error if they can't use the links, so security is still intact). I believe this problem is an error with VB itself not handling permissions in plugins on some forums. Go into the plugin: "media NAVTAB":

Find the line:
$perms = media_permissions();


REPLACE with:
$perms['submit'] = true;
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;

Jaxel
04-23-2010, 03:18 PM
It appears the language issues are only with AJAX... I'm looking into it...

mobe00
04-23-2010, 03:34 PM
ok jaxel now the rss feed works, but something is wrong after you did the thumbnail edit in customvid 0-9 over to customvid/thumbs.. the images links in rss feed doesnt work cause the links is looking in customvid/0-9 / filename... i did all the update counters on thumbs and media info. But still the same result..also on a newly posted video

here is an example on the rss feed image link

http://www.xxxx.xx/customVID/1/ArAlwupRy6c.jpg

cause when i go into Media and right click on the image and choose copy image url this is the url i get which is correct
http://www.xxxxxx.xx/customVID/thumbs/69.jpg

how can i fix that the links inn rss feed look like this http://www.xxxx.xx/customVID/thumbs/69.jpg instead ???

What about this problem , can you solve this one ? :)

kefallon
04-23-2010, 03:54 PM
Worked at treat, THANKS

Delilahs
04-23-2010, 04:16 PM
Jaxel, that's fixed it. thanks

fluidswork
04-23-2010, 04:24 PM
Great addition to vb .....

ProFifaLeagues
04-23-2010, 04:41 PM
For anyone who is having problems getting links to appear with permissions in the navbar... there is a "work-a-round" you can do. It will enable the links for EVERYBODY (they will be stopped with a permission error if they can't use the links, so security is still intact). I believe this problem is an error with VB itself not handling permissions in plugins on some forums. Go into the plugin: "media NAVTAB":

Find the line:
$perms = media_permissions();


REPLACE with:
$perms['submit'] = true;
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;


Works superb now thank you!

Delilahs
04-23-2010, 04:43 PM
Jaxel, I'm having trouble parsing the Veoh feeds, can you tell me what I need to use from the following url please?

http://www.veoh.com/search/videos/q/stoke+city#watch%3Dv19614098RApHrbDQ

Jaxel
04-23-2010, 04:51 PM
I just uploaded a new version, fixes a variety of problems. No need to re-install, just upload the files.

Jaxel, I'm having trouble parsing the Veoh feeds, can you tell me what I need to use from the following url please?

http://www.veoh.com/search/videos/q/stoke+city#watch%3Dv19614098RApHrbDQ
Thats because that URL is NOT a URL to a Veoh Video. That is a SEARCH RESULT URL. On that page, scroll down to the text box that says "LINK" and use that URL.


What about this problem , can you solve this one ? :)
Fixed in new version, no need to re-install, just upload the files.


Turkish char. problem?

What happened...
I uninstalled everything and re-installed the mod, but I still have the same problem.
Can't use spanish characters nor can I edit the video descriptions. :(

After extensive testing, I have figured out the language problems. Language problems in SUBMISSIONS are fixed in the new version, no need to re-install, just upload the files.

Language problems in OTHER places, such as comments are THE FAULT OF VBULLETIN ITSELF. Don't worry! I will tell you how to fix it! Go into your Admin Control Panel and head to the section called "Languages & Phrases > Language Manager". Then click the EDIT SETTINGS link for your language. See I have programmed this mod to integrate directly into the settings of your VB; this way it is uniform. However, the problem is by default, vBulletin does not use the UTF-8 language charset, even though it SHOULD. In the section marked "HTML Character Set", this SHOULD be UTF-8 and if you are having language problems, most likely it is set to ISO-8859-1 (vb default, for english languages only).

Example of my test forum using Russian Language after switching to UTF-8:
http://test.8wayrun.com/media/m1493--tatu

The only issue you will have with THIS mod is with SEO slugs, you can't have foreign characters in a URL.

Another issue you will have is with VB itself and the RSS Feed Manager. If you are using VB's RSS Feed Manager to automatically post threads from feeds, and the feed you are pulling from is non-english; then it won't convert the text to UTF-8. For some odd reason, VB's built in RSS parser always defaults to ISO-8859-1 (very poor programming). Someone should report this as a bug, but I have a feeling that they will say its "by design" and never change it.

http://www.vbulletin.com/forum/project.php?issueid=37806

Delilahs
04-23-2010, 04:55 PM
Thanks Jaxel, that works a treat ;)

Marked as installed and nominated for MOTM

COL NIL SATIS
04-23-2010, 05:42 PM
Also Nominated for MOTM ..Jaxel absolute legend man

xTREKKERx
04-23-2010, 08:06 PM
great mod, all working fine apart from???

there is no thumbnail in the created post, just a broken link?
i believe i have done everything in the instructions.....
the thumbnail file is created as per instruction.
customVID/thumbs

but when i look at the broken link where the thumb should be, it says this.
customVID/1/TpLd2KT32Gg.jpg

any ideas?

all set to 777.

rotor
04-23-2010, 08:23 PM
great mod, all working fine apart from???

there is no thumbnail in the created post, just a broken link?
i believe i have done everything in the instructions.....
the thumbnail file is created as per instruction.
customVID/thumbs

but when i look at the broken link where the thumb should be, it says this.
customVID/1/TpLd2KT32Gg.jpg

any ideas?

all set to 777.

Same .... since upgrading to version 4.0.4

mobe00
04-23-2010, 09:01 PM
a question . when i use rssfeedreader.com for example and do an rss feeder from google news..the rss feed shows the actual pictures as thumbnail in the rss feed. When i use the rss feed link to media library it either just shows the link to the image, an icon or nothing. Is there an image code that need to be put in the rss feed code for media library ??

TimberFloorAu
04-23-2010, 09:07 PM
Jaxel you are a STAR !!!

Ever since upgrading to vb4 we have had issues with our character set, and never thought to set it to utf-8

Pages seem to even load faster now lol./
Thanks

Delilahs
04-24-2010, 01:46 AM
Jaxel, can you fix the code so that the 'auto create thread' is ticked by default?