vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Show Thread Enhancements - AME 2.0 -Auto Media Embedding for posts, blogs, visitor and group messsages (https://vborg.vbsupport.ru/showthread.php?t=189267)

Adem GEN? 11-11-2008 05:06 PM

Turkish Language for AME 2.5 RC 1

New

msolano 11-11-2008 08:31 PM

2.5 installed, it's so easy, and with vbulletin 3.7.3 works smothly!

Wonderful work! Keep going.

momo2 11-12-2008 06:22 PM

I'm getting 3 of them in one post
for example i posted
http://uk.youtube.com/watch?v=EzjkBwZtxp4
i get 3 of them

punchbowl 11-12-2008 09:37 PM

Quote:

Originally Posted by punchbowl (Post 1659834)
I'm terrified about converting a board with over a million posts. Should I be?

Quote:

Originally Posted by Digital Jedi (Post 1660964)
I guess the question you should pose is if you really need to. The conversion is just for converting threads created prior to installation of the mod. If you don't really need to convert the older threads, then I wouldn't bother.

Cheers. I bit the bullet on a copy of the forum and although it took a few hours, converting over a million old posts seems to have worked perfectly.

Unfortunately the previous mod converted posts on the fly so disabling/uninstalling that mod converted urls back to urls.

Appreciate the help:up:

Digital Jedi 11-13-2008 03:43 AM

Quote:

Originally Posted by momo2 (Post 1664379)
I'm getting 3 of them in one post
for example i posted
http://uk.youtube.com/watch?v=EzjkBwZtxp4
i get 3 of them

Then you probably have three YouTube definitions. Make sure you only have one YouTube definition, not counting Playlists.

Chance4Today 11-13-2008 04:14 PM

I just installed this and am getting nothing any suggestions

punchbowl 11-13-2008 04:55 PM

Quote:

Originally Posted by Chance4Today (Post 1664979)
I just installed this and am getting nothing any suggestions

go into forum permissions and save again.

Chance4Today 11-13-2008 05:04 PM

Already did that :( well I might have not got it uploaded right not sure still trying to get it to go though

Digital Jedi 11-13-2008 10:51 PM

Remember that exempt means people in that user group are not allowed to use the modification.

punchbowl 11-13-2008 11:10 PM

HELP!

to manually undo all the table changes what do I do?!

any ideas?!

tia

or can I over write?

[ignore - think i'm ok! - I may return!]

Digital Jedi 11-13-2008 11:45 PM

Quote:

Originally Posted by punchbowl (Post 1665218)
HELP!

to manually undo all the table changes what do I do?!

any ideas?!

tia

or can I over write?

[ignore - think i'm ok! - I may return!]

Table changes?

punchbowl 11-14-2008 12:42 AM

I fixed it in the end. My post table was f*cked. Think there was an interruption as it was updating the post table:o (ok I thought it had timed out trying to change a million rows and may have clciked control panel home link)

Totally my own fault but managed to fix it eventually
http://www.vbulletin.com/forum/showthread.php?p=1651981

ALTER TABLE post DROP FIELD ame_flag; wouldn't have worked anyway, the table was corrupt.

anyway managed to drop the field and reimport the product (used over write) and things seem good now. Woot!

phew:D

sweeps78 11-14-2008 12:47 PM

Hi,

I'm getting a validation error in my news block of vbAdvanced coming from AME:

http://validator.w3.org/check?uri=ht....591#line-3244

It's inserting the number 425 (which is the default width setting in AME) inside a table tag.


EDIT

Okay, so I found what's wrong. It's in the ame_container template. The $ameinfo[width] is sitting all by itself inside the table tag. I can remove it, but something tells me it's supposed to be in there, but just in a width="$ameinfo[width]" setup... What is the correct code?

PHP Code:

<div align="center">
<
table class="tborder" cellpadding="$stylevar[cellpadding]cellspacing="$stylevar[cellspacing]$ameinfo[widthstyle="margin:10px 0">
<
thead>
        <
tr>
                <
td class="tcat" colspan="2" style="text-align:center">
                        <
a href="$ameinfo[url]title="$ameinfo[title]target="_blank">$ameinfo[title]</a>
                </
td>
        </
tr>
</
thead>
<
tbody>
        <
tr>
                <
td class="panelsurround" align="center">
$ameinfo[code]
</
td>
        </
tr>
</
tbody>
</
table></div


sweeps78 11-14-2008 01:53 PM

FYI, I found a validation error in the default YouTube definition:

It's currently:
PHP Code:

<object width="$ameinfo[width]height="$ameinfo[height]">
<
param name=''movie'' value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<
param name="allowFullScreen" value="true"></param>
<
embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[width]height="$ameinfo[height]wmode="transparent"></embed></object

but should be:
PHP Code:

<object width="$ameinfo[width]height="$ameinfo[height]">
<
param name="movie" value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<
param name="allowFullScreen" value="true"></param>
<
embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[width]height="$ameinfo[height]wmode="transparent"></embed></object


note that

param name=''movie''

changed to

param name="movie"

It may look the same, but it was previously two sets of single quotes and in order to properly validate, it needed to be changed to one set of double quotes.


EDIT:

Okay, so now that I changed the definition, the final result (code) is all screwy... It's now displaying like this:

PHP Code:

param name="" movie="" 

even though this is what I have entered in my Replacement section:
PHP Code:

<object width="$ameinfo[width]height="$ameinfo[height]">
<
param name="movie" value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<
param name="allowFullScreen" value="true"></param>
<
embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[width]height="$ameinfo[height]wmode="transparent"></embed></object

Was there another separate place that I was suppose to edit?

Digital Jedi 11-14-2008 04:11 PM

Try the updated YouTube definition in either one of my threads. For your first question, $ameinfo[width] is supposed to convert to just the width number, so it needs to be inside a width element:

Code:

width="$ameinfo[width]"

sweeps78 11-14-2008 06:42 PM

I changed it, but it doesn't change the code in existing posts... Is there a script or something that I need to run to update existing posts? I didn't try updating the YouTube definition yet.

Digital Jedi 11-14-2008 07:17 PM

If I'm not mistaken, I don't think the code in posts will be rebuilt until the post is saved again.

sweeps78 11-14-2008 08:27 PM

yep, re-saving the post did it, thanks DJ!

Now, if there was only a way to have validated YouTube embed code:(

Digital Jedi 11-15-2008 02:16 AM

If you want to try and rebuild the YouTube code while making it validate, have a look at this article. I've done it with my home page player, but I've not bothered with redoing the definitions, simply because this wouldn't work with all players.

Embeding Flash While Supporting Standards

chikkoo 11-16-2008 08:12 PM

Hi...

I was using goldbrick video mod, just wanted to try this mod so that I can play Daily Motion videos. But it is not working for me.

Do I have to remove the goldbrick mod?

Somebody guide me, how this works?

Digital Jedi 11-17-2008 06:03 AM

Yes, you'll have to completely uninstall Goldbrick as the two are not compatible together.

chikkoo 11-17-2008 06:34 AM

Hi.. DJ,

Thank you for your reply.

Yes, I cuninstalled Goldbrick now.

Then tried AME.
Still AME is not working?

All old links and new links are just showing as [url] links.

Digital Jedi 11-17-2008 06:40 AM

Old links will not convert without resaving the posts or using the rebuild tools.

mimezine 11-17-2008 11:51 AM

Is their some sort of manual or FAQ for my vbulletin users on how to make use of AME 2.0 on my forums, would be highly appreciated! I have it installed, but people make mistakes by mostly using the embed code and stuff.

Thanks for your help

Mimezine

chikkoo 11-17-2008 02:33 PM

Quote:

Originally Posted by Digital Jedi (Post 1667304)
Old links will not convert without resaving the posts or using the rebuild tools.

Even the new links are also not working.

1) I have removed Goldbrick first.
2) Then reinstalled AME.
3) Imported your latest mod with definitions.
4) Then Tools->rebuild all posts.
5) Then did Maintenance->Update Counters->rebuild forum info, rebuild thred info.

Still I could not get anything work. Whatever url links I post, it stays as a plain url link.

Where do I go from here?

[------>added later<------]

At the end, I just wanted to give a try by posting the url inside [ ame ]tag.

Wow.. it works with YouTube, Yahoo Video & Myspace. But not others, especially not with my favourite DailyMotion.

Also I have noticed, the bottom line at the media player shows a some kind of broken tag like this " title="YouTube" target="_blank">YouTube

Is it normal? Does the bottom line at the Media Players shows like this to all?

I hope this will help you to find where the problem is?

Thanks for your support, and help.

Digital Jedi 11-17-2008 03:16 PM

Quote:

Originally Posted by mimezine (Post 1667439)
Is their some sort of manual or FAQ for my vbulletin users on how to make use of AME 2.0 on my forums, would be highly appreciated! I have it installed, but people make mistakes by mostly using the embed code and stuff.

Thanks for your help

Mimezine

Really all a tutorial for users would say is: Post links to videos. Maybe: Don't use embed code. Beyond that, there's nothing else they need to know. There's nothing else to tell them.


Quote:

Originally Posted by chikkoo (Post 1667516)
Even the new links are also not working.

1) I have removed Goldbrick first.
2) Then reinstalled AME.
3) Imported your latest mod with definitions.
4) Then Tools->rebuild all posts.
5) Then did Maintenance->Update Counters->rebuild forum info, rebuild thred info.

