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)

EuroBeat2 12-11-2011 06:57 PM

Quote:

Originally Posted by yilmaz (Post 2276483)
be solved in a single row of tags:up::)

What exactly code you changed or added. I already modified .xml file with other fixes, including the one just posted by Chatpalace24 so I can load it and update all themes instead doing it manually.
Would you mind to place info what was the old code and what you replace it with?

Thank you.

EB

yilmaz 12-11-2011 10:00 PM

Quote:

Originally Posted by EuroBeat2 (Post 2276826)
What exactly code you changed or added. I already modified .xml file with other fixes, including the one just posted by Chatpalace24 so I can load it and update all themes instead doing it manually.
Would you mind to place info what was the old code and what you replace it with?

Thank you.

EB

See image

http://i39.tinypic.com/2n036rk.jpg

EuroBeat2 12-11-2011 10:45 PM

Quote:

Originally Posted by yilmaz (Post 2276885)

Perfect! You have added space as well so now TAG CLOUD is looking good and working properly.

Thank you so much!

EB

yilmaz 12-12-2011 12:59 AM

Quote:

Originally Posted by fahris (Post 2258094)
Hello

First of all, I thank you.

I installed the add, but failure to give Turkish character.

example:

Yer: Sözler | Yirmi Dokuzuncu Söz | İkinci Maksat | Üçüncü Esas

Help me

To eliminate the Turkish character problem
media/media_submit.php <= this file
Find the line 28
PHP Code:

if ($source) { $feed construct_feed_data($source); } 

Add to it below:
PHP Code:

    $feed['title'] = mb_convert_encoding($feed['title'], "ISO-8859-9","UTF-8");
    
$feed['taglist'] = mb_convert_encoding($feed['taglist'], "ISO-8859-9","UTF-8");
    
$feed['description'] = mb_convert_encoding($feed['description'], "ISO-8859-9","UTF-8"); 

---------------
Repeat Turkish
T?rk?e karekter sorunu kaldırmak i?in

media/media_submit.php <= bu dosyada
28. satırda ara bul
PHP Code:

if ($source) { $feed construct_feed_data($source); } 

Altına bunu ekle:
PHP Code:

    $feed['title'] = mb_convert_encoding($feed['title'], "ISO-8859-9","UTF-8");
    
$feed['taglist'] = mb_convert_encoding($feed['taglist'], "ISO-8859-9","UTF-8");
    
$feed['description'] = mb_convert_encoding($feed['description'], "ISO-8859-9","UTF-8"); 


MotMann 12-12-2011 11:31 AM

Quote:

Originally Posted by yilmaz (Post 2276885)

Thank's :)

But, i have another Problem with my Seo. If i activate that, then i can't go to the Video Site direct.
I Think it is a Problem with my htaccess... need help.

http://www.consumerbook.de/media.php

