{"id":24721915,"url":"https://github.com/funktechno/commentspress","last_synced_at":"2026-05-07T07:46:26.568Z","repository":{"id":54156023,"uuid":"344723255","full_name":"funktechno/CommentsPress","owner":"funktechno","description":"An open sourced software to administer comments. A replacement for WordPress for those that only want a service to manage comments and not their blog such a jamstack or jekyll.","archived":false,"fork":false,"pushed_at":"2021-10-11T18:31:07.000Z","size":606,"stargazers_count":0,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-22T12:47:50.356Z","etag":null,"topics":["chatbot","comment-system","contact-form","hacktoberfest","jamstack","jwt","mysql","php","sso","wordpress"],"latest_commit_sha":null,"homepage":"https://commentspressdemo.000webhostapp.com/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/funktechno.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-05T07:00:12.000Z","updated_at":"2021-10-11T18:31:07.000Z","dependencies_parsed_at":"2022-08-13T07:50:36.861Z","dependency_job_id":null,"html_url":"https://github.com/funktechno/CommentsPress","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/funktechno/CommentsPress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funktechno%2FCommentsPress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funktechno%2FCommentsPress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funktechno%2FCommentsPress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funktechno%2FCommentsPress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/funktechno","download_url":"https://codeload.github.com/funktechno/CommentsPress/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funktechno%2FCommentsPress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271344761,"owners_count":24743473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["chatbot","comment-system","contact-form","hacktoberfest","jamstack","jwt","mysql","php","sso","wordpress"],"created_at":"2025-01-27T12:15:03.358Z","updated_at":"2026-05-07T07:46:21.548Z","avatar_url":"https://github.com/funktechno.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](./images/site/logo.png)\n\n# Comments Administration PHP\n* An opensourced software to administer comments\n* lightweight php application for serving comments\n* very jamstack friendly\n\n## getting started\n* make sure xamp foulder is working, http://localhost//index.php\n  * http://localhost//acme/index.php\n  * http://localhost/phpmyadmin/\n* simple server `php -S 127.0.0.1:8000`\n  * open `http://localhost:8000`\n  * need a mysql running, can use docker or one from a shared host\n* docker mysql\n `docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -p 3306:3306 -d mysql:5.7.29` user: root\n* restart data\n  * run `sql/acme-db.sql`, then `sql/acme-data.sql` if you want the dummy data CAREFUL TO NOT RESET EXISTING DATA\n     * if your schema doesn't match manually fix the table columns\n     * simple db\n       * tables: `users,comments,pages,contactForms,configuration`\n  * may want to comment dummy data at the bottom\n\n## deploying\n* pending install scripts and being featured on one click softaculous, manual setup below\n* run `sql/acme-db.sql` CAREFUL TO NOT RESET EXISTING DATA against chosen mysql db\n  * may want to change the admin user w/ your email\n* copy all most files excluding `assets,rest,mail` folders\n* copy `cp ./config/connections-backup.php ./config/connections.php`\n  * fill out database settings, mail provider, jwt secret\n* test working mail form server in `mail` folder\n  * copy `mailConfig-back.php mailConfig.php`\n  * copy a working mail provider method in the library folder e.g. `cp library/mailFunctions-sendGrid.php library/mailFunctions.php`\n* navigate to the website\n  * register a new account or use the existing ones\n  * if new account change your clientLevel in the users table to 2 or above for admin access\n\n## testing\n* `composer install` also see `.github/workflows/unit_tests.yml`\n* `php tests/initialize.php` uncomment `resetDb();`\n* `./vendor/bin/phpunit` or `.\\vendor\\bin\\phpunit`\n  * `.\\vendor\\bin\\phpunit --filter testPageComments`\n\n## documentation\n* see `rest` folder for api endpoints on creating comments and registering\n\n## dependencies\n* no composer\n* mail\n  * you choose\n* mysql database\n  * can configure for other providers or replace\n* php 7\n\n\n## features\n* [x] jwt\n  * from https://github.com/adhocore/php-jwt\n* [x] configuration flags\n* [x] comment moderation\n * [x] approve comments\n * [x] change if moderation needed\n* [x] contact form support\n  * send contact us messages as api\n  * view messages\n* [x] api\n  * login, register\n  * comments\n  * form submission\n* basic user management\n  * reset password\n  * [x] change password\n  * [x] update display name\n  * [x] register user\n  * [x] login user\n  * [x] view own comments\n  * all other functions require a clientLevel \u003e 1, e.g. review comments see messages\n* plans for sso (facebook, google)\n* [ ] comment filter\n  * flagging system?\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunktechno%2Fcommentspress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunktechno%2Fcommentspress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunktechno%2Fcommentspress/lists"}