MyBB Community Forums

Full Version: URL posting and its title appearing automatically
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, in MyBB 2.0 if an user posts an url, is its title appears automatically?

For example: http://community.mybb.com -> MyBB Community Forums

Thanks in advance
That should be a plugin. It's quite an intensive process to get the page title, especially if the post has many links. Caching is out of the question too because they're too dynamic.
I tried to make this as a plugin once, but it just didn't work out well.
i think we need to do something in client side, not in server side..

possible in js, i think so
(2012-06-21, 08:46 AM)feastboy Wrote: [ -> ]i think we need to do something in client side, not in server side..

possible in js, i think so

Same domain policy is going to shout at you if you try it client side. Unless aided by the server it's more or less impossible. You'd still need to fetch the page content of each page, search each set of data for the <title> tag, parse it, send it back to the browser. It's too intensive to be included as core.