vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   BB Code Enhancements - AME3 - Auto Media Embeding and Video Extender (https://vborg.vbsupport.ru/showthread.php?t=230707)

Magz 01-02-2010 01:39 AM

Installed

What a beauty

SLY LS1 01-02-2010 03:16 AM

Ok, im a little lost.. in the instructions on post #2 it says

Quote:

Then Edit the plugin titled: AME - Auto Convert URLs. And click save.

Edit it in what way ?

Magz 01-02-2010 03:19 AM

Dont edit anything, just click edit, then save ;)

SLY LS1 01-02-2010 03:26 AM

Quote:

Originally Posted by Magz (Post 1944617)
Dont edit anything, just click edit, then save ;)



Thanks bud

Got it working, all good, "Clicks Installed"" :D

Cheers
Wayne

dangerin 01-02-2010 05:53 AM

Good morning and happy new year.
I've installed this wonderful plug in but it do not look like ok.
i do not see the functions actives to set to convert the link in video.
and i've modified the hook file in xml and also opened saved and recharged the plug in in pug in manager.
i use Vb4 PL1 and ame 3. beta 2a because i've tried to installed beta 3 and the system has crashed and i had to restore all.
i've read the instructions to update but . .

have you any suggest about this problem?

way2xtreme 01-02-2010 06:13 AM

Hello everyone:

I need help with AME Regex URL. And I am willing to pay a reasonable fee for someone who can help. Here is what I need:

Any time AME sees an URL starting with "http://MySite.com/P/?" it then out put the entire url as a parameter. I will then put {vb:raw code} in a embed code.

For example, in this URL

PHP Code:

http://MySite.com/P/?@4ATsy4DPut4ELHH2qQtFpage_1_test&ZZ@4ATmv4DFyC4EEFc@4AWJg4BWWy1CTVO4DLvN4EByx1qJijpage3&ZZ@ 

It starts with

PHP Code:

http://MySite.com/P/? 

Then the whole URL is the parameter, nothing needs to be altered...

PHP Code:

http://MySite.com/P/?@4ATsy4DPut4ELHH2qQtFpage_1_test&ZZ@4ATmv4DFyC4EEFc@4AWJg4BWWy1CTVO4DLvN4EByx1qJijpage3&ZZ@ 

Thank you very much in advance and happy new year!

WC

ps. here is my older code which still work fine on the old forum:

([http://]*[a-z]*?[\.]?mysite\.com\/P\/[\w\/\-\%\?\@]+)

$p1 is the parameter; it will get the entire url

Digital Jedi 01-02-2010 07:33 AM

Quote:

Originally Posted by way2xtreme (Post 1944704)
Hello everyone:

I need help with AME Regex URL. And I am willing to pay a reasonable fee for someone who can help. Here is what I need:

Any time AME sees an URL starting with "http://MySite.com/P/?" it then out put the entire url as a parameter. I will then put {vb:raw code} in a embed code.

For example, in this URL

PHP Code:

http://MySite.com/P/?@4ATsy4DPut4ELHH2qQtFpage_1_test&ZZ@4ATmv4DFyC4EEFc@4AWJg4BWWy1CTVO4DLvN4EByx1qJijpage3&ZZ@ 

It starts with

PHP Code:

http://MySite.com/P/? 

Then the whole URL is the parameter, nothing needs to be altered...

PHP Code:

http://MySite.com/P/?@4ATsy4DPut4ELHH2qQtFpage_1_test&ZZ@4ATmv4DFyC4EEFc@4AWJg4BWWy1CTVO4DLvN4EByx1qJijpage3&ZZ@ 

Thank you very much in advance and happy new year!

WC

ps. here is my older code which still work fine on the old forum:

([http://]*[a-z]*?[\.]?mysite\.com\/P\/[\w\/\-\%\?\@]+)

$p1 is the parameter; it will get the entire url

Well, I don't know what's changed in the new version of AME yet, but in the previous version, at least, you could just use something simple:

Code:

http://[\w.]*mysite\.com/P/\?[\w&;@]+
And just use $ameinfo[url] (I assume The Geek didn't change this in AME 3) for the URL. You don't need to escape every forward slash, and you don't need % or - unless you have some URLs that have those characters. If so, just add them to the last set of brackets. I'd recommend putting the dash last, as I've run into a couple of problems putting elsewhere in the brackets.

The Geek 01-02-2010 08:09 AM

Quote:

Originally Posted by ColinM94 (Post 1944457)
I get this error when im rebuilding the old posts

Code:

Building....

    * post 691:
      Warning: include(ame_prep_cache.php) [function.include]: failed to open stream: No such file or directory in [path]/includes/ame_prep.php on line 595

      Warning: include(ame_prep_cache.php) [function.include]: failed to open stream: No such file or directory in [path]/includes/ame_prep.php on line 595

      Warning: include() [function.include]: Failed opening 'ame_prep_cache.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_prep.php on line 595


Sounds like you have the file cache on, but not a valid path (which is the second setting).

The Geek 01-02-2010 09:29 AM

1 Attachment(s)
Quote:

Originally Posted by way2xtreme (Post 1944704)
Hello everyone:

I need help with AME Regex URL. And I am willing to pay a reasonable fee for someone who can help. Here is what I need:

Any time AME sees an URL starting with "http://MySite.com/P/?" it then out put the entire url as a parameter. I will then put {vb:raw code} in a embed code.

Try this, I don't have any embed code to go off of, but assume you can tweak if needed.

Note that because of the way vB4 deals with video parameters, you don't want a semi-colon in your parameter.

@DJ - Keep meaning to update the readme with an outline of the new formats, but keep getting side tracked :D

Because its really vB4 doing the video management, we are somewhat limited in some of the things we can do, but not many. The key restriction is that there can be only one parameter (and it can't contain a semicolon!). That parameter can be fetched from another site or from the URL. There are no other parameters that can be used in the embed code other than this parameter, so no titles, sizes, etc...

Il get to writing it soon enough!

The Geek 01-02-2010 09:46 AM

1 Attachment(s)
Quote:

Originally Posted by Prorockz (Post 1943223)
thanks work fine .

can u please tell me i want to share , 4shared.com movie im try it but this link not working.

how can i fix it ?

Code:

http://www.4shared.com/file/35149075/f1b2f296/YouTube_-_Funny_Baby_Laughing_.html?s=1

You can try this one, though only tested it with one URL.


All times are GMT. The time now is 08:36 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.01623 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
  • (6)bbcode_php_printable
  • (6)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