Adobe flash player blocked in my website.
How can i Fix it..
Hello !
I manage a multisite WordPress (version 4.9.8) with 325 blogs.
We have change for PHP 7.3 and the blogs which are using WP-Flash have articles without any content, just title.
Please could you fix that bug ?
Thanks in advance.
]]>I’ve determined that this plug-in is causing post and page content to not show up after upgrading WordPress to version 5.
]]>Not sure why the other discussion was closed to new replies, but I ran into the same issue: Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
Here’s what we have to replace the deprecated preg_replace function:
$result = preg_replace_callback(
"'\[swf:(.*?)\]'",
function($matches) {
return stripslashes(wpFlashParseMacro($matches[1]));
}
,
$content
);
return $result;
]]>
Hi, using the plugin under php7 give the following
Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
Its line 30. You need to modify the line to
function wpFlashInsertSwf($content) {
return preg_replace_callback("'\[swf:(.*?)\]'", function($subs){ return stripslashes(wpFlashParseMacro($subs[1]));}, $content);
}
Greetings RS
]]>Hi, great plugin! However, when i try to adjust the height and width of my video it doesn’t seem to work, it just changes the position which it is placed on the screen.
Any help would be great. Thank you.
]]>Hi!
Your plugin works good!
Only a question: hoc can align my text on the left of my swf?
Thanks
]]>I am having some trouble with the flash. It is not resizing properly. Don’t know if I got it right. Below is my code:
[swf:https://www.globillionaire.com/RouteMap/GlobillionaireRoute.swf width:800px height:534px]
It shows the working flash but it is too small.
]]>