Quote:
Originally Posted by Lizard King
2.5 beta , file cache is on , Extract destination data is on ,
Daily motion regex is
Code:
http://[w\.]*dailymotion\.[com|alicet\.]+/[\w/\-]*video/[\w\-]+
Extract destination data is
Code:
http://[w\.]*dailymotion\.[com|alicet\.]+/swf/([\w]*)
|
Sounds like a bug in 2.5, as the definition wouldn't be causing this on it's own.
Quote:
Originally Posted by Rideharder
Its not working I tryed this..
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<AME>
<item>
<id>146</id>
<title>ClipShare Demo</title>
<description>Embed 561palmbeach.com Videos!</description>
<displayorder>1</displayorder>
<findcode><![CDATA[http://www\.561palmbeach\.com/view_video\.php\?viewkey=[\w]+[\w&;=]*]]></findcode>
<replacecode><![CDATA[<object type="application/x-shockwave-flash" width="320" height="260"wmode="transparent" data="http://www.561palmbeach.com/flvplayer.swf?file=http://561palmbeach.com/flvideo/$p1.flv&autostart=false&showfsbutton=true">
<param name="movie" value="http://www.561palmbeach.com/flvplayer.swf?file=http://www.561palmbeach.com/flvideo/$p1.flv&autostart=false&showfsbutton=true" />
<param name="wmode" value="transparent" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="http://www.561palmbeach.com/flvplayer.swf?file=http://www.561palmbeach.com/flvideo/$p1.flv&autostart=false&showfsbutton=true" loop="False" width="320" height="260" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</embed>
</object>]]></replacecode>
<status>1</status>
<container>1</container>
<embedregexp><![CDATA[http://www\.561palmbeach.com/flvideo/([\w]+)\.flv]]></embedregexp>
<extraction>1</extraction>
<gdef>0</gdef>
</item>
</AME>
|
Oh, it's more involved then that. Try building your definition inside the AME CP rather then trying to make an XML file from scratch. From what I can see, you don't need an Embed Regexp and you've just used embed code from a random definition rather then using the code your site actually uses. Also, your RegEx pattern doesn't even remotely match your website URLs. Go to post 3 in this thread and read over the tutorials if you interested in making them yourself. Your regex has to match your site URLs, and your site's URLs don't use the words
view_video in their strings and their not PHP pages. Something like:
Code:
http://www.561palmbeach.com/video/[\d]+/[\w-]+
But that's only part of it. I'll add it to the list for next update, but in the meantime, you should look those resources over.