vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - 8WayRun.Com - Media Library (https://vborg.vbsupport.ru/showthread.php?t=240677)

hotslot 05-03-2010 01:32 AM

Quote:

Originally Posted by harleyparts (Post 2030825)
let me get this straight first of all. somebody wanted this code to open the threads on auto post so people could reply, thats what this is for, and you wont find it in styles and templates because its in a PHP file called /media/media_submit.php and its in your server not styles

if you are the one who asked me, tell me so i don't have to go back and read every post to see who wanted this LOL

Thank You Harley!!!

your24hourstore 05-03-2010 01:43 AM

Quote:

Originally Posted by synseal (Post 2030756)
Just asking again if anyone has a fix for my previous post thanks.

Quote:

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.
might see if this Applys to your setup

your24hourstore 05-03-2010 01:44 AM

Quote:

Originally Posted by hotslot (Post 2030883)
Thank You Harley!!!

I think im going to leave mine open too:p

your24hourstore 05-03-2010 01:47 AM

heres the link come on we know this is a hands down clincher for MOTM so go here and vote for it https://vborg.vbsupport.ru/showthrea...24#post2029924

freni32 05-03-2010 02:32 AM

This finally works on vbseo thanks to their support team on vbseo, brian thank you!!! If you have vbseo install like it shows and turn seo plugin on, then in your forum root you need this to be your .htaccess file (change my domain to your domain)

# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On

# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
#RewriteBase /

#RewriteCond %{HTTP_HOST} !^www\.radarreviews\.org
#RewriteRule (.*) http://www.radarreviews.org/forums/$1 [L,R=301]

RewriteCond %{REQUEST_URI} !(media/|admincp/|modcp/|cron|vbseo_sitemap|vbseocp|login)

# Media Library
ReWriteRule ^media/m([0-9]+).*/tags$ media.php?do=tags_edit&mid=$1
ReWriteRule ^media/m([0-9]+).*/edit$ media.php?do=details_edit&mid=$1
ReWriteRule ^media/m([0-9]+).*/report$ media.php?do=report&mid=$1
ReWriteRule ^media/m([0-9]+).*/c(\d+)$ media.php?do=comment_edit&cmt=$2
ReWriteRule ^media/m([0-9]+).* media.php?do=details&mid=$1
ReWriteRule ^media/c([0-9]+).* media.php?do=category&cid=$1
ReWriteRule ^media/u([0-9]+).* 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

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(media/|admincp/|modcp/|cron|vbseo_sitemap)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]

Jaxel 05-03-2010 03:56 AM

1 Attachment(s)
Okay... for the importing of new services in the upcoming version, I am bringing back the XML file method. Services will still be database driven, but the ADDING of new services will be XML driven. This makes it easier for people to update their services, as well as add new services.

Attached are some sample XML files. I made it as simple as possible.

I have also added the ability to DELETE services.

hotslot 05-03-2010 03:57 AM

I found out why Google is not liking this program. They want Video-specific tags implemented within each video.

Code Junkies!! We need ya bad on this one! :up:

Here is a sample I was provided:

Code:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url>
  <loc>http://www.example.com/videos/some_video_landing_page.html</loc>
    <video:video>   
      <video:content_loc>http://www.site.com/video123.flv</video:content_loc>
      <video:player_loc allow_embed="yes" autoplay="ap=1">http://www.site.com/videoplayer.swf?video=123</video:player_loc>
      <video:thumbnail_loc>http://www.example.com/thumbs/123.jpg</video:thumbnail_loc>
      <video:title>Grilling steaks for summer</video:title> 
      <video:description>Get perfectly done steaks every time</video:description>
      <video:rating>4.2</video:rating>
      <video:view_count>12345</video:view_count>
      <video:publication_date>2007-11-05T19:20:30+08:00.</video:publication_date>
      <video:expiration_date>2009-11-05T19:20:30+08:00.</video:expiration_date>
      <video:tag>steak</video:tag>
      <video:tag>meat</video:tag>
      <video:tag>summer</video:tag>
      <video:category>Grilling</video:category>
      <video:family_friendly>yes</video:family_friendly>
      <video:duration>600</video:duration>
    </video:video>
</url>
</urlset>


flightsim 05-03-2010 04:51 AM

Hello
I have a problem....
All extern Hosters like youtube etc. works great....
when i upload a locavideo is that also no problem... i can see the video with the direct link. When i want to see the video in the system and click on the thumb is this loading... and loading... and loading... but ist never starting. what is wrong?

balkanboy 05-03-2010 05:39 AM

Quote:

Originally Posted by Jaxel (Post 2026017)
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:
Code:

$perms = media_permissions();

REPLACE with:
Code:

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


Not working mate cannot find the line within 8WR_media_NAVTAB

Just cannot admin the plugin which is no use for me at this moment till i can :(

Uninstalled started to get on my nervs runing VB 4.3 PL1....

kawe 05-03-2010 08:12 AM

i have video on my root folder
how to add it ?


All times are GMT. The time now is 01:57 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02236 seconds
  • Memory Usage 1,757KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete