Wildcard Subdomains in a Parent Folder This is just a really easy way to keep adding new subdomains, or to add new domains automatically when DNS records are pointed at the server. Note that I have included FCGI here as well. If you want to just serve static files, strip out the FCGI config and …
Monthly Archives: February 2011
open source social networking engine
Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications. Organizations with networks powered by Elgg include:
NoSQL databases
NoSQL DEFINITION: Next Generation Databases mostly addressing some of the points: being non-relational, distributed, open-source and horizontal scalable. The original intention has been modern web-scale databases. The movement began early 2009 and is growing rapidly. Often more characteristics apply as: schema-free, easy replication support, simple API, eventually consistent / BASE (not ACID), a huge data …
Jquery tablesorter
Javascript $(document).ready(function() { $(“table”) .tablesorter({widthFixed: true, widgets: [‘zebra’]}) .tablesorterPager({container: $(“#pager”)}); });
FLV hanging on last frame?
<script> flowplayer(“player”, “Scripts/flowplayer/flowplayer-3.2.5.swf”, { clip: { autoPlay: true, autoBuffering: true }, onFinish: function() { // set an event handler in the configuration this.pause(); } }); </script>
php load file
function parse($file) { global $str; ob_start(); include($file); $buffer = ob_get_contents(); ob_end_clean(); return $buffer; } function parse($file) { global $str; ob_start(); include($file); $buffer = ob_get_contents(); ob_end_clean(); return $buffer;}