Here is my htaccess:

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
RewriteCond 
%{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule 
^.*$ - [NC,L]


###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} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule 
^.*$ - [NC,L]

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


chatpalace24 12-13-2011 04:33 PM

phew...i'm not the Author of this addon. But this little change make it easier to work with. But IMHO the Author have to change some codelines to fix it without that Template editing.

chatpalace24 12-13-2011 04:40 PM

Quote:

Originally Posted by MotMann (Post 2277039)
Thank's :)

But, i have another Problem with my Seo. If i activate that, then i can't go to the Video Site direct.
I Think it is a Problem with my htaccess... need help.

http://www.consumerbook.de/media.php

Here is my htaccess:

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
RewriteCond 
%{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule 
^.*$ - [NC,L]


###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} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule 
^.*$ - [NC,L]

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


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.

AndyNady 12-13-2011 05:39 PM

When I try to add any video, I get this message
Code:

Forbidden

You don't have permission to access /media.php on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Can you help?

gm139 12-13-2011 10:56 PM

When I click on the media tab I get the following error:

Code:

admin, you do not have permission to access this page. This could be due to one of several reasons:

Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.


velosteraddict 12-14-2011 01:38 AM

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?

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.

Reinier324 12-17-2011 06:45 PM

Thanks for the great mod, but Ive got a problem.
I can't seem to post comments at media.
Error: Uncaught TypeError: Cannot read property 'value' of null
post_commentmedia_ajax_comment.js:33
button.onclick

Gamelobby 12-18-2011 01:31 AM

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!

Invalid File Specified
I got this when i tried to upload.?

Is that supposed to be uploaded from somewhere besides "Import Products"..?

Reinier324 12-18-2011 10:46 AM

Quote:

Originally Posted by Reinier324 (Post 2278648)
Thanks for the great mod, but Ive got a problem.
I can't seem to post comments at media.
Error: Uncaught TypeError: Cannot read property 'value' of null
post_commentmedia_ajax_comment.js:33
button.onclick

Still need help, anyone?

michal72 12-18-2011 11:07 AM

Quote:

Originally Posted by Reinier324 (Post 2278786)
Still need help, anyone?

What is your line 33 in media_ajax_comment.js file?

Should be

Code:

if (!fetch_object('vB_Editor_QR_textarea').value)

Reinier324 12-18-2011 11:20 AM

Quote:

Originally Posted by michal72 (Post 2278790)
What is your line 33 in media_ajax_comment.js file?

Should be

Code:

if (!fetch_object('vB_Editor_QR_textarea').value)

Fixed it.
By using https://vborg.vbsupport.ru/showpost....postcount=2395
Thanks

ElfenLied1337 12-18-2011 07:30 PM

Anyone know if this is working on 4.1.9?

thespi 12-20-2011 06:55 PM

Problems with vBulletin 4.1.X
If you follow these instructions you can get submissions to work:
https://vborg.vbsupport.ru/showthrea...25#post2259225

However errors still occur with the character length when adding coments or editing the description;
"This page is asking you to confirm that you want to leave - data you have entered may not be saved." Appears then
"The description you have entered is too short (0 characters). Please lengthen your description to at least 2 characters."

If anyone has the right code to edit for the latest version of vB this will be working ok, it just needs to work with the new editor.

Helmut71 12-21-2011 03:37 AM

has anyone of you megavideo still working?

Harpo 12-21-2011 05:00 AM

Hello.

Everything seems to be working good. just one small problem.

I can't seem to post comments? anyone know how to fix this? I did all the permissions already and all that good stuff.

Oh and I when I try to enter comments in the descrption box. the error message is telling me I have 0 characters and that I need 10...

silberfuchs 12-21-2011 10:02 AM

Quote:

Originally Posted by fahris (Post 2278550)
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.

Now everything works fine - also with 4.1.9!

The only thing I wanted to ask - is there a xml file for the new youtube share links,

e.g.

http://youtu.be/Qz0LlYWAUo0

I just recognized an issue within the tag cloud. There is no line break......the field is being exceed as much as words are in......

Does anybody have an idea? The issue is alo available within the vB standard template......

As a third question I would like to know what to do to move the Navbar Link of this add-on to the last position of the navbar links? Plese give me some detailed information how to do that.

Thanks for your support!

EuroBeat2 12-21-2011 04:09 PM

Quote:

Originally Posted by silberfuchs (Post 2279669)
Now everything works fine - also with 4.1.9!
I just recognized an issue within the tag cloud. There is no line break......the field is being exceed as much as words are in......

Please refer to post:

https://vborg.vbsupport.ru/showpost....postcount=2394

and post:

https://vborg.vbsupport.ru/showpost....postcount=2402.

Author of that post suggested following change in .xml file and it worked. Please note this modification adds comma and space. Presense of space will allow proper line break and proper display of tags in main MEDIA LIBRARY page.

https://vborg.vbsupport.ru/external/2012/06/9.jpg



EB

Harpo 12-21-2011 06:07 PM

Hi I can't enter comments. I hit submit comment but nothing happens.

silberfuchs 12-22-2011 09:19 AM

Quote:

Originally Posted by EuroBeat2 (Post 2279767)
Please refer to post:

https://vborg.vbsupport.ru/showpost....postcount=2394

and post:

https://vborg.vbsupport.ru/showpost....postcount=2402.

Author of that post suggested following change in .xml file and it worked. Please note this modification adds comma and space. Presense of space will allow proper line break and proper display of tags in main MEDIA LIBRARY page.

https://vborg.vbsupport.ru/external/2012/06/9.jpg



EB

Thanks your very much! It works fine now!

MotMann 12-22-2011 09:48 AM

Anyone an idea with SEO rules? In German the Mod doesn't work if i switch on SEO URL.

The htaccess is original from vBulletin.

silberfuchs 12-23-2011 06:54 AM

Quote:

Originally Posted by fishmaster (Post 2280212)
I have been wanting an add-on like this,"Forever"...

Its a bargain at $50

Before I download and install, can anyone confirm that it will work with VB 4.1.9 without any issues?

Wanting to use it strictly for You Tube Videos for members to load content.


.....it is working on my page with 4..1.9

Mariner1 12-24-2011 08:59 AM

Having probs importing the xml,using 4.18

Altering Table usergroup ...Done!
Altering Table user ...Done!

Creating Table media ... Done!
Creating Table media_category ... Done!
-- Adding Category Row General ...

Gets to this point then it seems to hang,doesnt go any further.Tried numerous times.Any ideas pls

Mariner1 12-26-2011 12:06 PM

Anyone help pls

bada_bing 12-27-2011 04:56 AM

Does anyone know how to fix this issue with the new youtube media share type i.e http://youtu.be/EAClh86JV4w when I try and add a video I get this error "Could not parse media URL."

Zarxrax 12-27-2011 07:11 PM

I am having trouble upgrading from video directory remixed.
I had exported my vbulletin database, wiped my server clean, then restored my database and upgraded to the latest vbulletin. Then I have installed media library. However, I can't find any "video" table in my database with my old videos!
Any ideas what could have happened to it? Could it have a different name?

Mariner1 12-27-2011 11:24 PM

Any help with my problem would be appreciated pls


All times are GMT. The time now is 04:12 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.04563 seconds
  • Memory Usage 2,121KB
  • 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
  • (7)bbcode_code_printable
  • (11)bbcode_php_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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