Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 07-08-2011, 06:47 PM
Desi-Home Desi-Home is offline
 
Join Date: May 2007
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default If URL [SUCH SUCH ] , then change to URL [SUCH SUCH]

Hello,

I hope you guys understand what I'm looking for.. I'm looking for a mod which will change a URL to another URL if posted . let say if a user posts a youtube URL like

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

I've a script which should change the youtube URL to my website URL automatically

http://mydesi.tv/youtube.php?id=PB5YQpCpY7M

I really need this mod.. help pleaseeee



vBulleting already has a feature that's a little bit like this.. like Censopship ? I tried that but that didn't work it puts so many mydesi.tv instead of one youtube.com


Any help would be really appreciated.. it's a script like .. i

<if youtube.com

then, change to mydesi.tv> something like that , i don't know coding
Reply With Quote
  #2  
Old 07-08-2011, 08:25 PM
borbole's Avatar
borbole borbole is offline
 
Join Date: Jan 2010
Posts: 2,559
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You have posted your request in the wrong forum. This is a mod release forum.
Reply With Quote
  #3  
Old 07-08-2011, 08:26 PM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by borbole View Post
You have posted your request in the wrong forum. This is a mod release forum.
Just moved it lol, your timing is impeccable .
Reply With Quote
Благодарность от:
borbole
  #4  
Old 07-09-2011, 07:55 PM
Badshah93 Badshah93 is offline
 
Join Date: Jun 2010
Location: India
Posts: 505
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Create a New Plugin

Plugin Hook: postbit_display_complete

Add these codes

PHP Code:
$post['message'] = preg_replace('/http:\/\/(.*?)youtube.com\/watch\?v\=/''http://mydesi.tv/youtube.php?id='$post['message']); 
Reply With Quote
  #5  
Old 07-10-2011, 02:29 AM
Desi-Home Desi-Home is offline
 
Join Date: May 2007
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey I tried that , It didn't work..

http://img17.imageshack.us/img17/6350/postreplace.png

--------------- Added [DATE]1310268619[/DATE] at [TIME]1310268619[/TIME] ---------------

Quote:
Originally Posted by aayushagrawal90 View Post
Create a New Plugin

Plugin Hook: postbit_display_complete

Add these codes

PHP Code:
$post['message'] = preg_replace('/http:\/\/(.*?)youtube.com\/watch\?v\=/''http://mydesi.tv/youtube.php?id='$post['message']); 
Hey I tried that , It didn't work..

http://img17.imageshack.us/img17/6350/postreplace.png
Reply With Quote
  #6  
Old 07-10-2011, 02:55 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

try this

PHP Code:
$this->post['message'] =
str_replace('youtube.com/watch?v=''mydesi.tv/youtube.php?id='$this->post['message']); 
Reply With Quote
  #7  
Old 07-10-2011, 03:08 AM
Desi-Home Desi-Home is offline
 
Join Date: May 2007
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get the following error when I hit save or save an reload

Fatal error: Using $this when not in object context in /home/mydesitv/public_html/includes/adminfunctions_template.php(3717) : eval()'d code on line 1

BTW I`m saving this under the current style , not the default vB style
Reply With Quote
  #8  
Old 07-10-2011, 03:14 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no, don't use a template, put the code in a new plugin. It won't save as a template due to the synthax. See image.
Attached Images
File Type: jpg Untitled.jpg (64.1 KB, 0 views)
Reply With Quote
  #9  
Old 07-10-2011, 03:42 AM
Badshah93 Badshah93 is offline
 
Join Date: Jun 2010
Location: India
Posts: 505
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mate, I gave u code after testing.

You need to create plugin to make it work

Plugin Hook: postbit_display_complete
Product: Vbulletin
Title: Video Domain Changer

Code

Code:
$post['message'] = preg_replace('/http:\/\/(.*?)youtube.com\/watch\?v\=/', 'http://mydesi.tv/youtube.php?id=', $post['message']);
Reply With Quote
  #10  
Old 07-10-2011, 12:53 PM
Desi-Home Desi-Home is offline
 
Join Date: May 2007
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by aayushagrawal90 View Post
Mate, I gave u code after testing.

You need to create plugin to make it work

Plugin Hook: postbit_display_complete
Product: Vbulletin
Title: Video Domain Changer

Code

Code:
$post['message'] = preg_replace('/http:\/\/(.*?)youtube.com\/watch\?v\=/', 'http://mydesi.tv/youtube.php?id=', $post['message']);
Hey I'm not sure what you mean by create plugin.. I don't know how to do that , what I did was went to Styles , and in my current style I selected create a new template , and I named it postbit_display_complete , and put that code in the body.. Is that how I'm suppose to do ? here's the pictures how I did it..

http://img17.imageshack.us/img17/6350/postreplace.png


If not please tell me how to create a plugin.. can you create one for me with that code and send so I can just import plugin and products ? thanks , really appreciate all the replies
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:51 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.04269 seconds
  • Memory Usage 2,286KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (3)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (1)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete