PDA

View Full Version : Major Additions - AME 2.5 - Media Embedding for posts, sigs, vm's, groups and blogs


Pages : 1 2 3 [4] 5 6 7

The Geek
07-20-2009, 08:46 AM
That isn't AME. AME doesn't add tags like that.

Scitz0
07-22-2009, 09:55 AM
I just installed this module on my 3.8.3 forum but I have a problem with the import. No matter what I try it always say(translated from swedish) "No file uploaded and no local file found.". And yes, I use AME CP->Import Definitions. Tried to browse to the file stored on my computer, tried to upload the file to the server and import localy and I even tried to rename the file so there are no special chars or spaces. The files I have tried are from https://vborg.vbsupport.ru/showthread.php?t=195884&page=49 , tried both the master xml and a single definition with the same result. Not sure what to do.

Need help resolving this please.

Charles_1
07-22-2009, 09:56 AM
Okay, the first major thing I'm running into is, the non-embeddable videos are indeed converting to links, but the link doesn't go a valid URL. It seems to be using the title instead of the URL.

Example
URL: http://www.youtube.com/watch?v=XZcG0NBMcDA&feature=related
Converts: https://vborg.vbsupport.ru/ YouTube - Boyz II Men - End Of The Road (http://www.cogonline.net/forums/YouTube%20-%20Boyz%20II%20Men%20-%20End%20Of%20The%20Road)

URL: http://www.youtube.com/watch?v=jsd0pKGr2Os
Converts: https://vborg.vbsupport.ru/ YouTube - The Jets - The Same Love (http://www.cogonline.net/forums/YouTube%20-%20The%20Jets%20-%20The%20Same%20Love)


Also, the source code in the default YouTube definition is no longer used by YouTube, so not all videos will load in that case.
I have similar issue on vBulletin v3.8.2 and AME v2.5.5.

When I post full URL (http://www.youtube.com/watch?v=i8OLcbxZ0cA) everything is OK, player will appear. But when I post URL without http://, it shows only link with this target:
http://www.svethardware.cz/forum/www.youtube.com/watch?v=i8OLcbxZ0cA

It adds URL of our forum to beginning and link is of course not working. How to change it please? Besides that this mod is great becouse users don't need to learn something new, thanks.

Scitz0
07-22-2009, 10:35 AM
Got it to work now, had to retry several times before it accepted the xml.

The Geek
07-23-2009, 10:35 AM
I have similar issue on vBulletin v3.8.2 and AME v2.5.5.

The example above isn't related to this. Those examples were working as intended as embedding was disabled (in fact, neither of those videos are valid links anymore anyway)


When I post full URL (http://www.youtube.com/watch?v=i8OLcbxZ0cA) everything is OK, player will appear. But when I post URL without http://, it shows only link with this target:
http://www.svethardware.cz/forum/www.youtube.com/watch?v=i8OLcbxZ0cA

It adds URL of our forum to beginning and link is of course not working. How to change it please? Besides that this mod is great becouse users don't need to learn something new, thanks.

However this I just confirmed as indeed a bug. The bug is that if no protocol is included (i.e. no http://) then the link will be malformed. I have included the fix in the next release but as I am heading out on Holiday Saturday, Ill post it here for those that want to apply the fix sooner.

in includes/ame_bbcode.php on or around line 492 find


$url = str_replace(array("", "", "", ""), array("","","",""), $param1);


and directly below it, add:


if (!preg_match('#^[a-z0-9]+(?<!about|javascript|vbscript|data):#si', $url))
{
$url = "http://$url";
}


HTHs

biome.pat
07-23-2009, 01:52 PM
I think I might have a similar issue. I just upgraded to vB 3.8.3, and I'm finding that valid video links convert to standard URL tags, not AME tags. I don't use the WYSIWYG editor, so I don't think it has anything to do with the color tags, if that makes a difference.

Not sure if it's important, but when it changes to URL tags, the link is displayed as if embedding were disabled:
102400

Also, I noticed that if I manually change the URL tags to AME tags, it shows up correctly, BUT if I try to edit the post again, the AME tags revert back to URL tags. But the ame_strip function seems to be doing this, so maybe it's on purpose, with the expectation that it will be converted back to AME tags?

Anyhow, maybe I'll jump back to the previous version of AME, but I thought I'd let you know about it :)

Thanks for all your great work with this mod, by the way!

biome.pat
07-23-2009, 02:15 PM
Mod is also not working for me. Mine is a fresh install of vbulletin version 3.8.3 and i have triple checked to ensure all files are in place and that I have the settings as they should be... links are simply links (youtube videos, embedding allowed) whether new posts or old ones edited. The videos are simply not appearing. Just a heads-up that it's not an isolated incident... great looking mod though, so I'll try to be patient :)
Let me guess -- and the tooltip was showing up when you hovered the link, saying "External Embedding Not Available"?

I think I just figured this out:
Turn off "Extract destination data" in the settings. It seems like it's detecting embedding as disabled regardless. You'll need to rebuild to fix old posts, but any new posts should just show up.

This is vB3.8.3 by the way, in case it helps Geek!

Cheers all

UPDATE: The only other plug-in that seemed like it might conflict was the "Auto-Merge Post" plugin, which also uses the newpost_complete hook. I disabled it and the problem was still there.

PossumX
07-23-2009, 11:36 PM
Not sure if it's important, but when it changes to URL tags, the link is displayed as if embedding were disabled:
102400

Also, I noticed that if I manually change the URL tags to AME tags, it shows up correctly, BUT if I try to edit the post again, the AME tags revert back to URL tags. But the ame_strip function seems to be doing this, so maybe it's on purpose, with the expectation that it will be converted back to AME tags?


Same issue here on vB 3.8.3 and AME 2.5.5, no matter what, the videos will no longer embed and only show up as titles.

SMMensans
07-24-2009, 03:51 AM
This mod is great. Thanks to everyone involved.

Is there a way to change the color of the font above the videos without changing the color in the actual forum style? If not is there a way to change which font color (First Alternating Color), it pulls from in the forum style?

See the image below:

https://vborg.vbsupport.ru/external/2009/08/42.jpg

The Geek
07-24-2009, 10:34 AM
Let me guess -- and the tooltip was showing up when you hovered the link, saying "External Embedding Not Available"?

I think I just figured this out:
Turn off "Extract destination data" in the settings. It seems like it's detecting embedding as disabled regardless. You'll need to rebuild to fix old posts, but any new posts should just show up.

This is vB3.8.3 by the way, in case it helps Geek!

Cheers all

UPDATE: The only other plug-in that seemed like it might conflict was the "Auto-Merge Post" plugin, which also uses the newpost_complete hook. I disabled it and the problem was still there.

Not sure about the automerge hack (which I noticed in your attachement) however i did notice that the video that embeded clearly didn't extract the definition data as the title was just 'You Tube'. There is either a subtle bug with validation when extraction isn't enabled (or working) or you have extraction on, but your server doesn't allow it (i.e. you don't have ccurl). Edit the Youtube definition and either remove the validation regexp or turn off the 'extraction' setting.

HTHs

The Geek
07-24-2009, 10:35 AM
This mod is great. Thanks to everyone involved.

Is there a way to change the color of the font above the videos without changing the color in the actual forum style? If not is there a way to change which font color (First Alternating Color), it pulls from in the forum style?

See the image below:

https://vborg.vbsupport.ru/external/2009/08/42.jpg

You can customise the container and such by editing the relevant ame templates.

HTHs

The Geek
07-24-2009, 10:36 AM
Same issue here on vB 3.8.3 and AME 2.5.5, no matter what, the videos will no longer embed and only show up as titles.

I need URLs as examples otherwise I can't test. Try turning off extraction and/or removing the validation regexp from the youtube definition.

InTeNsE-HuMoR
07-24-2009, 07:36 PM
I'm getting the following error when attempting to embed a game from gamesopoly.com:

Parse error: syntax error, unexpected T_STRING in /home/----/public_html/forums/includes/ame_bbcode.php(323) : regexp code on line 1

Fatal error: preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Failed evaluating code: ame_match(&quot;http://www.gamesopoly.com/game/1979/No-More-Reinforcements.html&quot;, &quot;&quot;, 1, &quot;~value=&quot;http://www\.([\w]+\.[\w]+/[\w-=%/]+)\.swf~sim&quot;, &quot;&quot;,$ameinfo) in /home/----/public_html/forums/includes/ame_bbcode.php on line 323

Can anyone help?

SMMensans
07-28-2009, 05:11 AM
You can customise the container and such by editing the relevant ame templates.

HTHs

Appreciate the help. From the AME Container template

<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" width="$ameinfo[width]" style="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>

I can see where it grabs the tcat image but I don't see any info about the fonts. I'm sure it's there but I'm new to this.

webgroup
07-29-2009, 06:07 PM
does this hack includes definitions for hulu?
or how can I make hulu to work with this??

thanks

wolfstream
07-29-2009, 06:14 PM
does this hack includes definitions for hulu?
or how can I make hulu to work with this??

thanks

Use the linked definitions file, and that will work.

webgroup
07-30-2009, 04:29 AM
it did not worked in my forum

jca2112
07-31-2009, 02:36 PM
The default Amazon.com link definition seems to have trouble parsing certain Amazon links.

The preferred (and shortest) url to link to an Amazon product page for affiliates is:
http://www.amazon.com/dp/ASIN/?tag=yourID

(where ASIN is the 10 digit Amazon product ASIN number and yourID would be the Amazon Affiliate ID)

An example of a working url would be:
http://www.amazon.com/dp/B00005QGAT/?tag=yourID


Unfortunately AME's Amazon definition parses and rewrites this url as:
http://www.amazon.com/d/p/B00005QGAT/?tag=yourID

An extra / (slash) is being added between the d and p which breaks the link.

I assume this can be corrected with a different regular expression setting? Does anyone know what the fix would be?

ski diva
08-02-2009, 09:44 AM
I have 3.8.2, and this plug-in made it impossible for users to edit or change their signatures.

Anyone else have this problem?

Yellow Slider
08-03-2009, 12:20 PM
I can't install the xml file, I have 3+ million posts on my board, what can I do? importing it takes more then 2-3 hours and then it stuck.
I'm now trying to delete the ame_flad field from the post table and reinstall it, but the query to drop the ame_field takes a lot of time too.

do you know about problems with the AME on big boards? is there anything I can do in order to install it in another way?

The Geek
08-03-2009, 12:46 PM
I'm getting the following error when attempting to embed a game from gamesopoly.com:



Can anyone help?

That is a custom definition. Not sure what the problem is without knowing the definition. If it is in DJ's add on thread, try posting the problem (including an example URL and attach an export of the definition to your post). I have just erturned from vacation so am pretty swamped, but will try to look at it when I get some time

The Geek
08-03-2009, 12:47 PM
Appreciate the help. From the AME Container template


I can see where it grabs the tcat image but I don't see any info about the fonts. I'm sure it's there but I'm new to this.

The info will be in the tcat css definition (or it will be inherited from the parent element). You can use the style attribute to override the fonts though.

HTHs

The Geek
08-03-2009, 12:52 PM
The default Amazon.com link definition seems to have trouble parsing certain Amazon links.

The preferred (and shortest) url to link to an Amazon product page for affiliates is:
http://www.amazon.com/dp/ASIN/?tag=yourID

(where ASIN is the 10 digit Amazon product ASIN number and yourID would be the Amazon Affiliate ID)

An example of a working url would be:
http://www.amazon.com/dp/B00005QGAT/?tag=yourID


Unfortunately AME's Amazon definition parses and rewrites this url as:
http://www.amazon.com/d/p/B00005QGAT/?tag=yourID

An extra / (slash) is being added between the d and p which breaks the link.

I assume this can be corrected with a different regular expression setting? Does anyone know what the fix would be?

AME is designed to accept the URL formats that users will copy and paste from Amazon itself (which I suspect wouldnt normally be this example). You can however customize the replae code how you see fit. Though I have no idea the correct format you need, I suspect something like:


<a href="http://www.amazon.$p1/dp/$p3/?tag=yourid" target="_blank" title="$ameinfo[title]"><img src="images/misc/amazon_icon.gif" border="0" alt="$ameinfo[title]" /></a> <a href="http://www.amazon.$p1/dp/$p3/?tag=yourid" target="_blank" title="$ameinfo[title]">$ameinfo[title]</a>


Note that in the above change, I changed:
http://www.amazon.$p1/$p2/$p3/

to

http://www.amazon.$p1/dp/$p3/?tag=yourid

HTHs

The Geek
08-03-2009, 12:53 PM
I have 3.8.2, and this plug-in made it impossible for users to edit or change their signatures.

Anyone else have this problem?

Nope, never seen that reported before. Do you have another Signature modification. What happens if you disable AME in signatures?

The Geek
08-03-2009, 12:56 PM
I can't install the xml file, I have 3+ million posts on my board, what can I do? importing it takes more then 2-3 hours and then it stuck.
I'm now trying to delete the ame_flad field from the post table and reinstall it, but the query to drop the ame_field takes a lot of time too.

do you know about problems with the AME on big boards? is there anything I can do in order to install it in another way?

There isn't any reported issue with AME running on big boards, however during installation AME adds a TINYINT column to the post table for perfomance reasons. This installation is what is slowing down your install.

My suggestion is to manually add the column using phpMyAdmin or similar tools preferably closing down the site during the install.

Then run the install and AME will skip that process elegantly as the column would already exist.

HTHs

ski diva
08-03-2009, 05:22 PM
Nope, never seen that reported before. Do you have another Signature modification. What happens if you disable AME in signatures?

No, no other signature modifications. When I disable AME, the problem goes away,

Verionia
08-04-2009, 10:38 PM
This work for 3.83?

thegrissom
08-04-2009, 10:42 PM
This work for 3.83?

yes not soucy.

Verionia
08-05-2009, 01:57 AM
Thankks, it works for 3.83!

Bonee70
08-05-2009, 10:32 PM
Hello, I really love this piece of software but it is not really working for the EA-Sports links.

I run a EA-Madden-League and members post their Game-Highlights as links on the EA-Sports site.

The posted links to the Videos can look like this:

1) http://www.easportsworld.com/en_US/video/8157415

and is automatically converted into

2) http://beta.easports.com/media/play/video/8157415

When posting the first link on my board, AME converts the link into the container, showing a nice EA-Logo and the link on top of the container is directing the user to the correct EA site, but the video won't start. Instead I get the triangle with a exclamation mark in it.

When people post the converted link (#2) it just shows up unconverted (without the container) as a simple link.

I have made an example on my board to show the problem. May anyone give me a hint what to change in the EA-Sports definition so that the replay videos can be played within the post on my board when either #1 or #2 link gets posted? Thank you very much!

Here is the example how the EA links (#1 and #2) show up within a post on my board:

http://www.maddenliga.de/forum/showthread.php?p=12271#post12271

The Geek
08-06-2009, 07:02 AM
No, no other signature modifications. When I disable AME, the problem goes away,

I can't reproduce this. Do you have any custom definitions installed that could be causing the problem?

The Geek
08-06-2009, 07:05 AM
Hello, I really love this piece of software but it is not really working for the EA-Sports links.

I run a EA-Madden-League and members post their Game-Highlights as links on the EA-Sports site.

The posted links to the Videos can look like this:

1) http://www.easportsworld.com/en_US/video/8157415

and is automatically converted into

2) http://beta.easports.com/media/play/video/8157415

When posting the first link on my board, AME converts the link into the container, showing a nice EA-Logo and the link on top of the container is directing the user to the correct EA site, but the video won't start. Instead I get the triangle with a exclamation mark in it.

When people post the converted link (#2) it just shows up unconverted (without the container) as a simple link.

I have made an example on my board to show the problem. May anyone give me a hint what to change in the EA-Sports definition so that the replay videos can be played within the post on my board when either #1 or #2 link gets posted? Thank you very much!

Here is the example how the EA links (#1 and #2) show up within a post on my board:

http://www.maddenliga.de/forum/showthread.php?p=12271#post12271

SOunds like a problem with the custom definition that you are using. Sadly I can't really offer direct support in this thread for custom definitions, but if you post in DJs thread (assuming thats where you got it from) with example URLs then I will see if I can set some time aside to investigate it for you.

Bonee70
08-06-2009, 10:26 AM
Thanks for the reply Geek, I have put my post into DJs thread (https://vborg.vbsupport.ru/showthread.php?t=195884&page=50) (post #740).

quasan
08-06-2009, 03:54 PM
@the developer:
edited. i am sorry . I should have checked that it was an extension to your mod

sorry for the mess

The Geek
08-06-2009, 04:41 PM
@the developer:

you should cleary state that you add your referal id to the amazon links. I am really annoyed that hundreds of amazonlinks on my board now have your amazon-referral id on it before i noticed it

Look. I really like your mod and have nothing against that you earn some bucks with this mod, but be transparent please.

#fail

Huh? I don't have a referral id nor have I ever been part of their (or any) network. Are you sure you are using only the default version? Maybe you imported a custom definition? I have just checked the source code and the default definition does not contain an affiliate code (at least one that I can see)

ski diva
08-06-2009, 05:37 PM
I can't reproduce this. Do you have any custom definitions installed that could be causing the problem?

Nope.

tkam
08-06-2009, 06:58 PM
@the developer:

you should cleary state that you add your referal id to the amazon links. I am really annoyed that hundreds of amazonlinks on my board now have your amazon-referral id on it before i noticed it

Look. I really like your mod and have nothing against that you earn some bucks with this mod, but be transparent please.

#fail

Don't blame AME this is not a part of the default install, it's from DJ's AME definitions: https://vborg.vbsupport.ru/showthread.php?t=195884. You can edit out the referral id, it's in like 5 or 6 spots I think.

quasan
08-06-2009, 09:12 PM
i updated my post. i am really sorry for the mixup :(

nick-harper
08-07-2009, 10:14 AM
How can I make it so that guests do not get a link but an error message saying "Please Register to View the Video"?

The Geek
08-07-2009, 11:17 AM
How can I make it so that guests do not get a link but an error message saying "Please Register to View the Video"?

set usergroup permissions so they don't get the video, then edit the ame_templates to show your registration link instead of the URL.

HTHs!

Nadeemjp
08-07-2009, 11:23 AM
hi the geek
i am having a trouble at my forum displaying the you tube videos.
when a link is posted, two videos are displayed.
please see the following link for reference:
http://www.familybunker.com/forums/music-discuss-enjoy-download/6973-what-song-u-listening-rite-now-4.html#post85664
any solutions?

Ossedis
08-07-2009, 12:31 PM
Seems to be you have tryed to install more than 1 youtube implementer?

Hence all the code around one of the 2 videos.

Nadeemjp
08-07-2009, 01:57 PM
how do i correct it?

Nadeemjp
08-07-2009, 01:59 PM
i have the following definitions of youtube, which ones should i delete?

YouTube
Embed YouTube.com Videos! DUPLICATE_youtube_1248346015_2
YouTube (HQ/HD)
Embed YouTube.com High Quality and High Definition Videos (fmt=18& or fmt=22&) youtube_hqhd
YouTube (Playlists)
Embed YouTube.com Playlists!
You Tube
Automatically youtubes your entries!

The Geek
08-07-2009, 02:18 PM
hi the geek
i am having a trouble at my forum displaying the you tube videos.
when a link is posted, two videos are displayed.
please see the following link for reference:
http://www.familybunker.com/forums/music-discuss-enjoy-download/6973-what-song-u-listening-rite-now-4.html#post85664
any solutions?

Ossedia is right. As per the troubleshooting and readme posts, double videos appear when you have duplicate definitions. You need to delete one of the duplicates.

HTHs

Nadeemjp
08-07-2009, 02:47 PM
i understand i have to delete the duplicate, but as per my last post, which one is the duplicate one?

The Geek
08-07-2009, 03:18 PM
i understand i have to delete the duplicate, but as per my last post, which one is the duplicate one?

Don't know as AME only comes with 1. My guess is that it is one of the ones that only have YouTube in the title (not HD or playlists). You can try making each one inactive one by one then edit and save a post that is currently double dipping.

Nadeemjp
08-08-2009, 05:06 AM
yeah u were right geek, the problem is solved

jmillsss
08-08-2009, 08:51 PM
Installed - awesome mod!

Is it possible to get rid of the blue bar above the video?

https://vborg.vbsupport.ru/external/2009/08/33.jpg

kalisekj
08-09-2009, 04:31 PM
Ok Folks I am desperate for a solution to this dilemma. I had Goldbrick media installed , which put tags on all supported media as URL . How can I have Ame go and change all tags from Media to ame or url? Or How Can I remove all [media] tags and have ame then see the url's to embed them?

futuredood
08-09-2009, 10:28 PM
Use the linked definitions file, and that will work.

I agree I installed the definitions as suggested, yet it still doesn't work. It just shows the link.

The Geek
08-10-2009, 08:36 AM
Installed - awesome mod!

Is it possible to get rid of the blue bar above the video?


Sure, just edit the AME templates.

Ok Folks I am desperate for a solution to this dilemma. I had Goldbrick media installed , which put tags on all supported media as URL . How can I have Ame go and change all tags from Media to ame or url? Or How Can I remove all [media] tags and have ame then see the url's to embed them?

There is a tool in the AME CP for converting other media tags (like [media]) back into URL tags. Once that is done, there is another tool that will convert urls into AME tags.

HTHs

jmillsss
08-11-2009, 12:25 AM
Sure, just edit the AME templates

Thanks - Can someone tell me where/how to do this? :D

testbot
08-11-2009, 05:34 PM
how can we add a new variable?

i see $ameinfo[url] and $ameinfo[title] but would like to add $ameinfo[threadtitle]

thought it would be just a matter of adding $threadinfo[title] but it wasn't.

thanks for the help.

InTeNsE-HuMoR
08-11-2009, 07:14 PM
That is a custom definition. Not sure what the problem is without knowing the definition. If it is in DJ's add on thread, try posting the problem (including an example URL and attach an export of the definition to your post). I have just erturned from vacation so am pretty swamped, but will try to look at it when I get some time

Sorry, forgot about my post.

Anyway, here is the url i'm trying to embed:

http://www.gamesopoly.com/game/1979/No-More-Reinforcements.html

I'm using AME 2.5.5

The display definition should be attached.

testebr
08-13-2009, 12:14 PM
How to fix accentuation fail on title?

Example:

YouTube - 225 Igreja Universal TV Globo Jornal da Globo Edir Macedo é suspeito de enriquecimento il?*cito

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

Thanks

kalisekj
08-13-2009, 04:13 PM
Where is the tool to have all url's (supported) converted to ame? Doooh Figured it Out Thanks to everyone for their Help!

mariguanero
08-17-2009, 11:15 PM
Installed - awesome mod!

Is it possible to get rid of the blue bar above the video?

https://vborg.vbsupport.ru/external/2009/08/33.jpg

in the code of the template wich is the variable that we have to change or delet to get rid of this

milsirhc
08-18-2009, 08:35 AM
Can someone help me to create the definition to embed media from www.iamboredr.com?

I can't work it out.

Thanks!

Verionia
08-18-2009, 07:12 PM
in the code of the template wich is the variable that we have to change or delet to get rid of this

Go to Display definitions and uncheck contain for youtube

The Dawg
08-18-2009, 08:54 PM
Noob question.

Previously I had HTML enabled. Is there a tool I can use via AdminCP, Shell, etc to search and replace all posts? Even if it worked just for YouTube it would be great.

* I searched this mod and did not see these questions answered.

Thanks.

The Dawg
08-18-2009, 09:03 PM
Thanks - Can someone tell me where/how to do this? :D
The templates are added to your board's skins. So go to your Style Manager and you will find them there. :)

The Smoking Gun
08-18-2009, 09:51 PM
Way too many pages of posts to pour through....but I have one simple question.

Will this allow me to post locally hosted .wmv videos, as it does all the remotely hosted ones?

Simply put, when I get a funny windows media player video file I would like to be able to embed it in a post for my members to have a good laugh!

I do realize I may also need another mod that works with this one to do it, so any help would be appreciated since 3.8 was my first purchased use of vB, and didn't have access to this end of the back office on the earlier versions, I globally moderated on another board!

Thanks for your help,

TSG!

Stryker412
08-18-2009, 11:03 PM
Geek, what resolution should I set AME to so it defaults to widescreen?

Edit: Nevermind, I wound up using 576x324 and it looks nice.

Daky
08-19-2009, 12:59 AM
What should i do about this error in admin/amecp/tools/rebuil/posts

Warning: unserialize() expects parameter 1 to be string, array given in [path]/admincp/automediaembed_admin.php on line 1264

http://my.jetscreenshot.com/201/20090819-wk4l-156kb


Also,
I did try to rebuild post cache in (admin/amecp/tools/rebuil/posts) but my old posts with videos are still showing only as URL - re-saving posts will put video back <---- re-did it - ALL OK NOW

I used to have golbrick before and some of the links are still showing in this format:

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

and they r not being converted back to URL.

Lastly, is it possible to display videos in quotes? Now i only see link to youtube for example.


Any suggestion?
Tnx in advance!

hippyTRIBE
08-19-2009, 09:44 AM
Just wanted to say THANK YOU SOOOO MUCHHHHHHH....!!!

installed.. and works like a charm !!!

The Geek
08-19-2009, 12:24 PM
Way too many pages of posts to pour through....but I have one simple question.

Will this allow me to post locally hosted .wmv videos, as it does all the remotely hosted ones?

Simply put, when I get a funny windows media player video file I would like to be able to embed it in a post for my members to have a good laugh!

I do realize I may also need another mod that works with this one to do it, so any help would be appreciated since 3.8 was my first purchased use of vB, and didn't have access to this end of the back office on the earlier versions, I globally moderated on another board!


Thanks for your help,

TSG!

Check DJ's add on thread. I believe that he has some definitions for locally hosted files.

The Geek
08-19-2009, 12:28 PM
What should i do about this error in admin/amecp/tools/rebuil/posts

Warning: unserialize() expects parameter 1 to be string, array given in [path]/admincp/automediaembed_admin.php on line 1264

http://my.jetscreenshot.com/201/20090819-wk4l-156kb


Also,
I did try to rebuild post cache in (admin/amecp/tools/rebuil/posts) but my old posts with videos are still showing only as URL - re-saving posts will put video back <---- re-did it - ALL OK NOW

I used to have golbrick before and some of the links are still showing in this format:

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

and they r not being converted back to URL.

Lastly, is it possible to display videos in quotes? Now i only see link to youtube for example.


Any suggestion?
Tnx in advance!

I suspect that the unserialize error is a one off, all it is doing is trying to save and redeploy your last used settings for that particular page. It won't actually affect the running of the page.

The convert media tags SHOULD revert the old media tags, however it may require a slightly more complex regexp type pattern. Withouth spending some time on it, I am not sure what theat would be.

re: showing in quotes, there is no way to disable this without a file edit, and it is the first time it has been mentioned. I will consider it for a future release.

Just wanted to say THANK YOU SOOOO MUCHHHHHHH....!!!

installed.. and works like a charm !!!

Thanks, don't forget to click install ;)

Daky
08-19-2009, 03:32 PM
I suspect that the unserialize error is a one off, all it is doing is trying to save and redeploy your last used settings for that particular page. It won't actually affect the running of the page.

Yups,... all went fine script works it just that this error message bothers me,... is there maybe anything that can be removed from that file so no more error?

The convert media tags SHOULD revert the old media tags, however it may require a slightly more complex regexp type pattern. Withouth spending some time on it, I am not sure what theat would be.

;( i did trey several ways no luck,... do u maybe have a hint,- or anybody else?

re: showing in quotes, there is no way to disable this without a file edit, and it is the first time it has been mentioned. I will consider it for a future release.

My members are already `crying` because of this,... i just switched from GB (where this was working) - Hopefully this will be implemented in next release, and hopefully it will be soon ;)

Itchy Nips
08-19-2009, 04:57 PM
I'm testing out this mod and most vids are working fine *kudos to you!*

this (random) video that I pulled from metacafe is not working though. Any reason why?
http://www.metacafe.com/watch/yt-HJr...tadium_speech/

Kanustep
08-20-2009, 10:31 AM
Today this error appear to me:

Warning: include([path]/amecache/findonly.php) [function.include]: failed to open stream: No such file or directory in [path]/includes/ame_bbcode.php on line 74

Warning: include() [function.include]: Failed opening '[path]/amecache/findonly.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_bbcode.php on line 74


Is there any suggestion that could fix this? This only appear each time people try to post on "redirection window", without need to include AME on the post.

DavidBrown
08-20-2009, 05:27 PM
I have no clue how to add this. Vbulletin is vastly inferior to phpbb. Everything on phpbb could be done with the click of a mouse or through tech support, not ridiculous downloads with coding that I don't even understand nor know how to use.

If anybody can help me I would appreciate it. I'm extremely frustrated right now because I spend hours on the phone every day with VB over things that could be accomplished in seconds on phpbb.

Digital Jedi
08-21-2009, 05:23 PM
I have no clue how to add this. Vbulletin is vastly inferior to phpbb. Everything on phpbb could be done with the click of a mouse or through tech support, not ridiculous downloads with coding that I don't even understand nor know how to use.

If anybody can help me I would appreciate it. I'm extremely frustrated right now because I spend hours on the phone every day with VB over things that could be accomplished in seconds on phpbb.
There's no coding required to install this. The instructions for a New Install are included in the ZIP file in the Readme text. Only three steps, one of which is downloading the ZIP file.

testbot
08-21-2009, 05:41 PM
I have no clue how to add this. Vbulletin is vastly inferior to phpbb. Everything on phpbb could be done with the click of a mouse or through tech support, not ridiculous downloads with coding that I don't even understand nor know how to use.

If anybody can help me I would appreciate it. I'm extremely frustrated right now because I spend hours on the phone every day with VB over things that could be accomplished in seconds on phpbb.

nothing can touch vBulletin when it comes to customizing things. phpbb is good for someone that doesn't care about their site.

that's kinda crazy to say something is inferior just because you don't know how to use something or your use to using a different system. kinda makes you look like an a$$.

i've used all the major forum software and yes there is a slight learning curve with vbulletin but it's far superior to the rest.

just my opinion.

The Dawg
08-21-2009, 10:11 PM
Noob question.

Previously I had HTML enabled. Is there a tool I can use via AdminCP, Shell, etc to search and replace all posts? Even if it worked just for YouTube it would be great.

* I searched this mod and did not see these questions answered.

Thanks.

Anyone?

Digital Jedi
08-22-2009, 02:25 AM
Anyone?
No, not with the AME tools. That would only replace BBCode. I'm afraid that would all have to be done manually, post by post.

The Dawg
08-22-2009, 07:16 AM
No, not with the AME tools. That would only replace BBCode. I'm afraid that would all have to be done manually, post by post.
Thanks, I figured out a way to convert most of them using cleaner from within IMPEX/tools.

yahoooh
08-23-2009, 07:26 PM
i use curl
just to know is if (function_exists("curl_int")) = if (function_exists("curl_init"))

if it is bug plz tell me

yahoooh
08-23-2009, 07:31 PM
it is bug after i change it dailymotion work and others also i still test others links

The Geek
08-23-2009, 07:43 PM
i use curl
just to know is if (function_exists("curl_int")) = if (function_exists("curl_init"))

if it is bug plz tell me
Funnily enough, I caught this while working on the new version just the other day. Since it hadn't been mentioned it was just going to be a silent change ;)

The Geek
08-23-2009, 07:47 PM
I have no clue how to add this. Vbulletin is vastly inferior to phpbb. Everything on phpbb could be done with the click of a mouse or through tech support, not ridiculous downloads with coding that I don't even understand nor know how to use.

If anybody can help me I would appreciate it. I'm extremely frustrated right now because I spend hours on the phone every day with VB over things that could be accomplished in seconds on phpbb.

Totally stumped as I have no clue what you are having a problem with. Read the Readme and let me know if there is a problem (but try to be specific please)

Today this error appear to me:

Warning: include([path]/amecache/findonly.php) [function.include]: failed to open stream: No such file or directory in [path]/includes/ame_bbcode.php on line 74

Warning: include() [function.include]: Failed opening '[path]/amecache/findonly.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_bbcode.php on line 74


Is there any suggestion that could fix this? This only appear each time people try to post on "redirection window", without need to include AME on the post.

The findonly.php file (in the above folder) is either missing or (more likely) the permissions have recently been changed on it. You can rebuild the cache files by toggling off and on the cache setting in AME

I'm testing out this mod and most vids are working fine *kudos to you!*

this (random) video that I pulled from metacafe is not working though. Any reason why?
http://www.metacafe.com/watch/yt-HJr...tadium_speech/

Really not sure, best to post it in the therad where you got that definition from (assume its DJ's), then it can be looked into a bit better and keep this thread focused on the core project :)


My members are already `crying` because of this,... i just switched from GB (where this was working) - Hopefully this will be implemented in next release, and hopefully it will be soon ;)

Its actually a 'feature' of AME. In other words, I spent time coding a solution to prevent ugly quoting of videos. Like I said, Ill see if I can write in an option for it, but first time its been asked for ;)

hippyTRIBE
08-23-2009, 07:49 PM
Hello,

I was really happy to have such a mod in my forum untill i installed vB blog today. Ever since, I have been getting an error like this:

Database error in vBulletin 3.8.3:

Invalid SQL:
UPDATE blog_text SET ame_flag=1 WHERE blogtextid = 0;

MySQL Error : Unknown column 'ame_flag' in 'field list'
Error Number : 1054
Request Date : Sunday, August 23rd 2009 @ 09:16:39 AM
Error Date : Sunday, August 23rd 2009 @ 09:16:39 AM
Script : http://www.xxxxxxx.com/forum/blog...teblog&blogid=
Referrer : http://www.xxxxxxxx.com/forum/blog...php?do=newblog
IP Address : 219.64.128.82
Username : administrator
Classname : vB_Database
MySQL Version : 5.1.30

(i dont want to disclose my real site name so i edited it into xxxxxxx.com)

but the blog is posted anyway in the forum. Any idea, what could be the problem??


This was when i tried to embed a youtube link. So i tried to post a simple blog without any attachment, it still throws up an error like this:


Database error in vBulletin 3.8.3:

Invalid SQL:
UPDATE blog_text SET ame_flag=0 WHERE blogtextid = 0;

MySQL Error : Unknown column 'ame_flag' in 'field list'
Error Number : 1054
Request Date : Sunday, August 23rd 2009 @ 03:38:13 PM
Error Date : Sunday, August 23rd 2009 @ 03:38:13 PM
Script : http://www.xxxxxxx.com/forum/blog_post.php?do=updateblog&blogid=
Referrer : http://www.xxxxxxxx.com/forum/blog_post.php?do=newblog
IP Address : 219.64.131.145
Username : administrator
Classname : vB_Database
MySQL Version : 5.1.30


I'd appreciate if you could help me fix this. Thanks a lot !
plz note that the blog is posted anyway but leads to an error page. I have to go back to blog forum to check whether it's posted or not (this will confuse my users)

The Geek
08-23-2009, 07:51 PM
Check the AME tools (in the admincp). There is an option to add the ame flag to the blog system if you install it AFTER ame.

The Geek
08-23-2009, 07:53 PM
On a side note, the next version allows you to override size settings per definition and includes a test bed to test, troubleshoot and develop definitions. I will most likely wait until vb4.0 before releasing though.

hippyTRIBE
08-23-2009, 08:44 PM
Thanks a lot GEEK ..

Surprised to know you have anticipated future problems and keeps everything ready. Great work.

I just came to know, i have only 2 definitions. May be i should go out and dig more.

+1 thanks

Drago13
08-23-2009, 10:46 PM
Installed - awesome mod!

Is it possible to get rid of the blue bar above the video?

https://vborg.vbsupport.ru/external/2009/08/33.jpg

I am having the oposite problem.. After upgrading all i get is the bar.. you have to click on the bar , and it takes you to the site to watch the vid.. It was working fine before the up grade..
here is an example.... http://www.hodclan.com/showthread.php?t=2843

Digital Jedi
08-23-2009, 10:58 PM
I am having the oposite problem.. After upgrading all i get is the bar.. you have to click on the bar , and it takes you to the site to watch the vid.. It was working fine before the up grade..
here is an example.... http://www.hodclan.com/showthread.php?t=2843
You don't allow guests to view your forum.

Drago13
08-23-2009, 11:06 PM
sorry about that... should be able too now.. here is a youtube example..

http://www.hodclan.com/showthread.php?t=1048

Digital Jedi
08-23-2009, 11:10 PM
sorry about that... should be able too now.. here is a youtube example..

http://www.hodclan.com/showthread.php?t=1048
Still blocked for me.

Drago13
08-23-2009, 11:12 PM
darn... not sure why.. let me look at it .. sorry....

Drago13
08-23-2009, 11:17 PM
oooookay.. now it should let you... thanks for you patience and quick response...

Digital Jedi
08-23-2009, 11:49 PM
Yup, I can see them now. You're variables are not parsing for some reason. Looking at the source code, all you're quotes are escaped. The Geek might have to tackle this one.

Drago13
08-24-2009, 12:19 AM
Yup, I can see them now. You're variables are not parsing for some reason. Looking at the source code, all you're quotes are escaped. The Geek might have to tackle this one.
Thanks for trying... ;( It seems like it stopped after I updated...

Update... I figured out what was wrong.. Thanks DJ.. When you said "parsed" a light bulb went off.. I remembered some code i had changed because one of my threads was messing up.. fixed now.. again thanks...

testebr
08-24-2009, 11:23 AM
On a side note, the next version allows you to override size settings per definition and includes a test bed to test, troubleshoot and develop definitions. I will most likely wait until vb4.0 before releasing though.

How to fix accentuation fail on title?

Example:

YouTube - 225 Igreja Universal TV Globo Jornal da Globo Edir Macedo é suspeito de enriquecimento il?*cito

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

Thanks

If possible check for it in next release ;)

Ps: ISO-8859-1 charset on my board .

Ohiosweetheart
08-24-2009, 01:17 PM
I was getting these errors after upgrading vB to 3.8.4, and now after updating this mod, I'm still getting the same errors -

Warning: include(/home/admin/public_html/amecache/ameinfo.php) [function.include (http://kawfeeklub.com/function.include)]: failed to open stream: No such file or directory in [path]/includes/ame_bbcode.php on line 80

Warning: include() [function.include (http://kawfeeklub.com/function.include)]: Failed opening '/home/admin/public_html/amecache/ameinfo.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_bbcode.php on line 80

Warning: preg_replace() [function.preg-replace (http://kawfeeklub.com/function.preg-replace)]: Empty regular expression in [path]/includes/ame_bbcode.php on line 711


any ideas?

Digital Jedi
08-24-2009, 04:52 PM
I was getting these errors after upgrading vB to 3.8.4, and now after updating this mod, I'm still getting the same errors -

Warning: include(/home/admin/public_html/amecache/ameinfo.php) [function.include (http://kawfeeklub.com/function.include)]: failed to open stream: No such file or directory in [path]/includes/ame_bbcode.php on line 80

Warning: include() [function.include (http://kawfeeklub.com/function.include)]: Failed opening '/home/admin/public_html/amecache/ameinfo.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_bbcode.php on line 80

Warning: preg_replace() [function.preg-replace (http://kawfeeklub.com/function.preg-replace)]: Empty regular expression in [path]/includes/ame_bbcode.php on line 711


any ideas?
I think you're missing the aminfo.php file or it's in the wrong place.

Kits2gr
08-26-2009, 04:02 PM
Hello, I think you have a great product here but I need assistant on installing it to my forum. We followed the direction and installed everything. But when ever I hit new post, this error shows up:

Warning: require_once([path]/includes/ame_bbcode.php) [function.require-once]: failed to open stream: No such file or directory in............

Any idea why? everything else seems to work fine except when people are clicking new post or trying to reply.

Digital Jedi
08-26-2009, 08:29 PM
Hello, I think you have a great product here but I need assistant on installing it to my forum. We followed the direction and installed everything. But when ever I hit new post, this error shows up:



Any idea why? everything else seems to work fine except when people are clicking new post or trying to reply.
Usually that means files are missing. Make sure you put everything in the proper location.

Kits2gr
08-26-2009, 09:09 PM
Usually that means files are missing. Make sure you put everything in the proper location.

I checked everything and seems to be there. Here's a screen shot of the files:

https://vborg.vbsupport.ru/external/2009/08/19.jpg

and all the files from admincp to xml are there. What I did notice is that we have another forums folder right below customprofilepics which contains the same file as the highlighted forums folder. Do you think that can be causing interference?

Digital Jedi
08-27-2009, 02:38 AM
I checked everything and seems to be there. Here's a screen shot of the files:

https://vborg.vbsupport.ru/external/2009/08/19.jpg

and all the files from admincp to xml are there. What I did notice is that we have another forums folder right below customprofilepics which contains the same file as the highlighted forums folder. Do you think that can be causing interference?
What it appears you've done, is you've put the upload folder by itself inside the forums folder.

You're supposed to overwrite your existing forums folder with the forums folder from the ZIP file. This will put all the AME files in the correct place.

sergey22
08-27-2009, 04:19 AM
Hello,

I was wondering if there is any workaround to get RSS Feed Robot's post to be translated by AME.

Thanks!

Digital Jedi
08-27-2009, 04:26 AM
Hello,

I was wondering if there is any workaround to get RSS Feed Robot's post to be translated by AME.

Thanks!
It depends, it seems, on the forum, but most of the time it will work if the URL in the feeds post is a supported one. In other cases you have to put tags around the variable in the Feed Manager to get it to convert.

sergey22
08-27-2009, 04:42 AM
It depends, it seems, on the forum, but most of the time it will work if the URL in the feeds post is a supported one. In other cases you have to put tags around the variable in the Feed Manager to get it to convert.

Right now I have:
url={feed:link}]Watch at Youtube.[/url - "omitted starting [ and ] closing tags on purpose here

and this doesn't get converted, which tags should I be using?

Digital Jedi
08-27-2009, 04:52 AM
Right now I have:
url={feed:link}]Watch at Youtube.[/url - "omitted starting [ and ] closing tags on purpose here

and this doesn't get converted, which tags should I be using?

{feed:link}

Sorry, forgot to include the noparse tags in my last post, so the [AME] tags got stripped out.

Kanustep
08-27-2009, 07:54 AM
The findonly.php file (in the above folder) is either missing or (more likely) the permissions have recently been changed on it. You can rebuild the cache files by toggling off and on the cache setting in AME


I'm not able to findonly.php file too. What's the next step?

Kadi
08-27-2009, 04:11 PM
Hi,

Thanks for the mod.

I believe I installed everything correctly. Not getting errors or anything, but the links are still links.

What am I missing?

Thanks.

Digital Jedi
08-28-2009, 03:54 AM
I'm not able to findonly.php file too. What's the next step?
Did you do as he suggested and toggle the cache on/off settings?

Kanustep
08-28-2009, 09:01 AM
Yes I did and it worked, should I do anything else? My site uses pleanty of media, shouldn't cache help?

wheezyb
08-29-2009, 12:22 AM
any ideas about this guys?

Starting yesterday I've had issues with the viewing forum statistics (for a lack of a better term).

For example, I'll have 30 people online (and only have two forums and 99% of the traffic is in one forum), but in the forums home it will only show that 2-3 people are viewing the forum (when it is obviously not the case, multiple people are posting during this time).

When I click on currently active users, most users are from unknown locations. Underneath it reads: /clientscript/ame.js

I have the AME plugin installed, but I've had it installed for over a month with no such issues. Haven't made any CPanel modifications in a while either. Even still, I don't know why that plugin would have any effect on this issue (I don't even know that ame.js has anything to do with the AME plugin, just figured it did.)

I attached a screenshot of the currently active users to show what I'm talking about.

metalguy639
08-29-2009, 05:57 AM
Will this show up in a vbadvanced CMPS page? I have it set inside a news module and the videos are not showing up. What should I do to make them appear? I'm using vb 3.8.4 & CMPS 3.2.1.

What I did was make a custom module to display my custom news module copy (copied the news module to a new module). In this news module I want to show the parts of the post & the actual video, but all I get is the posts and not the video I embedded into that post. It works fine inside the forum where I posted the link, but it just does not show in vbadvanced CMPS. Any help would be great! Thanks.

wheezyb
08-30-2009, 12:45 AM
any ideas about this guys?

Starting yesterday I've had issues with the viewing forum statistics (for a lack of a better term).

For example, I'll have 30 people online (and only have two forums and 99% of the traffic is in one forum), but in the forums home it will only show that 2-3 people are viewing the forum (when it is obviously not the case, multiple people are posting during this time).

When I click on currently active users, most users are from unknown locations. Underneath it reads: /clientscript/ame.js

I have the AME plugin installed, but I've had it installed for over a month with no such issues. Haven't made any CPanel modifications in a while either. Even still, I don't know why that plugin would have any effect on this issue (I don't even know that ame.js has anything to do with the AME plugin, just figured it did.)

I attached a screenshot of the currently active users to show what I'm talking about.

so it was definitely an AME issue, I uninstalled it and the forum viewing stats went back to normal.

kinda scared to reinstall now :-/

metalguy639
08-30-2009, 09:58 PM
Will this show up in a vbadvanced CMPS page? I have it set inside a news module and the videos are not showing up. What should I do to make them appear? I'm using vb 3.8.4 & CMPS 3.2.1.

What I did was make a custom module to display my custom news module copy (copied the news module to a new module). In this news module I want to show the parts of the post & the actual video, but all I get is the posts and not the video I embedded into that post. It works fine inside the forum where I posted the link, but it just does not show in vbadvanced CMPS. Any help would be great! Thanks.

Nevermind I found the answer on the vbadvanced forum. all you need to do to make it show up in vb cmps is increase the character limit for words in the mod setting.

anthony_m
08-31-2009, 07:33 AM
I love the idea of this mod.... however, I am having somewhat of what seems to be an issue. (Mind you, I've only gone through about 20 of the 50 pages in this thread).

It appears to have installed just fine, I can access the cp and the settings. However, when I post a link to a youtube video, google video, or photobucket video (Only ones ive tried so far), it tells me that "External embedding not available". I read that this is supposed to happen with content that is set to not embed, but I made sure none of the content I tried had that setting.

I also installed the masterxml (Delta) def file successfuly...


Anyideas?

Here's a link to what I mean...
http://www.matsuvalleyohv.com/vbforum/showthread.php?p=526&posted=1#post526

Edit: "Direct link" works for photobucket... but still nothing else.

Edit: I also just noticed that this mod is for 3.8.0, and I have 3.8.3. Could this be my issue?

The Geek
08-31-2009, 12:30 PM
I love the idea of this mod.... however, I am having somewhat of what seems to be an issue. (Mind you, I've only gone through about 20 of the 50 pages in this thread).

It appears to have installed just fine, I can access the cp and the settings. However, when I post a link to a youtube video, google video, or photobucket video (Only ones ive tried so far), it tells me that "External embedding not available". I read that this is supposed to happen with content that is set to not embed, but I made sure none of the content I tried had that setting.

I also installed the masterxml (Delta) def file successfuly...


Anyideas?

Here's a link to what I mean...
http://www.matsuvalleyohv.com/vbforum/showthread.php?p=526&posted=1#post526

Edit: "Direct link" works for photobucket... but still nothing else.

Edit: I also just noticed that this mod is for 3.8.0, and I have 3.8.3. Could this be my issue?

Looks like your server doesnt allow extraction and so the youtube entry is failing to validate. Turn off extraction and/or delete anything in the validation field of your youtube entry.

The Geek
08-31-2009, 12:35 PM
so it was definitely an AME issue, I uninstalled it and the forum viewing stats went back to normal.

kinda scared to reinstall now :-/

Really not sure how that is related. If you look at the file, it is only 1 small function that simply toggles AME media on or off depending on the usergroups setting (unless the server and file have been compromised). I would double check the contents of your js file against a fresh copy.

meeja
08-31-2009, 01:11 PM
This is a great mod, and I've been a fan (as my users have been) of the ability to embed Youtube videos. I've decided to try similar with Amazon - but it just won't work.

Neither links nor thumbnails options for Amazon will work right. No idea why.

Any insights? I've attached screenshots of both.

Digital Jedi
08-31-2009, 02:22 PM
This is a great mod, and I've been a fan (as my users have been) of the ability to embed Youtube videos. I've decided to try similar with Amazon - but it just won't work.

Neither links nor thumbnails options for Amazon will work right. No idea why.

Any insights? I've attached screenshots of both.
You appear to have more than one Amazon definition active, so they're doubling up.

anthony_m
08-31-2009, 04:25 PM
Looks like your server doesnt allow extraction and so the youtube entry is failing to validate. Turn off extraction and/or delete anything in the validation field of your youtube entry.

Thanks for the response. I did as instructed, but still it will not embed. Any other ideas? Again, the Photobucket direct link will embed, dont nkow if that matters.

Thanks again for your help on this, great mod (If I can get it to work)

meeja
08-31-2009, 05:08 PM
You appear to have more than one Amazon definition active, so they're doubling up.

No, I make sure only one amazon definition is active each time, so when I screengrabbed (and posted amazon link) it was the only definition active.

anthony_m
08-31-2009, 06:50 PM
uh.. please disregard any issues I was having. For whatever reason, it seems to all work now. The test area on my site was restricted, so even if it did work (Which it appears it did), it wouldn't have shown to work.

Thanks again, this is a great mod

Installed :D

Digital Jedi
08-31-2009, 08:42 PM
No, I make sure only one amazon definition is active each time, so when I screengrabbed (and posted amazon link) it was the only definition active.
You have my definitions installed from my thread, but remember that AME comes with an Amazon definition by default. Check to see that you don't have three definitions, with two being active.

Ohiosweetheart
08-31-2009, 09:11 PM
I think you're missing the aminfo.php file or it's in the wrong place.ok, I downloaded the zip again, and opened it. There is no ameinfo.php in this download.

However, I do have an ameinfo.php file in the amecache folder, from a previous upload. Is it not supposed to be in the amecache folder?

Digital Jedi
09-01-2009, 04:57 AM
ok, I downloaded the zip again, and opened it. There is no ameinfo.php in this download.

However, I do have an ameinfo.php file in the amecache folder, from a previous upload. Is it not supposed to be in the amecache folder?
Right, it's in the right place. Did you remember to CHMOD your amechache folder? It has to be 777 and you would probably have to set those permissions again each time you re-upload and overwrite that folder during an upgrade.

Ohiosweetheart
09-01-2009, 11:56 PM
ahha, I didn't think about setting the chmod after an update. I'll try that.


EDIT: Unfortunately. I'm still getting these errors even after I chmod the amecache folder, and enable the mod -

Warning: include(/home/admin/public_html/amecache/ameinfo.php) [function.include]: failed to open stream: No such file or directory in [path]/includes/ame_bbcode.php on line 80

Warning: include() [function.include]: Failed opening '/home/admin/public_html/amecache/ameinfo.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_bbcode.php on line 80

Warning: preg_replace() [function.preg-replace]: Empty regular expression in [path]/includes/ame_bbcode.php on line 711

Warning: preg_replace() [function.preg-replace]: Empty regular expression in [path]/includes/ame_bbcode.php on line 711


I'm wondering if I just need to uninstall it and do a fresh install? Because obviously, something got screwed up in the update, since it worked perfectly prior to updating.

The Geek
09-02-2009, 08:21 AM
ahha, I didn't think about setting the chmod after an update. I'll try that.


EDIT: Unfortunately. I'm still getting these errors even after I chmod the amecache folder, and enable the mod -

Warning: include(/home/admin/public_html/amecache/ameinfo.php) [function.include]: failed to open stream: No such file or directory in [path]/includes/ame_bbcode.php on line 80

Warning: include() [function.include]: Failed opening '/home/admin/public_html/amecache/ameinfo.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/includes/ame_bbcode.php on line 80

Warning: preg_replace() [function.preg-replace]: Empty regular expression in [path]/includes/ame_bbcode.php on line 711

Warning: preg_replace() [function.preg-replace]: Empty regular expression in [path]/includes/ame_bbcode.php on line 711


I'm wondering if I just need to uninstall it and do a fresh install? Because obviously, something got screwed up in the update, since it worked perfectly prior to updating.

Try this:
1- Go to the ame admincp settings page
2- Disable the file cache and save
3- Check to see the amecache folder is chmodded correctly
4- Delete any ameinfo.php and findonly.php if they are in there
5- Go back to the ame admincp settings page
6- Enable the file cache and save

HTHs!

The Geek
09-02-2009, 08:37 AM
FYI AME lovers.

Freddie has blogged that they are adding Embedding support into vB4.0. :)

Once I have had time to verify the process, I will provide instructions on how to convert existing AME tags to vB4's native format. Since AME already provides a clear conversion utility and an uninstallation process, this should be a doddle to do but I really don't want to commit until I have had a chance to personally verify and test on a beta.

I have to admit to feeling a slight pang of sadness seeing an old friend like AME go, however this type of functionality should be native and not a mod. Having this type of functionality native not only means its coded and supported at the highest level possible, it means that the functionality can be far more extensive and integrated than a mod. So to me, I think the news that vB4 is supporting embedding is very sweet.

Just wanted to say thanks for you support, don't sweat converting to vB's new codes and as always...

nJoy!

Ohiosweetheart
09-02-2009, 11:19 AM
Sam you may want to re-think letting AME go. You'll see why I say that when you get to beta.

The Geek
09-02-2009, 02:27 PM
Sam you may want to re-think letting AME go. You'll see why I say that when you get to beta.

Hmm. Sounds ominous! I am sure they will do a great job with it and to be honest, I would think it would require far more time to retool AME to run along side something that (in theory) natively does the same thing. Regardless, once I get a hold of a beta and start to test the conversion of existing codes, then i'll make a more informed decision to continue with the project or not :)

BTW: Did the above sort your problem out?

Ohiosweetheart
09-02-2009, 03:23 PM
Hmm. Sounds ominous! I am sure they will do a great job with it and to be honest, I would think it would require far more time to retool AME to run along side something that (in theory) natively does the same thing. Regardless, once I get a hold of a beta and start to test the conversion of existing codes, then i'll make a more informed decision to continue with the project or not :)

BTW: Did the above sort your problem out?No no not ominous at all.

YES that worked. Thanks so much!

jack.wasabibot
09-06-2009, 06:22 AM
I believe that 4.0 will have video supported out of the box. Is that what you are talking about? Anyway, I installed this and it works great. Cheers!

Digital Jedi
09-06-2009, 07:05 PM
It remains to be seen whether it will support media to the degree that AME can. If anything, vB emulates modification functionality, but rarely duplicates it to a great extent.

testbot
09-08-2009, 12:53 PM
Request: Exclude from Styleid

this messes with our mobile site. it would be nice to exclude our mobile style.

thx :D

Gamelobby
09-08-2009, 06:01 PM
Love this Mod, but i recently installed a mod called "Garage" and was wondering how to go about getting Photobucket (or any videos) to work in it.?

Garage Mod - https://vborg.vbsupport.ru/showthread.php?t=216529

I'm wondering if it is their mod that is stopping it, or this mod that needs to be adapted to work in that section.

Thanks.

Digital Jedi
09-08-2009, 08:25 PM
Request: Exclude from Styleid

this messes with our mobile site. it would be nice to exclude our mobile style.

thx :D
AME uses templates, so all you would need to do is edit the template in that mobile style to display whatever you wanted.

Love this Mod, but i recently installed a mod called "Garage" and was wondering how to go about getting Photobucket (or any videos) to work in it.?

Garage Mod - https://vborg.vbsupport.ru/showthread.php?t=216529

I'm wondering if it is their mod that is stopping it, or this mod that needs to be adapted to work in that section.

Thanks.
It depends on what URL strings the modification uses, but I can look into it.

testbot
09-08-2009, 11:03 PM
AME uses templates, so all you would need to do is edit the template in that mobile style to display whatever you wanted.



i don't see "clientscript/ame.js" in the template. is it in a plugin? either way, it would just be nice to have a field in the settings that says exclude styleid or something. not a big deal. just a wish maybe. ;)

Digital Jedi
09-09-2009, 01:38 AM
i don't see "clientscript/ame.js" in the template. is it in a plugin? either way, it would just be nice to have a field in the settings that says exclude styleid or something. not a big deal. just a wish maybe. ;)
You wouldn't need to do anything to the JS file. Just replace the contents of the AME template with something simple, like a link to the video.

testbot
09-09-2009, 12:55 PM
i'm not sure if i'm getting you or not. the clientscript/ame.js is in the <head> tags which can cause problems on some mobile phones that can't handle javascript.

The Geek
09-09-2009, 01:34 PM
i'm not sure if i'm getting you or not. the clientscript/ame.js is in the <head> tags which can cause problems on some mobile phones that can't handle javascript.

I can't claim to know all about mobile phone browsers, however if you look at the js file, it is one function that toggles the hiding/unhiding of the media based on usergroup permissons. Simply edit the ame_output template of your mobile style to be:

<a href="$ameinfo[url]" />$ameinfo[title]</a>

And there will be nothing for the js to do. If you do that, I would edit the mobiles ame_container template and delete all the HTML in it (so its an empty template)

That should do you fine.

iguano
09-11-2009, 10:19 AM
In my forum works only YouTube link, the rest ... nothing :mad:

The Geek
09-11-2009, 10:23 AM
In my forum works only YouTube link, the rest ... nothing :mad:

AME only comes with youtube and amazon. If any custom definitions aren't working, contact their author.

HTHs :)

developpez.com
09-11-2009, 02:01 PM
I have a problem. When I activate the "Extract destination data" setting (required to make dailymotion to work), if the title has accentued letters in it, it will be shows in utf-8 encoded form. The mods lacks a utf8_decode() call somewhere. :(

Example :

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

Gives as title :
YouTube - BANDE SON -- Les sous doués passent le Bac

where it should have been
YouTube - BANDE SON -- Les sous dou?s passent le Bac

Fixed by adding utf8_decode() at the two returns in the ame_fetch_www_page function in includes/ame_bbcode.php

Gamelobby
09-12-2009, 02:35 AM
Love this Mod, but i recently installed a mod called "Garage" and was wondering how to go about getting Photobucket (or any videos) to work in it.?

Garage Mod - https://vborg.vbsupport.ru/showthread.php?t=216529

I'm wondering if it is their mod that is stopping it, or this mod that needs to be adapted to work in that section.

Thanks.


It depends on what URL strings the modification uses, but I can look into it.

Any luck..?
Or any questions or info i can give to help with your research.?

Also they have another mod called "Clubs" that would be cool to be able to add videos to also. :)

Digital Jedi
09-12-2009, 05:07 PM
Any luck..?
Or any questions or info i can give to help with your research.?

Also they have another mod called "Clubs" that would be cool to be able to add videos to also. :)
I'm still trying to catch up on a few other things.

Digital Jedi
09-12-2009, 05:09 PM
I can't claim to know all about mobile phone browsers, however if you look at the js file, it is one function that toggles the hiding/unhiding of the media based on usergroup permissons. Simply edit the ame_output template of your mobile style to be:

<a href="$ameinfo[url]" />$ameinfo[title]</a>

And there will be nothing for the js to do. If you do that, I would edit the mobiles ame_container template and delete all the HTML in it (so its an empty template)

That should do you fine.
I went ahead and made a mod thread with the template edits and marked it as an add-on to this thrad, since this question does come up a lot: AME Templates for Mobile Skin (https://vborg.vbsupport.ru/showthread.php?t=223041)

P.Jackson
09-16-2009, 11:00 AM
When we post a link we don't actually get a video, its just a link to the video. any ideas?

Digital Jedi
09-16-2009, 02:28 PM
When we post a link we don't actually get a video, its just a link to the video. any ideas?
Post an example of where that's happening.

rladner
09-17-2009, 02:29 AM
When I view a post in IE6 through IE8 the video doesnt show at all, any recommendations?

Here is an example - http://www.40by20.com/forum/showthread.php?t=33

They all play fine except in IE6,7,8

Digital Jedi
09-17-2009, 04:49 AM
When I view a post in IE6 through IE8 the video doesnt show at all, any recommendations?

Here is an example - http://www.40by20.com/forum/showthread.php?t=33

They all play fine except in IE6,7,8
Are you actually using AME 2.5, because it looks to me like your height and width parameters are being stripped out? Your source code shows the height and width for your videos blank. That would only happen if you were using a 2.0- version of AME and the definitions for 2.5.

rladner
09-17-2009, 06:34 AM
Yes, I'm using 2.5. Heres what it shows on my installed products

AME - The Automatic Media Embeder 2.5.5 Automatically embeds media URLs with posts


Here's what Im using for the youtube definitions:

regular expression:
http://[\w]+\.youtube\.[\w]+/watch\?v=([\w-]+)[\w&;=]*[\#t=]*([\d]*)s?
replacement:

<object width="$ameinfo[width]" height="$ameinfo[height]">
<param name="movie" value="http://www.youtube.com/v/$p1&start=$p2"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&start=$p2" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[width]" height="$ameinfo[height]" wmode="transparent"></embed></object>

Are you actually using AME 2.5, because it looks to me like your height and width parameters are being stripped out? Your source code shows the height and width for your videos blank. That would only happen if you were using a 2.0- version of AME and the definitions for 2.5.

Digital Jedi
09-17-2009, 03:23 PM
Yes, I'm using 2.5. Heres what it shows on my installed products

AME - The Automatic Media Embeder 2.5.5 Automatically embeds media URLs with posts


Here's what Im using for the youtube definitions:

regular expression:
http://[\w]+\.youtube\.[\w]+/watch\?v=([\w-]+)[\w&;=]*[\#t=]*([\d]*)s?
replacement:

<object width="$ameinfo[width]" height="$ameinfo[height]">
<param name="movie" value="http://www.youtube.com/v/$p1&start=$p2"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&start=$p2" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[width]" height="$ameinfo[height]" wmode="transparent"></embed></object>
Only thing I can think of is to check your Height and Width global settings in the AME CP and make sure they aren't blank. Then resave your posts and see if the settings stick. If that doesn't work, then go into your media definition and in the Replacement HTML put brackets around each instance of the size variables. Remember that you'll probably have more than two each definition:

width="{$ameinfo[width]}" height="{$ameinfo[height]}"

Then resave the posts and see if that helps.

P.Jackson
09-17-2009, 08:45 PM
Post an example of where that's happening.


http://www.clan-killers.com/forum/general-ofp2-chat/129698-multiplayer-screens-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/hall-spam/84022-bedroom-golf.html#post195465

Digital Jedi
09-18-2009, 12:08 AM
http://www.clan-killers.com/forum/general-ofp2-chat/129698-multiplayer-screens-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/hall-spam/84022-bedroom-golf.html#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.


<!-- 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/showpost.php?p=368980&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
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/showpost.php?p=368980&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!

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.

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
http://www.clan-killers.com/forum/general-ofp2-chat/129698-multiplayer-screens-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/hall-spam/84022-bedroom-golf.html#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
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.


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
Feature Request:
*************

Jquery implementation (lightbox)

http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/

Really nice :)

Can we get votes on this please? :)

rladner
09-23-2009, 01:08 AM
The height/width under AME settings were just fine and I also implemented the {} as you suggested but it still doesnt work.

Only thing I can think of is to check your Height and Width global settings in the AME CP and make sure they aren't blank. Then resave your posts and see if the settings stick. If that doesn't work, then go into your media definition and in the Replacement HTML put brackets around each instance of the size variables. Remember that you'll probably have more than two each definition:

width="{$ameinfo[width]}" height="{$ameinfo[height]}"

Then resave the posts and see if that helps.

cschroeder1
09-24-2009, 03:40 PM
I've installed this pulgin, and set it up correctly, I believe, but whenever I post a video url to a thread, it just shows the link and icon for external embedding not available; but if I post the embed code from the you tube page in the post, it embeds just fine. Help!

cschroeder1
09-24-2009, 05:02 PM
...but my IE settings were set funky, so my browser was breaking it. Fine now. Awesome add on.

rladner
09-24-2009, 08:45 PM
Can anyone give me a helping hand?

Digital Jedi
09-25-2009, 02:15 AM
Can anyone give me a helping hand?
Other than putting in the actual height and width you want for videos, there's no other reason I can think of that it would be doing that. It appears to be an anomaly unique to your forum. Have you tried turning your mods off one at a time yet to see if there's a conflict with something?

The Geek
09-25-2009, 08:35 AM
Can anyone give me a helping hand?

Try disabling file caching.

And click install please :)

fly
09-25-2009, 12:28 PM
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.


Actually, it looks like I can delete and modify all definitions from approximately A-C in the list. After that, I can't delete anything. As a test, I turned off the file cache. It did not seem to help.


edit: Just for fun, I turned off file cache, deleted the files in it, and turned the cache back on. It did create new files in there, but it still doesn't work. BTW, I'm using DJ's definitions. When I attempt to delete ALL of them, this is the error I get - apparently these are the only defs that AME "sees".

Are you sure you want to delete 220, 2K Sports (Part 1), 2K Sports (Part 2), 5min Life Videopedia, Adult Swim, AllPosters (Thumbnails), AllPosters (Thumbnails/Browse), AllPosters (Thumbnails/Search Results), Amazon (aStore), Amazon (Links), Amazon (Thumbnails), AOL Music, AOL Video, Apache Clips, Atom, Bebo (Sponsored Content), BikerPunks, Blip (Permalink), Blip (Show Pages), BooMP3, Break, Break (User Content), Brightcove, CafePress (Thumbnails), CannabisTV, Carpix, Carpix (Categories), Carpix (Live), CBS News, CBS Sports, Clarin, ClipBucket, Clipfish, ClipShack, ClipShare Demo, ClipShare Demo (Old), CNN, **Internal Linking (Forums/Categories), **Internal Linking (Member Profiles), **Internal Linking (Single Posts), **Internal Linking (Threads)? This action can not be undone!

vwdforum
09-26-2009, 08:47 PM
Hi Guys.

I've noticed the pins do not appear on vbgooglemaps (https://vborg.vbsupport.ru/showthread.php?t=123148) if I have AME - The Automatic Media Embeder 2.5.5 (https://vborg.vbsupport.ru/showthread.php?t=202476) enabled.

If I disable AME the pin's appear.

Any idea how to fix this issue?

Thanks Mally

odln018
09-30-2009, 02:42 PM
Is there a method where the video can be placed on the left/right/center?

odln018
09-30-2009, 05:04 PM
I've just run into an issue where AME somehow breaks internal linking.

Here's another person who's run into the problem: http://www.vbulletin.com/forum/showthread.php?t=298020

I've confirmed this by disabling AME on my forum, and all internal links start to work.

Digital Jedi
10-01-2009, 03:37 AM
Is there a method where the video can be placed on the left/right/center?
Do you mean in a straight line next to each other, or do you just want to change the alignment? TO change the alignment you just edit the ame_container template.


I've just run into an issue where AME somehow breaks internal linking.

Here's another person who's run into the problem: http://www.vbulletin.com/forum/showthread.php?t=298020

I've confirmed this by disabling AME on my forum, and all internal links start to work.
The Internal Linking definition needs to be updated, and I haven't got around to it yet. The Geek posted on in my thread if you want to try his. Just do a search for his posts in the that thread and it should be the most recent one.

padfoot007
10-01-2009, 07:23 AM
great app! thankss

abode
10-01-2009, 10:43 AM
i have a huge post # over 1000000000
and that may gave me a huge problem to add an index !

Chadi
10-01-2009, 07:10 PM
I'm currently using Goldbrick's media mod.

I'd like to install this but have a question:

- can videos be given custom sizes? sometimes I'd like the full HD experience to be displayed

Feature Request:

Jquery implementation (lightbox)
http://www.no-margin-for-errors.com/...ightbox-clone/ (http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/)

Thanks.

Digital Jedi
10-01-2009, 11:58 PM
I'm currently using Goldbrick's media mod.

I'd like to install this but have a question:

- can videos be given custom sizes? sometimes I'd like the full HD experience to be displayed

Feature Request:

Jquery implementation (lightbox)
http://www.no-margin-for-errors.com/...ightbox-clone/ (http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/)

Thanks.
Sizes are set globally, but individual definitions can be edited in the ACP to use their own set size. Definitions, however, are site specific, and that seldom means you can, let's just say for example, have a separate definition for YouTube and YouTube HD. It depends on the site, but in most cases, you'll have standard size for videos from a given site.

odln018
10-02-2009, 01:45 AM
Do you mean in a straight line next to each other, or do you just want to change the alignment? TO change the alignment you just edit the ame_container template.



The Internal Linking definition needs to be updated, and I haven't got around to it yet. The Geek posted on in my thread if you want to try his. Just do a search for his posts in the that thread and it should be the most recent one.

Ideally, to be able to either left, right or center justify, but I'll look into that template edit.

Thanks for the hint about the IL problem, I'll check that out.

Big-Pete
10-06-2009, 10:01 AM
Just lately i've been getting some of the youtube urls change from showing the player to showing the youtube video description, when you go into edit the post the youtube link has the [URL] tag, what would cause this??

fly
10-06-2009, 10:52 AM
Actually, it looks like I can delete and modify all definitions from approximately A-C in the list. After that, I can't delete anything. As a test, I turned off the file cache. It did not seem to help.


edit: Just for fun, I turned off file cache, deleted the files in it, and turned the cache back on. It did create new files in there, but it still doesn't work. BTW, I'm using DJ's definitions. When I attempt to delete ALL of them, this is the error I get - apparently these are the only defs that AME "sees".

If anyone cares, this turned out to be a suhosin issue. I'm new to it and missed the required changes for vB

suhosin.post.max_vars = 2048
suhosin.request.max_vars = 2048

MasterofWorlds
10-07-2009, 08:48 PM
having problems update my version and now all my new youtube post are not being converted. the link shows only and when i hover over it, i get "External Embedding Not Available"

Any ideas what is going on there?

kf4eok
10-09-2009, 03:07 PM
Where can I find these definitions for download? I want see pdf files on my forum along with the other, Do I have to manualy add New Media Definition myself, if so how do i do that?
DOC (.DOC Extentions)
DOCX (.DOCX Extentions)
Thanks,
kf4eok

kris1351
10-09-2009, 04:29 PM
Trying to use the product, but keep running into mod_sec errors. Any ideas on bypassing or what its using that is triggering?

[Fri Oct 09 12:25:56 2009] [error] [client xxxx] ModSecurity: Access denied with code 403 (phase 2). Match of "beginsWith http://%{SERVER_NAME}/" against "MATCHED_VAR" required. [file "/usr/local/apache/conf/modsec_rules/10_asl_rules.conf"] [line "689"] [id "340162"] [rev "160"] [msg "Remote File Injection attempt in ARGS (AE)"] [data ""] [severity "CRITICAL"] [hostname "www.xxxx.com"] [uri "/forum/admincp/automediaembed_admin.php"] [unique_id "Ss9yJEESeAIAAENJMkoAAAAG"]

papabear99
10-09-2009, 06:44 PM
We are in need of the functionality of the vbGoogleMap add-on and I tried installing a few times and finding some work-arounds but, at the end of the day, it does NOT work with AME installed.

Has this issue been addressed before I uninstall it and buy Passive Video???

Cheers

Papa Bear

jdougher
10-11-2009, 07:05 PM
Lately, when posted, all YouTube videos are showing up twice, with the some code in-between, as in

" title="YouTube - Sen. Barack Obama's Full Speech to the DNC" target="_blank">YouTube - Sen. Barack Obama's Full Speech to the DNC

mickknutson
10-11-2009, 10:22 PM
I have RSS Feeds being posted to to:
http://www.blincmagazine.com/forum/news-feeds/

from many sources, like YouTube. When the RSS feed posts the initial thread, the video is NOT parsed like this one IS:
http://www.blincmagazine.com/forum/news-feeds/40604-human-bird.html

The URL is just blank.

Right now, I have 2 work-around's:

1. Edit the Posting in Advanced mode, then save the the post is parsed.

2. Run the AME tools to re-parse all my threads.

Neither of these solutions are good for me as I have many dozen postings every day, and can not manually keep up.

So, is there a way to automate this in my one News RSS forum?

Miss Chatterbox
10-12-2009, 09:45 AM
I've just installed this and it's stopped my private messages from working! I get a notification of a PM and who it's from but when I click on the link to read the PM in comes up with a blank page. Any idea why this has happened? I tried uninstalling it and I could read my PM's fine again.

Please help! :confused:

smokin1337
10-12-2009, 11:54 PM
Is there anyway to make this parse links on FORUMHOME ? I want to put a video on my FORUMHOME and not sure how to do it, i will be changing the video regularly.

Blacura
10-13-2009, 01:07 AM
In blogs there is a database error even though i have this installed. please help me out with this one folks

inciarco
10-17-2009, 05:12 PM
Possible Bug? :confused:

When I Create a Thread, or a New Post, or Edit a Thread, or Edit a New Post, (and go to the "Go Advanced" Editor, of course), on the First Displayed Page (newthread.php, newreply.php, editpost.php) the Option "Automatically embed media (requires automatic parsing of links in text to be on)." appears, but when I Click the "Preview Changes" Button the Option Dissapears, leaving only the other ones and unabling me to Unselect it for the URLs not to be Converted to Embedded Videos.

I'm Trying this Mod on my vB373 PL1 Test Forum.

Is Somebody Experiencing this Error Too, (on vB38x and vB37x)? :confused:

If so, what can I do to Correct it? :confused: What Should I Check and Change? :confused:

On the Version 2.2 this Error doesn't Happen, it Happened only on the Update to Verson 2.5.

My Best Regards.

:)

BigDog56
10-18-2009, 01:44 PM
I uninstalled this and now all the urls are showing ame instead of url. How can I change it back to url?
Never mind, I figured it out.

slobra
10-20-2009, 08:21 PM
Edit: Nevermind. Found the problem.

sevkotr
10-21-2009, 07:04 PM
can i change width and height of a vimeo video on any post?

such as: www.vimeo.com/videonumber width=600 height=200

mickknutson
10-22-2009, 10:59 AM
I have RSS Feeds being posted to to:
http://www.blincmagazine.com/forum/news-feeds/

from many sources, like YouTube. When the RSS feed posts the initial thread, the video is NOT parsed like this one IS:
http://www.blincmagazine.com/forum/news-feeds/40604-human-bird.html

The URL is just blank.

Right now, I have 2 work-around's:

1. Edit the Posting in Advanced mode, then save the the post is parsed.

2. Run the AME tools to re-parse all my threads.

Neither of these solutions are good for me as I have many dozen postings every day, and can not manually keep up.

So, is there a way to automate this in my one News RSS forum?


Any help setting up the embed post tool as a CRON????

/forum/admincp/automediaembed_admin.php?do=rebuild&zone=post

But I need the next page to actually POST.

AfterWorldForum
10-25-2009, 07:15 AM
After seeing some of my internal links messed up, I disabled those from the definitions.

What would be the proper procedure to have only those disabled definitions reverted back to their old format? I tried removing all tags, which had a nasty side-effect in that suddenly everything, including the youtube videos posted by my members was reverted back to plain links.

And no matter what I tried, I could not get them back into embedded mode again. The posts contained a properly formatted tag with the following format:

Title of the video on Youtube ("http://www.youtube.com/watch?v=VIDID)


The only way I found I could fix it was by manually editing the posts, and replacing "title of the video on Youtube" with the url again.

Surely there must be a faster way to accomplish this?

Anyone?

Thanks in advance :)

mmiddleton
10-28-2009, 02:55 AM
I uploaded AME, as instructed, and imported (via the VME CP) only the definitions that I want (Youtube, Vimeo) as well as a the .wmv and .mov definitions for locally hosted videos, and made the modifications, as indicated.

When I post the url for the video, it simply shows up as a link. HOWEVER, if I type in the code with the url it works for vimeo and youtube, but not for locally hosted videos.

I've checked and rechecked each of the files in the forums directory, and can't find any errors. Any suggestions?

mmiddleton
10-28-2009, 06:17 PM
Update: Locally hosted .wmv's are now working when the tags are manually added, as long as the link includes the http:// in the url. It's still not automatically converting the defined url's, though. Still looking for a possible cause, if anybody has an answer.

Michael

The Geek
10-28-2009, 07:18 PM
I uploaded AME, as instructed, and imported (via the VME CP) only the definitions that I want (Youtube, Vimeo) as well as a the .wmv and .mov definitions for locally hosted videos, and made the modifications, as indicated.

When I post the url for the video, it simply shows up as a link. HOWEVER, if I type in the code with the url it works for vimeo and youtube, but not for locally hosted videos.

I've checked and rechecked each of the files in the forums directory, and can't find any errors. Any suggestions?

With non default AME definitions, you need to speak to the person who wrote the definition. If youtube links are not showing up, it is most likely a validation problem. Make sure the video you are linking to allows external embedding.

As per the read me and troubleshooting, its best to post examples, but please only post examples of default definition problems in this thread to keep things nice n tidy :)

The Geek
10-28-2009, 07:18 PM
Update: Locally hosted .wmv's are now working when the tags are manually added, as long as the link includes the http:// in the url. It's still not automatically converting the defined url's, though. Still looking for a possible cause, if anybody has an answer.

Michael

Aha, well, thats a problem with the custom definition. Please post in DJ's thread :)

The Geek
10-28-2009, 07:22 PM
What would be the proper procedure to have only those disabled definitions reverted back to their old format? I tried removing all tags, which had a nasty side-effect in that suddenly everything, including the youtube videos posted by my members was reverted back to plain links. Title of the video on Youtube ("http://www.youtube.com/watch?v=VIDID)



If you delete or disable a definition but still have AME installed, the old definitions should default to URLs. The only time you should need to revert AME to URL tags is if you are totally uninstalling the product.

HTHs

The Geek
10-28-2009, 07:23 PM
can i change width and height of a vimeo video on any post?

such as: www.vimeo.com/videonumber width=600 height=200

In this version you could write a template conditional i.e. <if condition="$ameinfo[key]=='vimeo'>blahblahblha

The Geek
10-28-2009, 07:25 PM
Any help setting up the embed post tool as a CRON????

/forum/admincp/automediaembed_admin.php?do=rebuild&zone=post

But I need the next page to actually POST.

If I understand correctly, you're trying to insert AME's into RSS feeds. You should be able to add a couple hooks for this, if you PM me a couple of RSS links, ill see if I can look into it when I get home next week.

The Geek
10-28-2009, 07:26 PM
In blogs there is a database error even though i have this installed. please help me out with this one folks

As per the readme - if you install blogs after this product, you need to run the option in AME admincp tools menu

The Geek
10-28-2009, 07:27 PM
Is there anyway to make this parse links on FORUMHOME ? I want to put a video on my FORUMHOME and not sure how to do it, i will be changing the video regularly.

Not specifically. Why not just use HTML there?

The Geek
10-28-2009, 07:28 PM
I've just installed this and it's stopped my private messages from working! I get a notification of a PM and who it's from but when I click on the link to read the PM in comes up with a blank page. Any idea why this has happened? I tried uninstalling it and I could read my PM's fine again.

Please help! :confused:

Cant really understand how that could happen unless its a conflict with another mod. Saying that, this is one of the most installed 3.8 mods and I havent heard of this before. Check your servers error logs :(

The Geek
10-28-2009, 07:29 PM
Lately, when posted, all YouTube videos are showing up twice, with the some code in-between, as in

" title="YouTube - Sen. Barack Obama's Full Speech to the DNC" target="_blank">YouTube - Sen. Barack Obama's Full Speech to the DNC

As per the readme - you have duplicate definitions. Delete one :)

The Geek
10-28-2009, 07:32 PM
We are in need of the functionality of the vbGoogleMap add-on and I tried installing a few times and finding some work-arounds but, at the end of the day, it does NOT work with AME installed.

Has this issue been addressed before I uninstall it and buy Passive Video???

Cheers

Papa Bear

I havent heard of any issues before and not sure why this would cause a problem, but I suppose its plausible :)

If I get time I will look into it when I get back, but that wont be for at least a week.

The Geek
10-28-2009, 07:34 PM
Trying to use the product, but keep running into mod_sec errors. Any ideas on bypassing or what its using that is triggering?

[Fri Oct 09 12:25:56 2009] [error] [client xxxx] ModSecurity: Access denied with code 403 (phase 2). Match of "beginsWith http://%{SERVER_NAME}/" against "MATCHED_VAR" required. [file "/usr/local/apache/conf/modsec_rules/10_asl_rules.conf"] [line "689"] [id "340162"] [rev "160"] [msg "Remote File Injection attempt in ARGS (AE)"] [data ""] [severity "CRITICAL"] [hostname "www.xxxx.com"] [uri "/forum/admincp/automediaembed_admin.php"] [unique_id "Ss9yJEESeAIAAENJMkoAAAAG"]

Looks like some kind of custom security rule you have. Not sure why, but contact your host.

Where can I find these definitions for download? I want see pdf files on my forum along with the other, Do I have to manualy add New Media Definition myself, if so how do i do that?
DOC (.DOC Extentions)
DOCX (.DOCX Extentions)
Thanks,
kf4eok

Try DJ's add on thread. But not sure what kind of auto embed you can do for word documents?

mmiddleton
10-28-2009, 07:48 PM
Update: Locally hosted .wmv's are now working when the tags are manually added, as long as the link includes the http:// in the url. It's still not automatically converting the defined url's, though. Still looking for a possible cause, if anybody has an answer.

Michael

Aha, well, thats a problem with the custom definition. Please post in DJ's thread


Far be it from me to disagree since you're the author, but it seems to me like that indicates that it's a problem with the actual mod, rather than with the definition, since it's not automatically converting the url to ame.

Youtube, Vimeo and local definitions are showing up, but ONLY if I manually add the [ame] tags around the url. In other words, it's not doing this: smartly scans new and edited posts for URLs from a customisable variety of web sites (i.e. YouTube or Amazon or about 200 others). If it finds a match, AME will 'transform' the URL into inline embedded media without your users ever having to even think about it.

I appreciate your feedback, and my apologies if I'm misunderstanding the process of how the mods and definitions interact.

ericgtr
10-28-2009, 10:36 PM
For some reason this has stopped working on my board, not sure why but it will either just show up as a URL or it looks like this in the post:


test2

: PoliticalGroove Forums http://www.politicalgroove.com/showthread.php?p=xxx
<div align="center">
<table class="tborder" cellpadding="6" cellspacing="1" width="425" style="margin:10px 0">
<thead>
<tr>
<td class="tcat" colspan="2" style="text-align:center">
<a href="" title="YouTube" target="_blank">YouTube</a>
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="panelsurround" align="center">
<object width="425" height="350">
<param name=''movie'' value="http://www.youtube.com/v/-oj_PXJ5aXE&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/-oj_PXJ5aXE&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="350" wmode="transparent"></embed></object>
</td>
</tr>
</tbody>
</table></div>
</div>" target="_blank">http://<div style="display: none;" i...<br /> </div>


I have also reinstalled just to be sure, any ideas? It's almost like youtube changed their code.

The Geek
10-29-2009, 08:24 PM
Far be it from me to disagree since you're the author, but it seems to me like that indicates that it's a problem with the actual mod, rather than with the definition, since it's not automatically converting the url to ame.

Youtube, Vimeo and local definitions are showing up, but ONLY if I manually add the [ame] tags around the url. In other words, it's not doing this:
I appreciate your feedback, and my apologies if I'm misunderstanding the process of how the mods and definitions interact.

Again, AME doesnt do .wmv's, vimeo, etc... out of the box. If you are having an issue with those definitions, go ask the author in the add on post.

I posted the potential problem with youtube, it sounds like the validation is failing. As per the readme and troubleshooting, it sure helps to have examples of the video and screenshots of the result.

The Geek
10-29-2009, 08:25 PM
Are you sure you don't have duplicate definitions? Can you post an example URL?
For some reason this has stopped working on my board, not sure why but it will either just show up as a URL or it looks like this in the post:


test2

: PoliticalGroove Forums http://www.politicalgroove.com/showthread.php?p=xxx
<div align="center">
<table class="tborder" cellpadding="6" cellspacing="1" width="425" style="margin:10px 0">
<thead>
<tr>
<td class="tcat" colspan="2" style="text-align:center">
<a href="" title="YouTube" target="_blank">YouTube</a>
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="panelsurround" align="center">
<object width="425" height="350">
<param name=''movie'' value="http://www.youtube.com/v/-oj_PXJ5aXE&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/-oj_PXJ5aXE&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="350" wmode="transparent"></embed></object>
</td>
</tr>
</tbody>
</table></div>
</div>" target="_blank">http://<div style="display: none;" i...<br /> </div>


I have also reinstalled just to be sure, any ideas? It's almost like youtube changed their code.

ericgtr
10-29-2009, 09:32 PM
Are you sure you don't have duplicate definitions? Can you post an example URL?
I checked and I only have the two default definitions of youtube and Amazon, all else should also be default since I completely re-installed. I noticed that another mod that inserts copyright info https://vborg.vbsupport.ru/showthread.php?t=201986 also had a display:none in it so I removed that mod entirely. I am still getting an error though, here is a link so you can see http://www.politicalgroove.com/showthread.php?t=18139

The Geek
10-30-2009, 03:32 AM
I checked and I only have the two default definitions of youtube and Amazon, all else should also be default since I completely re-installed. I noticed that another mod that inserts copyright info https://vborg.vbsupport.ru/showthread.php?t=201986 also had a display:none in it so I removed that mod entirely. I am still getting an error though, here is a link so you can see http://www.politicalgroove.com/showthread.php?t=18139

mmm. Are you using anything to track outbound links or another mod that somehow changes links? If not, have you recently installed an accelerator of any kind?

jayjenxi
10-30-2009, 05:09 AM
YouTube videos are not showing up for me. An example here: http://adventdestiny.com/forum/f104/gundam-00-movie-trailer-5377/

ericgtr
10-30-2009, 02:30 PM
mmm. Are you using anything to track outbound links or another mod that somehow changes links? If not, have you recently installed an accelerator of any kind?
I'm not sure what I did but it's definitely on my end, I'll keep digging. :)

Breakpoint
10-30-2009, 02:51 PM
How good is this with Amazon referral links?

The Geek
10-31-2009, 06:53 AM
YouTube videos are not showing up for me. An example here: http://adventdestiny.com/forum/f104/gundam-00-movie-trailer-5377/

er... shows for me? Check your permissions

The Geek
10-31-2009, 06:54 AM
I'm not sure what I did but it's definitely on my end, I'll keep digging. :)

By the looks of its, its a mod that is hooking into URLs for one reason or another (usually to track outbound links or to add rel="nofollow"). That is conflicting with AME

The Geek
10-31-2009, 06:55 AM
How good is this with Amazon referral links?

I don't use them, but would assume its about as good as can get. You will need to edit the definition to include your affiliate code though, but that should be a quick one off.

The Ayatollah
11-01-2009, 03:13 AM
When uploading the files, I am not entirely clear on which folder to choose to FTP.
1) the "upload" folder
2) The "forums" folder
3) the contents of the "forums" folder

Also, if you don't have a "forums" directory, where else would be appropriate to upload to?

MagicThemeParks
11-01-2009, 01:16 PM
The Ayatollah,

If you don't have a 'forums' directory, simply use the root directory. You'll notice the files within the 'forums' folder should correspond to what is in your root.

emdee
11-01-2009, 02:55 PM
the signature does not embed.

example (http://www.masseffectforum.com/mass-effect-2-gameplay-videos-t1935.html?t=1935) the yellow user

any ideas why?

ForumUser210
11-01-2009, 11:00 PM
It's not working! Gaaa!!!

YouTube links aren't being converted to Video.

Does it work with 3.8.4?

Saviour
11-04-2009, 12:20 PM
Not sure if I'll get a response to this, since this mod appears to be un-supported, but will anyway...just in case.

Anyway, I use this mod...and it's great. I've run into one small issue, though. I have another mod installed that allows a person to list their PC Specs in a drop-down box...however, this dropdown menu is hidden by the player in a post.

Now...I know I can edit the <object> tag in order to fix this, but for the life of me can't find where to edit it.

Does anyone know how to resolve this...or can they point me in the right direction? I certainly would appreciate it.

oddmud
11-04-2009, 06:10 PM
It works with 3.8.4 patch level 1, i followed the instructions and it works.

Kr33p3r
11-06-2009, 10:46 PM
If I understand correctly, you're trying to insert AME's into RSS feeds. You should be able to add a couple hooks for this, if you PM me a couple of RSS links, ill see if I can look into it when I get home next week.

Not into the feed, I think I have the same question.

I have an RSS plugin that will watch a feed, then create a post in a thread automatically.

The subsequent post isn't parsed by AME because it gets posted by a job that runs every 30 minutes.

If I edit then save the post, its parsed correctly.

Any thoughts to a workaround?

elroger
11-07-2009, 12:34 AM
When I put a link like: [url] http://www.youtube.com/watch?v=nBiGrHc0Xy4 [/ url]
works and it embeds the video, but when I put it this way: http://www.youtube.com/watch?v=nBiGrHc0Xy4 not working

How do I fix?, (I have disabled the url's in the forum) and I want the url off, it continues to detect: http://www.youtube.com/watch?v=nBiGrHc0Xy4 but not using [url]. .. [/ url].

Greetings and thanks

Nadeemjp
11-07-2009, 12:34 AM
hey will you be considering to upgrade for vb4? cause i dont wanna loose this mod

inciarco
11-07-2009, 12:35 AM
I've Tried Uninstalling and Re-installing, (and Re-Uploading the Files, of course), and the same Error Occurs, when I Click "Preview Post" the Link "Automatically embed media" to Activate/Deactivate the Media Embedding (located below the "Automatically parse links in text") Dissapears, Leaving the Option Activated. :confused:

How can I Correct this? :confused:

Where should I look to Leave the Option Visible Always to be able to Activate/Deactivate it? :confused:

My Best Regards.

:)


Possible Bug? :confused:

When I Create a Thread, or a New Post, or Edit a Thread, or Edit a New Post, (and go to the "Go Advanced" Editor, of course), on the First Displayed Page (newthread.php, newreply.php, editpost.php) the Option "Automatically embed media (requires automatic parsing of links in text to be on)." appears, but when I Click the "Preview Changes" Button the Option Dissapears, leaving only the other ones and unabling me to Unselect it for the URLs not to be Converted to Embedded Videos.

I'm Trying this Mod on my vB373 PL1 Test Forum.

Is Somebody Experiencing this Error Too, (on vB38x and vB37x)? :confused:

If so, what can I do to Correct it? :confused: What Should I Check and Change? :confused:

On the Version 2.2 this Error doesn't Happen, it Happened only on the Update to Verson 2.5.

My Best Regards.

:)

MasterofWorlds
11-08-2009, 12:59 PM
Is there any chance to get version 2.5.4 back? v2.5.5 just will not code any of the ame tag links anymore.

ForumUser210
11-09-2009, 03:58 AM
I need help!

I have -- vBulletin 3.8.4.

In my definitions, I have only YouTube. When I post a YouTube link, it does not convert to video embed.

I have cache set to on. But, when I look in /amecache/ameinfo.php and findonly.php, it still has Amazon codes (which I deleted in definitions, but they still appear here)! And, these files don't show any YouTube code! What is the deal?

How do I get this working?


Did I upload files to the right categories? Yes.
Did I chmod folder /amecache/? Yes.
Is the path to /amecache/ correct? Yes.
Are usergroup settings for AME set to Yes? Yes.
Is Setting 'Disable New Items' turned to No? Yes.
Is the definition for YouTube active? Yes.
What is the regex for your YouTube definition?

[http://]*[a-z]*?[\.]?youtube\.[a-z]*?/watch\?v=([A-Z0-9._%-]*)[&\w;=\+_\-]*


Never mind! I got it. It seems though my folder was chmoded 777, I had to also chmod ameinfo.php and findinfo.php to 777 also.

Cheers!

fatdr
11-12-2009, 03:52 PM
3.8.4 PL1
good working
thanks;)

Gav-n-Tn
11-12-2009, 11:00 PM
Got it loaded but can't get it to work. What am I missing? I'm not a coder either. Is it the definitions? Do I still need to load them from DJ's thread?

Gav-n-Tn
11-12-2009, 11:17 PM
Alright. I downloaded the definitions but it is still not working. What were the misc. images for? I do not see them showing up anywhere.

z0diac
11-13-2009, 03:34 PM
1: Will this mod work with vb 3.7.4
2: What I'm looking for is a media player that will play LOCAL (attached) videos - ones that are file attachments.

Gav-n-Tn
11-13-2009, 03:45 PM
There is also an empty file named index.html that caused a major problem for me. It conflicted with the index.php file and was sending the site to a blank page. Easy to fix, once the problem was found, but did result in "I can't get on the site" e-mails. Oh yeah, still not working either.

apnifry
11-14-2009, 04:34 AM
does it works in4.0 beta 3

The Geek
11-16-2009, 11:03 AM
does it works in4.0 beta 3

No this will not work in vB4, however someone posted that the 1.2 version works in vB4. Saying that, I would 'hold on' as I am just evaluating how to port this to vB4. It isn't straight forward as vB4 has a video bbcode system that I will be trying to hook into. I suspect it shouldn't be too hard to do and could have a solution as early as this week.

The Geek
11-16-2009, 11:04 AM
There is also an empty file named index.html that caused a major problem for me. It conflicted with the index.php file and was sending the site to a blank page. Easy to fix, once the problem was found, but did result in "I can't get on the site" e-mails. Oh yeah, still not working either.

Sounds like you uploaded the mod to the wrong file location. The only blank index is in the amecahce folder which shouldnt stop anything on the site.

The Geek
11-16-2009, 11:06 AM
Is there any chance to get version 2.5.4 back? v2.5.5 just will not code any of the ame tag links anymore.

Nope. Try removing the 'validation regexp' from the youtube definitions and tell me if that works.

The Geek
11-16-2009, 11:08 AM
Not into the feed, I think I have the same question.

I have an RSS plugin that will watch a feed, then create a post in a thread automatically.

The subsequent post isn't parsed by AME because it gets posted by a job that runs every 30 minutes.

If I edit then save the post, its parsed correctly.

Any thoughts to a workaround?

AME needs to check the text before it gets saved. Check the plugins and you will see how AME gets called when posts or blogs and such get saved.

HTHs!

cliffhanger
11-17-2009, 05:49 AM
Hello, I'm an 8th grade teacher who uses tutorial videos within forum postings for my students.

I've been successful getitng a pencast (livescribe) into my forum (you can't download actual files for the pencasts, you have to put in an XML refererence within the embed code)

The regular expression I'm using is:

http://[\w]*[\.]*mywebsite\.[\w/&;%-\.]+/([\d\w]+)(?:.*)

I did it this way so when I use $p1 I can just type in http://www.mywebsite/xmlfilename without using the extension because an extenstion like .mp4 will mess things up (as I'm referencing an XML file. However, the above expression is going to try and embed anything now that has 'mywebsite' domain in the URL.

Is there anyway that I can set $p1 or $p2, etc so it only grabs the filename (as an example, if I had video.mp4, it only grabs video to put in for $p1 instead of video.mp4 -- I don't want the .mp4 or whatever extension included in $p1). I need some kind of extension so AME only embeds the appropriate links. I've tried everything, and even went to http://www.regexbuddy.com and I got to the point that the above expression sets $p1 without the extension, but now everything embeds.

Help please. My 8th grades will be very appreciative, and me too :)

The Geek
11-17-2009, 07:58 AM
Help please. My 8th grades will be very appreciative, and me too :)

lol. Play my heart strings!

TBH, I couldn't really follow what you are trying to do. If you can provide actual examples of what users would type/paste in and what the site should show (embed code wise) I can see what I can do ;)

cliffhanger
11-17-2009, 07:30 PM
:)

Here's the replacement embed code that I'm using

<object height="316" width="228" align="middle" id="myFlashContent3" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param value="http://www.livescribe.com/media/swf/pencastPlayer.swf?path=http://www.livescribe.com/cgi-bin/WebObjects/LDApp.woa/wa/flashXML?xml=$p1" name="movie" /><param value="high" name="quality" /><param value="true" name="allowfullscreen" /> <object height="316" width="228" align="middle" data="http://www.livescribe.com/media/swf/pencastPlayer.swf?path=http://www.livescribe.com/cgi-bin/WebObjects/LDApp.woa/wa/flashXML?xml=$p1" type="application/x-shockwave-flash"><param value="high" name="quality" /><param value="true" name="allowfullscreen" /> <a href="http://www.adobe.com/go/getflashplayer"><img alt="Get Adobe Flash player" src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" /></a></object></object>

I have $p1 as a replacement, and the following text gets put in for $p1

0000C0A80116000009C5920D00000124F67ECAA959F4B88C

and that's it. There's no typical filename like .mp4 or .flv. So the actual code after the $p1 is replaced looks like:

<object height="316" width="228" align="middle" id="myFlashContent3" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param value="http://www.livescribe.com/media/swf/pencastPlayer.swf?path=http://www.livescribe.com/cgi-bin/WebObjects/LDApp.woa/wa/flashXML?xml=0000C0A80116000009C5920D00000124F67EC AA959F4B88C" name="movie" /><param value="high" name="quality" /><param value="true" name="allowfullscreen" /> <object height="316" width="228" align="middle" data="http://www.livescribe.com/media/swf/pencastPlayer.swf?path=http://www.livescribe.com/cgi-bin/WebObjects/LDApp.woa/wa/flashXML?xml=0000C0A80116000009C5920D00000124F67EC AA959F4B88C" type="application/x-shockwave-flash"><param value="high" name="quality" /><param value="true" name="allowfullscreen" /> <a href="http://www.adobe.com/go/getflashplayer"><img alt="Get Adobe Flash player" src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" /></a></object></object>

The problem is when I had the regular expression as

(http://[\w]*[\.]*mysite\.[\w/&;%-\.]+\.mp4) I could write 0000C0A80116000009C5920D00000124F67ECAA959F4B88C.m p4 even though it's not really an mp4 file, the $p1 includes the .mp4 extension. This way I can specify which linkes get embedded with a dummy .mp4 extension. But if I leave the regular expression as

http://[\w]*[\.]*mysite\.[\w/&;%-\.]+/([\d\w]+)(?:.*) $p1 replaces correctly as 0000C0A80116000009C5920D00000124F67ECAA959F4B88C but then every link that has my domain name in it tries to get embedded. I just need a way to set $p1 or have a $p2 so I can have the correct xml reference put in (like 0000C0A80116000009C5920D00000124F67ECAA959F4B88C)

I hope that makes more sense. If you'd rather me message you privately with my actual site name for my students, I can do that, but I don't want to say it here publicly since it's a site closed to the public only for my students and for their school work and tutorial videos.

Thanks!

Tim

morphin
11-17-2009, 08:43 PM
is anyone havign problems with this plugin?? it says embedding disabled by request watch on youtube when I click the vid to watch

MagicThemeParks
11-18-2009, 12:53 AM
is anyone havign problems with this plugin?? it says embedding disabled by request watch on youtube when I click the vid to watch

See notes here: https://vborg.vbsupport.ru/showpost.php?p=1719064&postcount=3

cliffhanger
11-18-2009, 02:31 AM
To further clarify my previous post, I think really all I need help with is setting up the regular expression formula:

Either

http://[\w]*[/url][\.]*mysite\.[\w/&;%-\.]+/([\d\w]+)(?:.*)

or

http://[\w]*[/url][\.]*mysite\.[\w/&;%-\.]+\.mp4)

to have a second backreference (on how to do that) so I can use $p2. I've tried altering the formula many times, and so far nothing seems to be working.

Thanks,

Tim

cliffhanger
11-18-2009, 03:18 AM
I think I finally figured it out. I must have finally put the right symbol by trial and error into my regular expression. The following works in order for me to get a livescribe pencast correctly embedded:

http://[\w]*[\.]*mysite\.[\w/&;%-\.]+/([\d\w]+)\.live

The .live is just a dummy extension so I'm able to identify which links are livescribe video pencasts. Thanks for your offering to help earlier -- I think I have it all figured out now.

Tim

furst
11-19-2009, 03:22 AM
Is there any way to make the container re-sizable to a greater width and height by pressing a collapse button in the corner?

webgroup
11-19-2009, 06:22 PM
This hack has stopped working since yesterday, seems like it needs to be updated for new Youtube settings.

jca2112
11-19-2009, 07:19 PM
Yeah, I can also confirm the hack has stopped parsing all YouTube links since yesterday -- it simply shows the url with the "External Embedding Not Available" title on all links (regardless whether external embedding has been enabled or not.)

Maybe something changed with YouTube's 1080p rollout?