Adding a Channel File greatly improves the performance of the Facebook JS SDK by addressing issues with cross-domain communication in certain browsers as per the documentation.
The contents of the channel.html file should be just a single line:
<script src="//connect.facebook.net/en_US/all.js"></script>
The channel file should be set to be cached for as long as possible.
In PHP:-
<?php
$cache_expire = 60*60*24*365;
header("Pragma: public");
header("Cache-Control: max-age=".$cache_expire);
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$cache_expire) . ' GMT');
?>
<script src="//connect.facebook.net/en_US/all.js"></script>
How to create the similar file in Perl?