Bugs » #17
This section on the Community is no longer supported, in favour of Wikidot's Official Feedback Site.
It is retained here for archiving purposes.
Bugs
Tags
Posted by Phil Chett on 06 Jul 2008 12:57, last edited on 04 Mar 2009 14:10
This bug has a workaround, but has not been fixed |
Description
If i try and create a new meebo chat room using the code provided i get
How to Reproduce
Create new meebo account, set up chat room, copy and paste code.
Browsers
All
Works correctly
Using the old code
Workarounds
here is some old version code. (slightly edited for reading ease)
[[embed]]
<embed src="http://widget.meebo.com/mm.swf?ZZNjBKiApG" type="application/x-shockwave-flash" wmode="transparent" width="190" height="275"></embed>
[[/embed]]
Result
[[embed]]
<embed src="http://widget.meebo.com/mm.swf?ZZNjBKiApG" type="application/x-shockwave-flash" wmode="transparent" width="190" height="275"></embed>
[[/embed]]
this is the new version code as provided by meebo (slightly edited in the same way as above)
[[embed]]
<embed src="http://widget.meebo.com/mm.swf?hmotynVUDQ" type="application/x-shockwave-flash" width="190" height="275"></embed>
[[/embed]]
Result
The fix
with the non working code eg:
embed src="http://widget.meebo.com/mm.swf?hmotynVUDQ" type="application/x-shockwave-flash"
width="190" height="275"
add to it
wmode="transparent"
So it looks like this
embed src="http://widget.meebo.com/mm.swf?hmotynVUDQ" type="application/x-shockwave-flash"
wmode="transparent" width="190" height="275"
Resulting code (in its entirety) should look like:
[[embed]]
<!-- Beginning of meebo me widget code.
Want to talk with visitors on your page?
Go to http://www.meebome.com/ and get your widget! -->
<embed src="http://widget.meebo.com/mm.swf?hmotynVUDQ" type="application/x-shockwave-flash" wmode="transparent" width="190" height="275"></embed>
[[/embed]]
Result :
Author
Rate this Bug
Rate the urgency of this bug. If you think it is more urgent and important than it's current rating suggests, rate it up.
Could not get this to work with meebo chatroom.
Alternatively you can use iframe embedding and host the page at some other server.
You don't need to host a Meebo Chatroom on another server, it works well on Wikidot using a codeblock/iframe combination as follows:
codeblock
On the page where you want your meebo chatroom, put the code inside [[code type="html"]].. [[/code]] tags as follows, making sure you also add the<html> and </html> tags:
iframe
Then underneath the codeblock, on the same page, add an iframe referring to the codeblock above. Replace YOURSITE with the name of your site, and YOURPAGE with the name of the page the codeblock and iframe are on. If the codeblock is the first or only codeblock on that page then use /code/1, if it's the second use /code/2 and so on
The result is:
Rob Elliott - Strathpeffer, Scotland - Wikidot first line support & community admin team.
Exactly the same result is also possible using James' wizard at http://snippets.wikidot.com/code:iframe-embed which produces the following code which you just put on your page:
Rob Elliott - Strathpeffer, Scotland - Wikidot first line support & community admin team.
Yeah did found out, you could also upload a html file to wikidot and use iframe.
Here I make a new page called chat in wikidot and upload a file called chatroom.htm. Then I edit the chat page and put this code and save it.