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)

K4GAP 12-14-2011 01:56 AM

Quote:

Originally Posted by velosteraddict (Post 2277567)
I am the Admin. When I click the 'Media' tab after installation I get the following vB message:

"<User>, you do not have permission to access this page. This could be due to one of several reasons: "?

How do I explicitly 'Set my usergroup permissions and media library settings in my administration control panel.' so I can view Media?

In User Groups you can set all the options for whatever access to you want for any user group.

Gamelobby 12-14-2011 02:18 AM

Anyone know of a way to fix the "Known Bug" with VSA products, BUT NOT have the Navtab showing.?

Right now i have to enable the tab to access the admin options, then disable the tab when i'm done. lol


I'm guessing i could change this, but no idea what to change it to. :)
Code:

$template_hook['navtab_middle'] .= $templater->render();

MotMann 12-14-2011 07:52 AM

Quote:

Originally Posted by chatpalace24 (Post 2277398)
you need to insert the Rules from the Package. you copy the first lines but where the rules ?

Here my lines out of my .htaccess :
After RewriteEngine on put this :
PHP Code:

Options +FollowSymlinks 

before #forum put this :
PHP Code:

# Media Library
ReWriteRule ^media/m(\d+).*/tagsmedia.php?do=tags_edit&mid=$[QSA]
ReWriteRule ^media/m(\d+).*/editmedia.php?do=details_edit&mid=$[QSA]
ReWriteRule ^media/m(\d+).*/reportmedia.php?do=report&mid=$[QSA]
ReWriteRule ^media/m(\d+).*/c(\d+)$ media.php?do=comment_edit&cmt=$[QSA]
ReWriteRule ^media/m(\d+).*/p(\d+).*$ media.php?do=details&mid=$1&pid=$[QSA]
ReWriteRule ^media/m(\d+).* media.php?do=details&mid=$[QSA]
ReWriteRule ^media/p(\d+).*/editmedia.php?do=playlist_edit&pid=$[QSA]
ReWriteRule ^media/p(\d+).* media.php?do=playlist&pid=$[QSA]
ReWriteRule ^media/c(\d+).* media.php?do=category&cid=$[QSA]
ReWriteRule ^media/u(\d+).* media.php?do=user&uid=$[QSA]
ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$[QSA]
ReWriteRule ^media/results/(.*) media.php?do=results&query=$[QSA]
ReWriteRule ^media/advresults/(.*) media.php?do=advresults&query=$[QSA]
ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$[QSA]
ReWriteRule ^media/browse.* media.php?do=browse [QSA]
ReWriteRule ^media/search.* media.php?do=search [QSA]
ReWriteRule ^media/random.* media.php?do=random [QSA]
ReWriteRule ^media/submit.* media.php?do=submit [QSA]
ReWriteRule ^media/tagcloud.* media.php?do=tagcloud [QSA]
ReWriteRule ^media/playlists.* media.php?do=playlists [QSA]
ReWriteRule ^media/pcreate.* media.php?do=playlists_create [QSA]
ReWriteRule ^media/pmine.* media.php?do=playlists_mine [QSA]
ReWriteRule ^media/favorites.* media.php?do=favorites [QSA]
ReWriteRule ^media/subscriptions.* media.php?do=subscriptions [QSA]
ReWriteRule ^media/admin/edit/s(\d+).* media.php?do=admin_host_edit&sid=$[QSA]
ReWriteRule ^media/admin/delete/s(\d+).* media.php?do=admin_host_delete&sid=$[QSA]
ReWriteRule ^media/admin/export/s(\d+).* media.php?do=admin_host_export&sid=$[QSA]
ReWriteRule ^media/admin/(\w+).* media.php?do=admin_$[QSA]

