This document will guide you through the installation of LikeList.
Once installed, LikeList is easily managed by the admin panel, which can be accessed by adding /admin/ to your site's address (default user/password is admin/admin).
From there you can manage pretty much everything in your site. The options are not complicated, so feel free to explore them.
If you find encounter any problems or have any questions or feature requests, please contact us at likelist@part3.org.
Also please send us your feedback, so that we can make the product even better; it will benefit you too!
These are the rewrites needed in order to use pretty urls on the lighttpd webserver.
If you're not using this webserver, disregard this.
url.rewrite-once = ( "^/index$" => "index.php", "^/create$" => "create.php", "^/report$" => "report.php", "^/email$" => "email.php", "^/rss/?$" => "rss.php", "^/like/(\d+)*($|\?)" => "like.php?l=$1", "^/track$" => "track.php", "^/track/(\d+)*$" => "track.php?ad=$1", "^/search/([^\/]+)*($|\?)" => "search.php?k=$1", "^/search/([^\/]+)*/([0-9]+)($|\?)" => "search.php?k=$1&p=$2", "^/search/([^\/]+)*/([^\/]+)*($|\?)" => "search.php?t=$1&k=$2", "^/search/([^\/]+)*/([^\/]+)*/([0-9]+)($|\?)" => "search.php?t=$1&k=$2&p=$3", "^/page/(\d+)*($|\?)" => "page.php?p=$1", "^/page/([^\/]+)*($|\?)" => "page.php?n=$1" )