<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>post URL links in facebook</title>
        <description>Hi...
whenever i take  a link from the post and put it on Facebook to share....once i click on it (while on facebook) it gets me to the forum page with all the topics listed - list.php (not particular post)...

forum links look like this:
http://www.mydomain.com/list.php?8

post links look like this:

http://www.mydomaint.com/read.php?8,7663,7663#msg-7663

is there a fix to my problem?

thank you.....</description>
        <link>https://www.phorum.org/support/read.php?61,145041,145041#msg-145041</link>
        <lastBuildDate>Sun, 13 Sep 2026 21:42:34 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,158423#msg-158423</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,158423#msg-158423</link>
            <description><![CDATA[ Maybe someone somewhere has come up with another solution, however I have solved this for myself using a .htaccess file in the phorum directory with the following rule...<br />
<br />
RewriteEngine on<br />
<br />
RewriteCond %{QUERY_STRING} ^(.*)\%2C(.*)$  [NC]<br />
RewriteRule ^read.php$ read.php$1?%1,%2  [L]<br />
<br />
Its case insensitive [NC] so covers both %2C and %2c<br />
hope that helps...]]></description>
            <dc:creator>Phil</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Wed, 15 Jun 2016 07:26:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,152573#msg-152573</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,152573#msg-152573</link>
            <description><![CDATA[ Thanks Phil, I appreciate you taking the time to answer.. I&#039;ll have a think about how to approach this.]]></description>
            <dc:creator>GraemeVil</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Mon, 12 Nov 2012 13:57:30 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,152538#msg-152538</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,152538#msg-152538</link>
            <description><![CDATA[ What&#039;s happening is that the extra arguments Facebook is adding (in your attachment, the stuff in the URL starting at the &amp;fb_action_ids=10151337719510579.....) is not being handled by Phorum&#039;s core.  There is logic in the core that looks for an ampersand, and if it is found, then Phorum switches to use that to delimit query string arguments instead of commas.  The Facebook constructed URL has your original Phorum IDs delimited by commas, but the ampersand has Phorum looking for its IDs using the wrong delimiter.  Not finding any, Phorum will default to your list of forums.<br />
<br />
It would technically be possible to modify Facebook URL Fixer to strip off the stuff after the ampersand, but the module runs on every single request your Phorum receives, not just the ones that come from Facebook.  We wouldn&#039;t want it to blindly muck up a perfectly good URL just because there is a &amp; symbol in it somewhere.  It would also technically be possible to manipulate the query string data that Phorum reads from to include message IDs, but that is a real hacky way to fix a problem.<br />
<br />
So, after that quickie analysis, I have to say I don&#039;t really have a satisfactory solution (just two unsatisfactory ones - well, three if I suggest just hacking the core in common.php around line 367).  Maybe someone else has an idea I missed :)]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Wed, 07 Nov 2012 13:49:25 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,152525#msg-152525</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,152525#msg-152525</link>
            <description><![CDATA[ hi there, thanks very much for posting these fixes.. <br />
they do seem to work, the facebook_url_fixer.php and the og: facebook meta tags.. <br />
<br />
however, i have noticed something.. <br />
<br />
when viewing the linked article on my Facebook page, sometimes facebook adds some tracking parameters to the link on my facebook page<br />
eg [<a href="http://www.vetclick.com/forum/read.php?6%2C11400&amp;fb_action_ids=10151337719510579&amp;fb_action_types=og.likes&amp;fb_source=other_multiline&amp;action_object_map=%7B%2210151337719510579%22%3A10150295328851431%7D&amp;action_type_map=%7B%2210151337719510579%22%3A%22og.likes%22%7D&amp;action_ref_map=%5B%5D" target="_blank"  rel="nofollow">www.vetclick.com</a>]<br />
<br />
when these are added, the facebook_url_fixer.php does not work, and instead one goes back to the index page of the forum.<br />
<br />
when facebook leaves these out, it works fine. it&#039;s random when FB attach this to the links on my Facebook page it seems.<br />
<br />
is there a way around it?<br />
<br />
PS i&#039;ve attached a text file with the full link as it&#039;s sanitised in my post]]></description>
            <dc:creator>GraemeVil</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 06 Nov 2012 08:27:31 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,151451#msg-151451</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,151451#msg-151451</link>
            <description><![CDATA[ I have solved the issue by applying one of the suggestions Phil gave on this thread:<br />
<br />
[code=&quot;html4strict&quot;]<br />
&lt;meta property=&quot;og:title&quot; content=&quot;Title of my page&quot; /&gt;<br />
&lt;meta property=&quot;og:type&quot; content=&quot;article&quot; /&gt;<br />
&lt;meta property=&quot;og:url&quot; content=&quot;URL of my page&quot; /&gt;<br />
[/code]]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 17 May 2012 03:09:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,151450#msg-151450</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,151450#msg-151450</link>
            <description><![CDATA[ You can use the Facebook URL debugger to see how it&#039;s being translated (incorrectly)<br />
<br />
--&gt; [<a href="https://developers.facebook.com/tools/debug" target="_blank"  rel="nofollow">developers.facebook.com</a>]]]></description>
            <dc:creator>Skye N.</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 17 May 2012 03:01:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,151446#msg-151446</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,151446#msg-151446</link>
            <description><![CDATA[ I have experienced something different.<br />
Up to a couple of weeks ago links worked fine on FB. Then for some unknown reason stopped working and although the URL fix module is active still it shows the link page. :-(((<br />
<br />
I can understand someone who has issues to make it work but honestly can&#039;t possibly understand why in my case it stopped working.]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 17 May 2012 01:24:11 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,150702#msg-150702</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,150702#msg-150702</link>
            <description><![CDATA[ Thank you, I&#039;ve bumped the Facebook bug report, maybe one of these months someone will fix it]]></description>
            <dc:creator>Skye N.</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 22 Dec 2011 14:50:41 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149343#msg-149343</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149343#msg-149343</link>
            <description><![CDATA[ Thanks Phil for your efforts. I&#039;ll try reinstalling the Facebook URL fixer, otherwise I&#039;ll have to make do ;)<br />
<br />
Cheers<br />
Aaron]]></description>
            <dc:creator>PerfectPetFinder</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Sat, 06 Aug 2011 02:58:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149313#msg-149313</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149313#msg-149313</link>
            <description><![CDATA[ Well, your test post just confirms that Facebook is not reaching the post properly via its URL.  Their URL Linter reports a title &quot;Cats lost in South Australia&quot; instead of &quot;This is just a test&quot;, meaning Facebook is parsing your forum list page (http://perfectpetfinder.com.au/lostandfound/list.php?5) because, no surprise if you followed this whole thread, Facebook can&#039;t handle Phorum&#039;s commas in the URL.  Your OG properties are fine. Phorum is fine.  Facebook for some reason after all this time still can&#039;t properly encode and decode a comma.<br />
<br />
The question is, how come Facebook URL Fixer module is not doing its job?  If you have that installed, and activated, your site should be working, so I am not sure what more to advise.<br />
<br />
-phil.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 29 Jul 2011 23:50:00 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149307#msg-149307</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149307#msg-149307</link>
            <description><![CDATA[ Thanks again for your reply Phil. It would be great if you can take a look. My website is <a href="http://perfectpetfinder.com.au/lostandfound/" target="_blank"  rel="nofollow">http://perfectpetfinder.com.au/lostandfound/</a>. The Phorum is not properly integrated into the rest of my site, so if you navigate away from the Phorum installation you will manually have to enter the URL again.<br />
<br />
I decided to remove the code I quoted above from the header.tpl and instead installed your group of <a href="http://www.phorum.org/phorum5/read.php?20,148842,page=1" target="_blank" >Facebook modules</a>. They are really good - thanks for sharing!<br />
<br />
However, I still have the same issue that the body of the message (or at least some of it) doesn&#039;t make it over to the Facebook wall. For example, <a href="http://perfectpetfinder.com.au/lostandfound/read.php?5,6" target="_blank"  rel="nofollow">you would expect this post</a> to have at least included some of the &quot;Just Lorem ipsum dolor sit amet...&quot; when it appears on Facebook, but it doesn&#039;t. If I make a comment, that appears, but none of the text from the Phorum post.<br />
<br />
Any advice would be greatly appreciated.<br />
<br />
Cheers<br />
<br />
Aaron]]></description>
            <dc:creator>PerfectPetFinder</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 29 Jul 2011 01:06:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149301#msg-149301</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149301#msg-149301</link>
            <description><![CDATA[ I&#039;ve had success using the OG properties, as well as having Facebook just read the content in my pages (which it does in the absence of relevant OG properties).  But in all cases within Phorum, for me it requires the Facebook URL Fixer module, and public permissions for the message read page.  That second requirement has got me a few times... a page that is behind any security will not work with Facebook&#039;s robots because obviously they have no way to log in.  So at the moment, that is all I have for help.  If you post a link to your phorum page having your like button I can look.  You can also analyze your URL using <a href="http://check.rdfa.info/" target="_blank"  rel="nofollow">This tool</a> which has a Facebook tab in the results which will tell you any specific problems Facebook might have.  And Facebook has there own tool here: <a href="http://developers.facebook.com/tools/lint/" target="_blank"  rel="nofollow">URL Linter</a><br />
<br />
-phil.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 28 Jul 2011 14:08:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149292#msg-149292</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149292#msg-149292</link>
            <description><![CDATA[ Hi Phil,<br />
<br />
As you may have already guessed, but I&#039;m a noob so I&#039;m not too sure that I&#039;m using the right HTML code. I&#039;m just using my best educated guess and experimentation to try and achieve what I want. For example, instead of using the {DESCRIPTION} tag I was previously trying to use the {MESSAGES-&gt;body} tag from the read.tpl in order to display the message content on Facebook (with no success). I figured that trying to use a tag that is referenced in another template just doesn&#039;t work.<br />
<br />
In relation to Facebook mangling Phorum URLs, I have previously installed the Facebook URL Fixer module. Is that all I need to worry about, or is there still an issue?<br />
<br />
Your help is much appreciated.<br />
<br />
Cheers<br />
<br />
Aaron]]></description>
            <dc:creator>PerfectPetFinder</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 26 Jul 2011 22:11:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149290#msg-149290</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149290#msg-149290</link>
            <description><![CDATA[ Hi Aaron,<br />
<br />
If you have confirmed that the generated HTML returned by Phorum contains what you are expecting, i.e., you can see it, then the problem is on the Facebook side.  They are not reading the same page as the one with your like button.  There is discussion about this at the beginning of this thread where people report Facebook is mangling Phorum URLs, which based on your description of the problem seems to be what is happening to you.  Have you tried the <a href="http://www.phorum.org/phorum5/read.php?62,146932,146932#msg-146932" target="_blank" >Facebook URL Fixer</a> module?<br />
<br />
-phil.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 26 Jul 2011 20:13:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149289#msg-149289</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149289#msg-149289</link>
            <description><![CDATA[ Thanks Phil for your reply.<br />
<br />
At the moment I am using the following code (in full) in the header template:<br />
<br />
[code=&quot;html4strict&quot;]<br />
&lt;html xmlns=&quot;[<a href="http://www.w3.org/1999/xhtml&quot" target="_blank"  rel="nofollow">www.w3.org</a>];<br />
      xml:lang=&quot;{LOCALE}&quot;<br />
      lang=&quot;{LOCALE}&quot;<br />
      xmlns:og=&quot;[<a href="http://ogp.me/ns#&quot" target="_blank"  rel="nofollow">ogp.me</a>];<br />
      xmlns:fb=&quot;[<a href="https://www.facebook.com/2008/fbml&quot;&gt" target="_blank"  rel="nofollow">www.facebook.com</a>];<br />
  &lt;head&gt;<br />
    &lt;title&gt;{HTML_TITLE}&lt;/title&gt;<br />
    &lt;meta property=&quot;og:title&quot; content=&quot;{HTML_TITLE}&quot; /&gt;<br />
    &lt;meta property=&quot;og:type&quot; content=&quot;article&quot; /&gt;<br />
    &lt;meta property=&quot;og:url&quot; content=&quot;&lt;?php print phorum_get_current_url(); ?&gt;&quot; /&gt;<br />
    &lt;meta property=&quot;og:image&quot; content=&quot;[<a href="http://perfectpetfinder.com.au/images/PPF_Logo1_Colour_190x38.jpg&quot" target="_blank"  rel="nofollow">perfectpetfinder.com.au</a>]; /&gt;<br />
    &lt;meta property=&quot;og:site_name&quot; content=&quot;Perfect Pet Finder: Lost and Found Pets&quot; /&gt;<br />
    &lt;meta property=&quot;og:description&quot; content=&quot;{DESCRIPTION}&quot; /&gt;<br />
[/code]<br />
<br />
Using this code, all that appears on Facebook, after I have clicked &#039;like&#039;, is the title of the forum (rather than the subject of the individual post), the base URL (i.e. perfectpetfinder.com.au) and my logo. The message body from the post, where the &#039;like&#039; button is located, does not appear in the Facebook post.<br />
<br />
I really would like each &#039;like&#039; button to take the content from a particular post and have that appear on Facebook, rather than just a generic information about my site as a whole.<br />
<br />
I suppose what I&#039;m really asking is if anyone knows what {tags} to use (e.g. {HTML TITLE}) in order to have the subject of each post appear in title, and the message body appear in the description meta for each post.<br />
<br />
I hope this makes sense :-)<br />
<br />
Thanks for your help!<br />
<br />
Aaron]]></description>
            <dc:creator>PerfectPetFinder</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 26 Jul 2011 19:35:50 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149288#msg-149288</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149288#msg-149288</link>
            <description><![CDATA[ What exactly isn&#039;t working?  The og:description property is parsed by facebook, so if you have it populated, it should work.  The og:image question is kinda outside of the scope of this thread, so maybe it would be better to start another one where you ask how to get a reference to a user&#039;s uploaded images into Phorum variables that you can use in your header templates.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 26 Jul 2011 11:51:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,149286#msg-149286</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,149286#msg-149286</link>
            <description><![CDATA[ What do people use for the &quot;og:description&quot; tag? I&#039;m wanting to display the content of each post- if that is possible. I&#039;ve tried using<br />
[code=&quot;html4strict&quot;]<br />
&lt;meta property=&quot;og:description&quot; content=&quot;{DESCRIPTION}&quot; /&gt;<br />
[/code]<br />
But that hasn&#039;t worked...don&#039;t know why? <br />
<br />
Also, what code would you use in order to display a user&#039;s uploaded photo in &quot;og:image&quot; tag?<br />
<br />
Essentially I&#039;m wanting to display a mini version of a user&#039;s post when someone click&#039;s &#039;like&#039;. Does anyone know if this is even possible?]]></description>
            <dc:creator>PerfectPetFinder</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 26 Jul 2011 00:53:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,147449#msg-147449</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,147449#msg-147449</link>
            <description><![CDATA[ Or ask the admin to install the mod.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 14 Jan 2011 09:21:32 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,147447#msg-147447</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,147447#msg-147447</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Maurice Makaay</strong><br />there&#039;s already a perfect emergency band aid available</div></blockquote> for administrators to install. Us regular users must use [<a href="http://turl.ca/" target="_blank"  rel="nofollow">turl.ca</a>] etc. shortener services.]]></description>
            <dc:creator>jidanni</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 14 Jan 2011 08:15:56 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,147445#msg-147445</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,147445#msg-147445</link>
            <description><![CDATA[ Some SEO people are really nervous about having multiple URLs for the same content (not that I think that it really matters for engines like Google.)<br />
<br />
Providing alternative URLs wouldn&#039;t really work well either, would they? As long as Phorum uses the comma-driven URLs, users would cut and paste that URL to Facebook, not being aware that they should replace all commas with ampersands.<br />
<br />
For Phorum, there&#039;s already a perfect emergency band aid available: the <a href="http://www.phorum.org/phorum5/read.php?62,146932,146932#msg-146932" target="_blank" >Facebook URL Fixer</a> module, which works wonders, without having to change anything drastically basic.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 14 Jan 2011 07:59:20 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,147444#msg-147444</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,147444#msg-147444</link>
            <description><![CDATA[ No, I merely suggested always providing alternative ways to reach the<br />
same page in an emergency, just as<br />
[<a href="http://en.wikipedia.org/wiki/Stupidity" target="_blank"  rel="nofollow">en.wikipedia.org</a>]<br />
[<a href="http://en.wikipedia.org/w/index.php?title=Stupidity" target="_blank"  rel="nofollow">en.wikipedia.org</a>]<br />
[<a href="http://en.wikipedia.org/w/index.php?title=Stupidity&amp;action=view" target="_blank"  rel="nofollow">en.wikipedia.org</a>]<br />
all reach the same page.]]></description>
            <dc:creator>jidanni</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 14 Jan 2011 07:43:57 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,147442#msg-147442</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,147442#msg-147442</link>
            <description><![CDATA[ The administrators that use our software will love it when all of a sudden all their URLs are modified into something different.<br />
<br />
Surely, some rewrite rules on Apache servers or possibly a module could handle the redirection to the new location, but as long as it&#039;s only Facebook not respecting the standards, we rather stick to the (valid) URL format to ensure that no migration issues can occur.<br />
<br />
Thanks for voting for the bug at Facebook&#039;s bugtracker.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 14 Jan 2011 07:32:07 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,147441#msg-147441</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,147441#msg-147441</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Brian Moon</strong><br />
I have submitted a bug to Facebook about this. [<a href="http://bugs.developers.facebook.net/show_bug.cgi?id=13655" target="_blank"  rel="nofollow">bugs.developers.facebook.net</a>]</div></blockquote>
Well it seems this problem has been forgotten there. At least one can add their vote to it.<br />
<br />
Perhaps in the future phorum could provide an alternate URL syntax containing no commas, they all being replaced with &amp;xxx=...&amp;yyy=... etc. That way there will be a workaround already ready the next time it happens with some other website.]]></description>
            <dc:creator>jidanni</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Fri, 14 Jan 2011 07:05:54 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146971#msg-146971</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146971#msg-146971</link>
            <description><![CDATA[ Did you try adding the OG meta tags to your pages?<br />
<br />
They look something like this:<br />
[code=&quot;html4strict&quot;]<br />
&lt;meta property=&quot;og:title&quot; content=&quot;Title of my page&quot; /&gt;<br />
&lt;meta property=&quot;og:type&quot; content=&quot;article&quot; /&gt;<br />
&lt;meta property=&quot;og:url&quot; content=&quot;URL of my page&quot; /&gt;<br />
&lt;meta property=&quot;og:image&quot; content=&quot;Image you want facebook to display&quot; /&gt;<br />
[/code]<br />
<br />
In Phorum templates you could just make it automatic for any page, put this in your header.tpl:<br />
[code=&quot;html4strict&quot;]<br />
&lt;meta property=&quot;og:title&quot; content=&quot;{HTML_TITLE}&quot; /&gt;<br />
&lt;meta property=&quot;og:type&quot; content=&quot;article&quot; /&gt;<br />
&lt;meta property=&quot;og:url&quot; content=&quot;&lt;?php print phorum_get_current_url(); ?&gt;&quot; /&gt;<br />
&lt;meta property=&quot;og:image&quot; content=&quot;Image you want facebook to display&quot; /&gt;<br />
[/code]<br />
<br />
<br />
This works for me.<br />
<br />
-phil.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 25 Nov 2010 16:32:10 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146970#msg-146970</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146970#msg-146970</link>
            <description><![CDATA[ anyone did any looking into the &#039;title&#039; issue that I mentioned above? Or have any ideas how to solve this.]]></description>
            <dc:creator>amnesia</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 25 Nov 2010 16:13:18 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146934#msg-146934</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146934#msg-146934</link>
            <description><![CDATA[ Facebook looks for information about your pages using the open graph protocol, and here is their implementation of it: [<a href="http://developers.facebook.com/docs/opengraph" target="_blank"  rel="nofollow">developers.facebook.com</a>]<br />
<br />
Try placing their meta tags on your pages and see if that works.  You should test on a fresh thread, one that facebook hasn&#039;t seen yet, they seem to cache their results for a time.  You can use this tool at Facebook [<a href="http://developers.facebook.com/tools/lint/" target="_blank"  rel="nofollow">developers.facebook.com</a>] to verify your tags are working.<br />
<br />
-phil.<br />
<br />
Added a little later: ... and I can also say that facebook doesn&#039;t parse their own meta tags consistently it seems.  I have some pages that work, and some that don&#039;t, but can&#039;t tell why.<br />
<br />
And added more a little later: I just did some tests to check that the URL facebook&#039;s parser is actually reaching the correct page.  Looking at my logs, they are (with the %2C instead of commas, of course), and I can see my code to fix the commas is working.  So even when facebook is parsing the wrong title (i.e., the forum title instead of the thread title), they are reading the correct URL.  They seem to have an issue in their parsing...  I am starting to hate facebook...<br />
<br />
And one more addition: Arrrrgggggghhhhhhh! Sorry Facebook, you seem to be working right after all.  I was testing with several forums and most worked.  But one has read permissions (which I forgot).  And of course facebook&#039;s parser can&#039;t read those threads, so Phorum sends back the generic content.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Mon, 22 Nov 2010 11:40:26 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146933#msg-146933</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146933#msg-146933</link>
            <description><![CDATA[ I tried the common.php hack works, it works.  I noticed there is a parse_request hook that makes it possible to do this without a hack ;-) so here is a simple module to work around facebook&#039;s bug [<a href="http://www.phorum.org/phorum5/read.php?62,146932" target="_blank" >www.phorum.org</a>] until they fix it on their end.<br />
<br />
-phil.]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Mon, 22 Nov 2010 11:15:24 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146916#msg-146916</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146916#msg-146916</link>
            <description><![CDATA[ I have submitted a bug to Facebook about this. [<a href="http://bugs.developers.facebook.net/show_bug.cgi?id=13655" target="_blank"  rel="nofollow">bugs.developers.facebook.net</a>]]]></description>
            <dc:creator>Brian Moon</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 18 Nov 2010 07:45:58 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146892#msg-146892</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146892#msg-146892</link>
            <description><![CDATA[ ok so I added that and it does solve links on facebook, so that they are directed to the correct thread.<br />
<br />
<br />
The other issue is with &#039;Like&#039;.<br />
<br />
It now likes the correct thread, however the &#039;title&#039; of the page is incorrect. Facebook uses the section the thread was in as the title rather than the title of the thread.<br />
<br />
If you have a facebook account, you can test this by visiting a thread here<br />
<br />
[<a href="http://www.iloveqatar.net/forum" target="_blank"  rel="nofollow">www.iloveqatar.net</a>]<br />
<br />
and then clicking on the like button on the bottom of the page on the toolbar.]]></description>
            <dc:creator>amnesia</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 16 Nov 2010 10:28:41 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,145041,146891#msg-146891</guid>
            <title>Re: post URL links in facebook</title>
            <link>https://www.phorum.org/support/read.php?61,145041,146891#msg-146891</link>
            <description><![CDATA[ Yeah I&#039;ve been using a url shortner but besides being tedious for users, it doesn&#039;t help with the &#039;like&#039; button.<br />
<br />
I&#039;ll give this a go!]]></description>
            <dc:creator>amnesia</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 16 Nov 2010 10:23:11 -0600</pubDate>
        </item>
    </channel>
</rss>