Still I could not get anything work. Whatever url links I post, it stays as a plain url link.

Where do I go from here?

[------>added later<------]

At the end, I just wanted to give a try by posting the url inside [ ame ]tag.

Wow.. it works with YouTube, Yahoo Video & Myspace. But not others, especially not with my favourite DailyMotion.

Also I have noticed, the bottom line at the media player shows a some kind of broken tag like this " title="YouTube" target="_blank">YouTube

Is it normal? Does the bottom line at the Media Players shows like this to all?

I hope this will help you to find where the problem is?

Thanks for your support, and help.

Sounds like something didn't install correctly or completely. Make sure all the Goldbrick tables (if it creates any) are completely removed from your database. And then do a complete uninstall/reinstall of the AME product. And by complete, I mean re-upload all the files.

If all else fails, let us know and maybe The Geek, who understands this way better than I, will have time to give you some feedback on this one. But it sounds like it's something simple.

bigdaveakers 11-19-2008 02:35 PM

Is there any way that I can have the ame tags work in a custom page? That is I am running CND Garage on my site and I wish to be able to have ame tags work within it.

Thanks

ArnyVee 11-19-2008 03:13 PM

Quote:

Originally Posted by bigdaveakers (Post 1668689)
Is there any way that I can have the ame tags work in a custom page? That is I am running CND Garage on my site and I wish to be able to have ame tags work within it.

