vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - AME 2.5 - Media Embedding for posts, sigs, vm's, groups and blogs (https://vborg.vbsupport.ru/showthread.php?t=202476)

P.Jackson 09-17-2009 08:45 PM

Quote:

Originally Posted by Digital Jedi (Post 1885750)
Post an example of where that's happening.


http://www.clan-killers.com/forum/ge...eens-vids.html

Happens every time we try it we have to use a ame bbcode atm to get it to show


http://www.clan-killers.com/forum/ha...tml#post195465

Digital Jedi 09-18-2009 12:08 AM

Quote:

Originally Posted by P.Jackson (Post 1886631)
http://www.clan-killers.com/forum/ge...eens-vids.html

Happens every time we try it we have to use a ame bbcode atm to get it to show


http://www.clan-killers.com/forum/ha...tml#post195465

You appear to have something on your board that affects the content of posts, other than AME. The code is there if you look at the Source Code of your pages, but it's literally translating the Replacement HTML into ampersand commands (&lt; instead of < for example) and putting line breaks <br /> where there shouldn't be.


Code:

                <!-- message -->
<div id="post_message_195465" class="vb_postbit">

<a href="http://&lt;div style=&quot;display: none;&quot; id=&quot;ame_noshow_post_1253102005_1&quot;&gt;<br />
&lt;a href=&quot;&quot; title=&quot;YouTube&quot; target=&quot;_blank&quot;&gt;YouTube&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;div style=&quot;display: inline;&quot; id=&quot;ame_doshow_post_1253102005_1&quot;&gt;<br />
&lt;div align=&quot;center&quot;&gt;<br />
&lt;table class=&quot;tborder&quot; cellpadding=&quot;6&quot; cellspacing=&quot;1&quot; width=&quot;425&quot; style=&quot;margin:10px 0&quot;&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;td class=&quot;tcat&quot; colspan=&quot;2&quot; style=&quot;text-align:center&quot;&gt;<br />
&lt;a href=&quot;&quot; title=&quot;YouTube&quot; target=&quot;_blank&quot;&gt;YouTube&lt;/a&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tbody&gt;<br />
&lt;tr&gt;<br />
&lt;td class=&quot;panelsurround&quot; align=&quot;center&quot;&gt;<br />
&lt;object width=&quot;425&quot; height=&quot;350&quot;&gt;<br />
&lt;param name=''movie'' value=&quot;http://www.youtube.com/v/MUx9Z3l6S7U&amp;ap=%2526fmt%3D18&amp;fs=1&quot;&gt;&lt;/param&gt;<br />
&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;<br />
&lt;embed src=&quot;http://www.youtube.com/v/MUx9Z3l6S7U&amp;ap=%2526fmt%3D18&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;350&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;&lt;/object&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;&lt;/div&gt;<br />
&lt;/div&gt;" target="_blank">YouTube - Slife 2</a>
</div>
                <!-- / message -->


Digital Jedi 09-18-2009 05:07 AM

Hey Geek, I just noticed something odd on my installation. AME seems to be ignoring my character count settings passed 20, and clips them kind of short anywhere below that. Right now I have this set at 50: http://www.cogonline.net/forums/show...80&postcount=8

Also, I don't know if this is really important or not, but I notice when merging posts, you have to re-edit to get the parsing.

fly 09-18-2009 10:45 AM

So, AME won't let me delete any definitions. I imported an update that DJ made for photobucket, but when I try to delete the old one - nothing happens. Any ideas?

Drache 09-19-2009 03:30 AM

Will this increase the server load? does it adds many queries?

The Geek 09-21-2009 03:51 PM

Quote:

Originally Posted by Digital Jedi (Post 1886806)
Hey Geek, I just noticed something odd on my installation. AME seems to be ignoring my character count settings passed 20, and clips them kind of short anywhere below that. Right now I have this set at 50: http://www.cogonline.net/forums/show...80&postcount=8

Also, I don't know if this is really important or not, but I notice when merging posts, you have to re-edit to get the parsing.

Are you using $title or $aminfo[title]? $title wont get trimmed, the latter will.
Re: Merging, this makes sense if the post you merge into doesn't have ame in it, however it should work if the post you are merging to does (if that makes sense). Not sure it would be frequent enough to warrent the merge code, but will look into it!

Quote:

Originally Posted by flypaper (Post 1886911)
So, AME won't let me delete any definitions. I imported an update that DJ made for photobucket, but when I try to delete the old one - nothing happens. Any ideas?

Sounds like you may be using the file cache, but for whatever reason, the server can no longer write to the aminfo folder. Check chmod on the folder and its files. Alternatively, turn off the file cache.

Quote:

Originally Posted by Drache (Post 1887370)
Will this increase the server load? does it adds many queries?

AME is designed to have minimal footprint and won't increase load or queries on threads that contain no media. If you are using the file cache, there will be no additional queries when a post with AME appears, but load will increase slightly as the media definitions are loaded up into memory.

The more noticeable area for load with AME isn't really server load. If you are including media in a post that extracts destination data (i.e. a youtube video that extracts the destination pages title) then there will be a slight delay when you save the post as AME fetches the destination page and extracts the title. Obviously the more AME you have in a post, the longer this takes (i.e. if you put 10 videos in your post that all extract data, thats 10 pages AME will download while you are saving your post). Saying that, it is only when you save it. After that, its pretty much undetectable.

The Geek 09-21-2009 03:52 PM

Quote:

Originally Posted by P.Jackson (Post 1886631)
http://www.clan-killers.com/forum/ge...eens-vids.html

Happens every time we try it we have to use a ame bbcode atm to get it to show


http://www.clan-killers.com/forum/ha...tml#post195465

Most likely a mod conflict. Most likely a mod that changes URLs (i.e. a mod that tracks outbound links).

The Geek 09-21-2009 03:52 PM

If you guys installed, please click install :D

Digital Jedi 09-21-2009 04:03 PM

Quote:

Originally Posted by The Geek (Post 1888495)
Are you using $title or $aminfo[title]? $title wont get trimmed, the latter will.

I'm using the $ameinfo[title]. Also, it's not abbreviating even in the container template, not just the definition. From what I've observed so far, it appears kind of random. In some cases it seems to be abbreviating fine and others it ignores or only works under a certain character count. It seems to be site by site.


Quote:

Re: Merging, this makes sense if the post you merge into doesn't have ame in it, however it should work if the post you are merging to does (if that makes sense). Not sure it would be frequent enough to warrent the merge code, but will look into it!
You mean like if the earliest post already has an AME converted video in it, right? In the six cases I had to do a merge, all the posts had video. But I agree, I don't know if it's important enough to worry about, just thought I'd mention it. https://vborg.vbsupport.ru/external/2009/09/9.png

Chadi 09-22-2009 09:50 PM

Quote:

Originally Posted by Chadi (Post 1824735)
Feature Request:
*************

Jquery implementation (lightbox)

http://www.no-margin-for-errors.com/...ightbox-clone/

Really nice :)

Can we get votes on this please? :)


All times are GMT. The time now is 06:43 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.02559 seconds
  • Memory Usage 1,762KB
  • 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
  • (1)bbcode_code_printable
  • (9)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