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)

juhler 08-08-2010 06:46 PM

Quote:

Originally Posted by compact123 (Post 2080442)
still i have problem with korean special characters =/
http://www.youtube.com/watch?v=qRGOE-gE8FE[IMG]

Well I dont have korean at my board but I can change the code so it imports some other chars to, try this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', gzdecode($feed['title']));
        $xml->add_tag('description', gzdecode($feed['description']));
        $xml->add_tag('taglist', gzdecode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', gzdecode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Or this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', utf8_encode($feed['title']));
        $xml->add_tag('description', utf8_encode($feed['description']));
        $xml->add_tag('taglist', utf8_encode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', utf8_encode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Otherwise I need to know a little more about this charset stuff and what charset Korea use =)

blue7 08-08-2010 07:29 PM

How can i disable comments apprivation ?

Tahooma 08-09-2010 09:26 AM

solved...

CMSTemplateZ 08-09-2010 11:38 AM

Thanks for the mod :) great work...

Having an issue with VBSEO on my Xbox Kinect website <--- See the url... i am using VBSEO.. on my other board using your older mod i was able to get vbseo re-writing the urls just fine...

There is also some other having this issue.. please see here: http://www.vbseo.com/f23/media-libra...54/index3.html (read the first few posts and then the last few).. someone almost has it working...

Any help on this would be great, Thanks

Ahmet Turan 08-09-2010 02:02 PM

Not work VBSEO help

EquinoxWorld 08-10-2010 11:49 AM

This is my post I have in VBSEO . I'm posting it here to see if maybe anyone else has any input. Thanks for everyone's time and consideration.

Quote:

Hello everyone, just thought I put some info from my behalf. The only thing that does not work properly is the first edit to the media_functions_hrefs.php . The second works fine which adds the category name to the title. The CRR work completely except the view media page ( for example AniWorlds Forums - InuYasha - 58 which is:
HTML Code:

http://www.aniworlds.net/forum/media.php?do=details&mid=19003
).
the URL provides the title if pasted but the actual URL still remains the above. Since playlist were added , there is now a if condition in the href file that specifies playlist ID. The CRR for the view video page before was:

'^media\.php\?do=details&mid=(\d+)&title=(.+)$'=>' media-library/$2-$1/'

I was able to edit the href file and get the CRR to work but I get a bunch of letters and playlist at the end. I have checked each one of the rewrites and that one is the only one that does not work , and of course there would have to be a new CRR for the playlists now. I am writing this here to see if we can all put our heads together and figure this one out, were almost there everyone. I thank VBSEO for providing support from the previous version of this most popular mod, and any input they may have is as always very much appreciated. If anyone has any input please share with the world.

compact123 08-10-2010 04:12 PM

Quote:

Originally Posted by compact123 (Post 2080440)
>>> dailyMotion videos cannot be thumbnailed :(

Quote:

Originally Posted by EquinoxWorld (Post 2080524)
Have you tried this:

Quote:

Originally Posted by Originally Posted by Jaxel
Change the daily motion thumbnail field to the following:

$arr['channel'
['item']['media:thumbnail']['url']; $thu = substr($thu, 0, strpos($thu, '?'))







ummm sir what do i need to edit the php file for this code?

compact123 08-10-2010 04:23 PM

Quote:

Originally Posted by juhler (Post 2080975)
Well I dont have korean at my board but I can change the code so it imports some other chars to, try this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', gzdecode($feed['title']));
        $xml->add_tag('description', gzdecode($feed['description']));
        $xml->add_tag('taglist', gzdecode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', gzdecode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Or this:

Code:

        $feed = construct_feed_data($source);

        $xml = new vB_AJAX_XML_Builder($vbulletin, 'text/xml');
        $xml->add_group('response');
        $xml->add_tag('thumbnail', $feed['thumbnail']);
        $xml->add_tag('title', utf8_encode($feed['title']));
        $xml->add_tag('description', utf8_encode($feed['description']));
        $xml->add_tag('taglist', utf8_encode($feed['taglist']));
        $xml->add_tag('minutes', $feed['minutes']);
        $xml->add_tag('seconds', $feed['seconds']);
        $xml->add_tag('embed', $feed['embed']);
        $xml->add_tag('source', utf8_encode($feed['source']));
        $xml->add_tag('serviceID', $feed['serviceID']);
        $xml->add_tag('serviceVAL', $feed['serviceVAL']);
        $xml->add_tag('serviceVAL2', $feed['serviceVAL2']);
        $xml->close_group();
        $xml->print_xml();

Otherwise I need to know a little more about this charset stuff and what charset Korea use =)

actually sir we are using utf8 charset but i dont know whats wrong with it kkkk but korean charset like that: euc-kr
and for all;
Korean ##charset=ks_c_5601-1987
Korean (EUC) ##charset=euc-kr
Korean (ISO) ##charset=iso-2022-kr
Korean (Johab) ##charset=Johab
Korean (Mac) ##charset=x-mac-korean
-------------------------------------------------------
ko_KR.EUC-KR... done
ko_KR.UTF-8... done

*** wel and i have a questions umm is multi-lingual character encoding in PHP forms not possible? as utf8, korean, hapan, chinise, turkish, english bla bla xD

EquinoxWorld 08-10-2010 04:25 PM

Quote:

Originally Posted by compact123 (Post 2081777)
ummm sir what do i need to edit the php file for this code?

No my friend , just go to subnavbar: ------> Administrative------>Services------>Edit under Dailymotion---->Replace where "thumbnail" with the above code, click save changes and all done.

compact123 08-10-2010 07:28 PM

@EquinoxWorld, thanks sir for your help, im not at home now when i arrive at home i will try it, thanks again >.<


All times are GMT. The time now is 09:55 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.03306 seconds
  • Memory Usage 1,766KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_html_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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