Thanks

What a coincidence, I was going to ask the same thing! :D

Any work-around on this?

Preech 11-19-2008 04:17 PM

Maybe I am messing up somewhere. But how do I get these to display in the vbadvanced news block.

Digital Jedi 11-19-2008 04:23 PM

Quote:

Originally Posted by Preech (Post 1668737)
Maybe I am messing up somewhere. But how do I get these to display in the vbadvanced news block.

That depends on how you want it displayed. Since vBadvanced already supports HTML, then all you'd have to do is paste the embed code into that module without AME having anything to do with it. But if your wanting to display the videos from a thread or post, then you'd just do what you'd normally do when you display thread/post content, with AME installed of course.

bartek24m 11-19-2008 07:20 PM

i have problem with this hack some of my video on my you tube are show as

"we're sorry, this video is no longer avaiable"
although the video is avaiablle on embed form :(


do you know why is it ?

Digital Jedi 11-19-2008 08:50 PM

Quote:

Originally Posted by bartek24m (Post 1668852)
i have problem with this hack some of my video on my you tube are show as

"we're sorry, this video is no longer avaiable"
although the video is avaiablle on embed form :(


do you know why is it ?

It depends on if the video has embedding disabled by the author.

GlamRockTalk 11-20-2008 03:04 AM

This mod ROCKS! :D

GoodKarmaKid 11-21-2008 02:25 AM

Quote:

Originally Posted by The Geek (Post 1609626)
Leave it with me, I am working on a couple ideas. But if you really need a mod that will only display for certain usergroups right now then try checking out passivevid as I am pretty sure that supports the option.

HTHs

I searched the forum and couldn't find what I was looking for. I currently have passivevid installed (an older edition) and see that they have now crippled the product and don't allow many feeds. Your mod looks awesome by the way.

My Question ? : Do I need to uninstall Passivevid, then install AME? Any special instructions for removing links, etc. I have quite a few videos that are currently be parsed correctly, I just don't want to break any links and have to go back and manually update after switching to your mod.

Thanks for your help,

Jason

Digital Jedi 11-21-2008 04:22 AM

Quote:

Originally Posted by GoodKarmaKid (Post 1669771)
I searched the forum and couldn't find what I was looking for. I currently have passivevid installed (an older edition) and see that they have now crippled the product and don't allow many feeds. Your mod looks awesome by the way.

My Question ? : Do I need to uninstall Passivevid, then install AME? Any special instructions for removing links, etc. I have quite a few videos that are currently be parsed correctly, I just don't want to break any links and have to go back and manually update after switching to your mod.

Thanks for your help,

Jason

The two aren't compatible, so passiveVid would have to be uninstalled first. I've notice some problems with the two even after passiveVid has been uninstalled, so make sure all tables the mod uses are clear from your database after removal. What you would do with your older videos would depend on how passiveVid handles it's media.

For example, people who were using custom BBCodes for sites like YouTube, MetaCafe, Google, etc, have the option of rebuilding their posts. In the AME CP there's an option that lets AME go through your posts and change your old BBCode tags to AME tags. So if you where using [youtube] tags, AME could go in and change all to [ame] tags.

I don't know if passiveVid handles media like that at all, or lets you do a similar conversion process before uninstalling it, but hopefully that helps you get started. I do highly recommend this product. But then, I am a little biased because I support the Add-On which adds support for 170 additional sites. ;)

GoodKarmaKid 11-21-2008 04:38 AM

Ok, thanks.

I'll give it a go, and post any trouble I run into. I'm pretty good at following instructions and I don't think I was doing anything special with passivevid, just using it "out of the box" so to speak so hopefully I will get lucky and it will go smooth.

If I f.. something up, I'll pay you to fix it :D.

Jason

GoodKarmaKid 11-21-2008 11:16 AM

Quote:

Originally Posted by Digital Jedi (Post 1669825)
I don't know if passiveVid handles media like that at all, or lets you do a similar conversion process before uninstalling it, but hopefully that helps you get started. I do highly recommend this product. But then, I am a little biased because I support the Add-On which adds support for 170 additional sites. ;)

I uninstalled passivevid, and installed ame, and it is kind of working. I'm not seeing anywhere in the AME control panel to upload the xml media definitions. I've looked, and looked and I don't see them anywhere. Maybe I'm blind.

Also, the Tools Options is non-existent from the AME control panel. I did manage to find the "tools" in a crazy way, I went to uninstall/Re-install the mod, and was presented with the tools screen, I reverted all passived vid links to raw urls, and then rebuilt them and youtube vids appear to be now working ok, but other sources don't and I obviously want all 160+ definitions to work.

I also need to do some formatting of the player box, where can I change the font color of the embed title for example?

I'm not a coder at all, but I'm good at following directions if someone can point me in the right direction.

Thanks, I really like all the features of this mod, excited to get it working correctly for my members.

Jason

EagleNick 11-21-2008 10:07 PM

When I post a link to a YouTube video, it embeds just fine.
However, the same is not true with a Yahoo video link. This one, for example: http://video.yahoo.com/watch/3864917?fr=yvmtf

How do I resolve this?

Thanks.

solboy 11-22-2008 12:12 AM

Quote:

Originally Posted by EagleNick (Post 1670303)
When I post a link to a YouTube video, it embeds just fine.
However, the same is not true with a Yahoo video link. This one, for example: http://video.yahoo.com/watch/3864917?fr=yvmtf

How do I resolve this?

Thanks.

CNN links dont work also.

Digital Jedi 11-22-2008 12:25 AM

Quote:

Originally Posted by EagleNick (Post 1670303)
When I post a link to a YouTube video, it embeds just fine.
However, the same is not true with a Yahoo video link. This one, for example: http://video.yahoo.com/watch/3864917?fr=yvmtf

How do I resolve this?

Thanks.

The URL structure is different then the typical URL for a Yahoo! video. It will have to be udpated.


Quote:

Originally Posted by solboy (Post 1670364)
CNN links dont work also.

Could you post the link to a couple of examples in my thread?


All times are GMT. The time now is 03:12 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.04249 seconds
  • Memory Usage 1,886KB
  • 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
  • (5)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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