{"id":43479570,"url":"https://github.com/mantisbt-plugins/faq","last_synced_at":"2026-02-03T08:14:00.756Z","repository":{"id":1131995,"uuid":"2066086","full_name":"mantisbt-plugins/faq","owner":"mantisbt-plugins","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-13T10:31:55.000Z","size":101,"stargazers_count":3,"open_issues_count":0,"forks_count":9,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-05-14T08:29:40.968Z","etag":null,"topics":["mantisbt-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mantisbt-plugins.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-07-18T12:20:12.000Z","updated_at":"2024-05-13T10:31:59.000Z","dependencies_parsed_at":"2023-11-30T12:30:55.661Z","dependency_job_id":"2e83b938-025e-4b5d-aa36-417470c9937d","html_url":"https://github.com/mantisbt-plugins/faq","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mantisbt-plugins/faq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantisbt-plugins%2Ffaq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantisbt-plugins%2Ffaq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantisbt-plugins%2Ffaq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantisbt-plugins%2Ffaq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mantisbt-plugins","download_url":"https://codeload.github.com/mantisbt-plugins/faq/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mantisbt-plugins%2Ffaq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29038052,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T06:39:36.383Z","status":"ssl_error","status_checked_at":"2026-02-03T06:39:32.787Z","response_time":96,"last_error":"SSL_read: 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":["mantisbt-plugin"],"created_at":"2026-02-03T08:14:00.198Z","updated_at":"2026-02-03T08:14:00.745Z","avatar_url":"https://github.com/mantisbt-plugins.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mantis plugin FAQ 2.05\n\n**Author**: Cas Nuy \\\n**Based upon**: FAQ by pbia-at-engineering.com \\\n**Website**: \u003chttp://www.nuy.info\u003e \\\\\n**Mail**:  Cas-at-Nuy.info \\\n**Copyright**: GPL\n\n## Description\n\n_This plugin only for MantisBT  2.x.x. For version for MantisBT 1.x.x download an earlier release Thank you._\n\nThis plugin enables a FAQ option on the main menu.\nThe FAQ can be searched in a number of ways.\nEach FAQ can be connected site wide or to a specific project.\nIn addition a link can be added to the “bug view pages” such that an issue can be promoted to a FAQ.\nRights can be set who is allowed to do this.\n\n## Installation\n\n### Part 1\n\nCreating the table should be automatic, if not, follow this.\nCreate table in the mantis database like:\n\n```sql\nCREATE TABLE XXXXXXXXX (\nid int unsigned zerofill NOT NULL auto_increment,\nproject_id int unsigned zerofill NOT NULL,\nposter_id int unsigned zerofill NOT NULL,\ndate_posted datetime NOT NULL,\nlast_modified datetime NOT NULL,\nquestion varchar(255) NOT NULL,\nanswere text NOT NULL,\nview_access int NOT NULL DEFAULT ‘10’,\nPRIMARY KEY (id),\nKEY id (id),\nKEY headline (question),\nKEY project_id (project_id),\nKEY date_posted (date_posted)\n);\n```\n\n**XXXXXXXXX**  needs to be formatted as ```DB-prefix + '_plugin_faq_results_table'```\n\n### Part 2\n\nCopy the plugin into the plugins directory of your mantis installation.\nLog on to mantis with Admin right\nGo to Manage\nSelect Manage Plugins\nInstall FAQ 2.02\nConfigure plugin by clicking on the name after install.\n\nDefault values are:\nStore FAQ project-wise\nEnable Promotion of issues to FAQ\nPermission level for this action is Developer.\nView FAQ in standard Mantis window (opposite new window)\nFAQ are open to all (opposite access-level check)\nView threshold  is Viewer\n\n## Change log\n\n0.91 Initial release\u003cbr\u003e\n0.92 Added automatic creation of table\u003cbr\u003e\n Included All project-FAQ with project-specific FAQ\u003cbr\u003e\n Added option to open FAQ in new window\u003cbr\u003e\n Added option to set access level on FAQ\u003cbr\u003e\n0.95 Used the default EVENT_MENU_ISSUE\u003cbr\u003e\n1.01 Final release for Mantis 1.x\u003cbr\u003e\n2.01 Intial version for Mantis 2.x\u003cbr\u003e\n2.02 Bugfixes for version 2.01\u003cbr\u003e\n2.03 Removed in full db_prepare_string\u003cbr\u003e\n2.05 Removed issue with curly brackes\u003cbr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmantisbt-plugins%2Ffaq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmantisbt-plugins%2Ffaq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmantisbt-plugins%2Ffaq/lists"}