{"id":34856528,"url":"https://github.com/adhuham/tinycomment","last_synced_at":"2026-04-23T06:33:25.892Z","repository":{"id":191020339,"uuid":"247792228","full_name":"adhuham/tinycomment","owner":"adhuham","description":"Teeny tiny, easy-to-deploy comment system for static websites.","archived":false,"fork":false,"pushed_at":"2020-03-28T17:22:09.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-27T04:56:18.796Z","etag":null,"topics":["comment-system","php","static-site","static-site-generator"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adhuham.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-03-16T18:46:16.000Z","updated_at":"2020-03-28T17:22:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"ec31f235-0263-4dab-8efd-f8d136419e8a","html_url":"https://github.com/adhuham/tinycomment","commit_stats":null,"previous_names":["adhuham/tinycomment"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adhuham/tinycomment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhuham%2Ftinycomment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhuham%2Ftinycomment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhuham%2Ftinycomment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhuham%2Ftinycomment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adhuham","download_url":"https://codeload.github.com/adhuham/tinycomment/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adhuham%2Ftinycomment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32169657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T02:19:40.750Z","status":"ssl_error","status_checked_at":"2026-04-23T02:17:55.737Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["comment-system","php","static-site","static-site-generator"],"created_at":"2025-12-25T20:01:59.287Z","updated_at":"2026-04-23T06:33:25.878Z","avatar_url":"https://github.com/adhuham.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TinyComment\nTeeny tiny, easy-to-deploy self-hosted PHP-based comment system for static websites.\n\n# Installation\n1) Download the repo and extract it to the root of your website. (eg. https://yourwebsite.com/tinycomment/)\n2) Give appropriate permission to the /data/ folder. The user that's running your server process (www-data in Ubuntu/Debian) should be able to Read, Write and Execute in the folder.\n\nYou can use the following commands in Ubuntu/Debian based servers.\n  ```bash\n   cd /path/to/tinycomment/\n   sudo chown :www-data -R ./data/\n   sudo chmod g+rwx -R ./data/\n  ```\n3) Put the below code snippet to your website:\n\n```html\n\u003cdiv data-tinycomment\u003e\u003c/div\n\u003cscript src=\"http://yourwebsite.com/tinycomment/script.js\" data-tinycomment-path=\"http://yourwebsite.com/tinycomment\"\u003e\u003c/script\u003e\n```\nReplace http://yourwebsite.com/tinycomment with the path you extracted the TinyComment in Step 1.\n\n## Deploying to a Sub-Domain\nYou can also deploy to a subdomain (if you can't do it in your site's root.) In that case replace all the instances of https://yourwebsite.com/tinycomment with your subdomain (eg. https://tinycomment.yourwebsite.com/). Make sure you add appropriate ``Access Control`` headers to your web server's configuration. \n\n# Contribution\nTinyComment is in very early stage of development. So any contribution is welcomed; no matter how small it is. But do keep the following in mind while contributing.\n1) We want the project to be small, so the number of files should be kept minimal.\n2) Any change you bring should not add any extra step for the user in the deployment process. We want the user to be able to just extract the files and get on with it.\n3) Use PSR-12 style guidelines.\n\nThe todo list below highlights the features we want to be developed.\n\n# Todo\n* [ ] Moderation page where the website author can see all the comments and moderate them\n* [ ] Reply feature for the comments\n* [ ] Option to send email notifications to the website owner once a comment is recieved\n* [ ] Option to only allow comments after moderation\n* [ ] Ability to add more fields to the comment form (website, email, twitter handle)\n\n# License\nCopyright (C) 2020 Mohamed Adhuham\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadhuham%2Ftinycomment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadhuham%2Ftinycomment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadhuham%2Ftinycomment/lists"}