# Media Library from Video Directory
RewriteCond %{QUERY_STRING} do=viewdetails&videoid=(\d+)
RewriteRule ^video\.phpmedia.php?do=details&mid=%1
RewriteCond 
%{QUERY_STRINGviewcategory&categoryid=(\d+)
RewriteRule ^video\.phpmedia.php?do=category&cid=%1
RewriteCond 
%{QUERY_STRINGviewuser&userid=(\d+)
RewriteRule ^video\.phpmedia.php?do=user&uid=%1
RewriteCond 
%{QUERY_STRINGviewtag&tag=(.*)
RewriteRule ^video\.phpmedia.php?do=tag&tid=%1
ReWriteRule 
^video\.phpmedia.php 

Save it and thats it.


Ok, thanks for help :)
I do that but it's not work. If i switch SEO of, than i can see the videos.
And i don't see the Code in the Package from the Mod. From where you get these codes?

Here my new htacess:

PHP Code:

## Charset
AddDefaultCharset Off 

## ETags
FileETag None

## Expires
<ifModule mod_expires.c>
    
ExpiresActive On
    ExpiresDefault 
"access plus 1 seconds"
    
ExpiresByType text/html "access plus 1 seconds"
    
ExpiresByType image/gif "access plus 259200000 seconds"
    
ExpiresByType image/jpeg "access plus 259200000 seconds"
    
ExpiresByType image/png "access plus 259200000 seconds"
    
ExpiresByType text/css "access plus 60480000 seconds"
    
ExpiresByType text/javascript "access plus 21600000 seconds"
    
ExpiresByType application/x-javascript "access plus 21600000 seconds"
</ifModule>

##Compression##
<ifmodule mod_headers.c>
    <
ifmodule mod_deflate.c>
        
AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript
        BrowserMatch 
^Mozilla/4 gzip-only-text/html
        BrowserMatch 
^Mozilla/4\.0[678no-gzip
        BrowserMatch 
\bMSIE !no-gzip !gzip-only-text/html
    
</ifmodule>
</
ifmodule>

## Rewrites##
RewriteEngine on
Options 
+FollowSymlinks 
RewriteCond 
%{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule 
^.*$ - [NC,L]

# Media Library 
ReWriteRule ^media/m(d+).*/tagsmedia.php?do=tags_edit&mid=$[QSA
ReWriteRule ^media/m(d+).*/editmedia.php?do=details_edit&mid=$[QSA
ReWriteRule ^media/m(d+).*/reportmedia.php?do=report&mid=$[QSA
ReWriteRule ^media/m(d+).*/c(d+)$ media.php?do=comment_edit&cmt=$[QSA
ReWriteRule ^media/m(d+).*/p(d+).*$ media.php?do=details&mid=$1&pid=$[QSA
ReWriteRule ^media/m(d+).* media.php?do=details&mid=$[QSA
ReWriteRule ^media/p(d+).*/editmedia.php?do=playlist_edit&pid=$[QSA
ReWriteRule ^media/p(d+).* media.php?do=playlist&pid=$[QSA
ReWriteRule ^media/c(d+).* media.php?do=category&cid=$[QSA
ReWriteRule ^media/u(d+).* media.php?do=user&uid=$[QSA
ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$[QSA
ReWriteRule ^media/results/(.*) media.php?do=results&query=$[QSA
ReWriteRule ^media/advresults/(.*) media.php?do=advresults&query=$[QSA
ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$[QSA
ReWriteRule ^media/browse.* media.php?do=browse [QSA
ReWriteRule ^media/search.* media.php?do=search [QSA
ReWriteRule ^media/random.* media.php?do=random [QSA
ReWriteRule ^media/submit.* media.php?do=submit [QSA
ReWriteRule ^media/tagcloud.* media.php?do=tagcloud [QSA
ReWriteRule ^media/playlists.* media.php?do=playlists [QSA
ReWriteRule ^media/pcreate.* media.php?do=playlists_create [QSA
ReWriteRule ^media/pmine.* media.php?do=playlists_mine [QSA
ReWriteRule ^media/favorites.* media.php?do=favorites [QSA
ReWriteRule ^media/subscriptions.* media.php?do=subscriptions [QSA
ReWriteRule ^media/admin/edit/s(d+).* media.php?do=admin_host_edit&sid=$[QSA
ReWriteRule ^media/admin/delete/s(d+).* media.php?do=admin_host_delete&sid=$[QSA
ReWriteRule ^media/admin/export/s(d+).* media.php?do=admin_host_export&sid=$[QSA
ReWriteRule ^media/admin/(w+).* media.php?do=admin_$[QSA

# Media Library from Video Directory 
RewriteCond %{QUERY_STRING} do=viewdetails&videoid=(d+) 
RewriteRule ^video.phpmedia.php?do=details&mid=%
RewriteCond 
%{QUERY_STRINGviewcategory&categoryid=(d+) 
RewriteRule ^video.phpmedia.php?do=category&cid=%
RewriteCond 
%{QUERY_STRINGviewuser&userid=(d+) 
RewriteRule ^video.phpmedia.php?do=user&uid=%
RewriteCond 
%{QUERY_STRINGviewtag&tag=(.*) 
RewriteRule ^video.phpmedia.php?do=tag&tid=%
ReWriteRule 
^video.phpmedia.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]

###MVC##
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$[QSA]


php_value max_execution_time 120

# Downloads II gr??e
php_value upload_max_filesize 30M
php_value post_max_size 30M 


velosteraddict 12-14-2011 11:57 AM

Quote:

Originally Posted by GaryT (Post 2277573)
In User Groups you can set all the options for whatever access to you want for any user group.

Thanks GaryT, but nowhere in User Groups > Forum Permissions or User Groups > Administrator Permissions does it list 8wayrun or the Media tab. And, as Admin, one would think I would have default permissions.

Any ideas?

fahris 12-14-2011 01:22 PM

Quote:

Originally Posted by Elenna (Post 2275389)
I created an XML for the YouTube "short link" (YouTu.be) style links.

Please see attached. Hope it helps!

Thank You

Are you in the service helps www.kure.tv xml?

EuroBeat2 12-14-2011 01:38 PM

Quote:

Originally Posted by velosteraddict (Post 2277679)
Thanks GaryT, but nowhere in User Groups > Forum Permissions or User Groups > Administrator Permissions does it list 8wayrun or the Media tab. And, as Admin, one would think I would have default permissions.

Any ideas?

You actually need to set it up for EACH user group. i.e.. From AdminCP choose User Groups >Usergroup Manager than choose the user group of interest and you will see two sections related to MEDIA LIBRARY: Media Library Permission and Medial Library Moderation Permission. Set them up accordingly for the access you want to give to that usergroup. Hope it helps.

EB

velosteraddict 12-14-2011 02:55 PM

Quote:

Originally Posted by EuroBeat2 (Post 2277695)
You actually need to set it up for EACH user group. i.e.. From AdminCP choose User Groups >Usergroup Manager than choose the user group of interest and you will see two sections related to MEDIA LIBRARY: Media Library Permission and Medial Library Moderation Permission. Set them up accordingly for the access you want to give to that usergroup. Hope it helps.

EB

Thanks EB, however, the Media Library Permission and Medial Library Moderation Permission sections do not appear via User Groups > Usergroup Manager > Administrators.

Do I need to install something?

EuroBeat2 12-15-2011 01:47 AM

Quote:

Originally Posted by velosteraddict (Post 2277717)
Thanks EB, however, the Media Library Permission and Medial Library Moderation Permission sections do not appear via User Groups > Usergroup Manager > Administrators.

Do I need to install something?

I am afraid I run out of idea. These options are available under ID 6 which is Administrators in my AdminCP under ver 4.1.8

EB

K4GAP 12-16-2011 07:26 PM

Quote:

Originally Posted by zlMark (Post 2274382)
Using 4.1.8 and I get this error no matter how many chars i use in the desc

Me too. Has anyone found a fix?

fahris 12-17-2011 08:34 AM

Quote:

Originally Posted by EuroBeat2 (Post 2259225)
I started installing the product based on the description provided by the author.

Make sure that after the installation is completed you CHMODDED the correct folders and files. Example
CHMOD the /customVID/thumbs/ directory to full read/write/execute 777 permissions.
CHMOD the /customVID/sitemap/ directory to full read/write/execute 777 permissions.


After you complete the installation you will have problem with editing comments (you will see messages like: The description you have entered is too short (7 characters). Please lengthen your description to at least 10 characters.. The problem is that new editor is used. Therefore, after you will complete installation follow precisely helps posted in:

https://vborg.vbsupport.ru/showpost....postcount=2117
https://vborg.vbsupport.ru/showpost....postcount=2107
https://vborg.vbsupport.ru/showpost....&postcount=940

That what I have done and it works. Let me remind you that I upgraded from VDR I originally had in ver 3.8

EB

Do all of the changes did not improve despite the continued etmekde error. Would you please help?

Code:

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


All times are GMT. The time now is 02:04 AM.

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.04795 seconds
  • Memory Usage 1,900KB
  • 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
  • (2)bbcode_code_printable
  • (3)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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