{"id":36983742,"url":"https://github.com/anklimsk/cakephp-settings-app","last_synced_at":"2026-01-13T22:58:32.393Z","repository":{"id":62486003,"uuid":"144620989","full_name":"anklimsk/cakephp-settings-app","owner":"anklimsk","description":"UI for CakePHP application settings","archived":false,"fork":false,"pushed_at":"2019-11-30T19:52:30.000Z","size":146,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-23T04:09:14.819Z","etag":null,"topics":["cakephp-plugin","cakephp2","settings"],"latest_commit_sha":null,"homepage":"https://anklimsk.github.io/cakephp-settings-app","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/anklimsk.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":"2018-08-13T18:52:35.000Z","updated_at":"2019-11-30T18:26:17.000Z","dependencies_parsed_at":"2022-11-02T10:15:56.096Z","dependency_job_id":null,"html_url":"https://github.com/anklimsk/cakephp-settings-app","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/anklimsk/cakephp-settings-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anklimsk%2Fcakephp-settings-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anklimsk%2Fcakephp-settings-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anklimsk%2Fcakephp-settings-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anklimsk%2Fcakephp-settings-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anklimsk","download_url":"https://codeload.github.com/anklimsk/cakephp-settings-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anklimsk%2Fcakephp-settings-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":["cakephp-plugin","cakephp2","settings"],"created_at":"2026-01-13T22:58:31.661Z","updated_at":"2026-01-13T22:58:32.378Z","avatar_url":"https://github.com/anklimsk.png","language":"PHP","readme":"# CakePHP 2.x Application Settings UI\n[![Build Status](https://travis-ci.com/anklimsk/cakephp-settings-app.svg?branch=master)](https://travis-ci.com/anklimsk/cakephp-settings-app)\n[![Coverage Status](https://codecov.io/gh/anklimsk/cakephp-settings-app/branch/master/graph/badge.svg)](https://codecov.io/gh/anklimsk/cakephp-settings-app)\n[![Latest Stable Version](https://poser.pugx.org/anklimsk/cakephp-settings-app/version)](https://packagist.org/packages/anklimsk/cakephp-settings-app)\n[![License](https://poser.pugx.org/anklimsk/cakephp-settings-app/license)](https://packagist.org/packages/anklimsk/cakephp-settings-app)\n\n\nUI for CakePHP application settings\n\n## This plugin provides next features:\n\n- Base settings for the `CakePHP` application;\n- Creating сustom Settings:\n   * Defining the settings scheme;\n   * Defining rules for validate settings;\n   * Creating UI for settings.\n- Setting users with role and prefix, that are members of a of\n  security group on LDAP server\n- Setting for sending an E-mail including the encrypted user password\n- Getting list of E-mail for users, that are members\n  of a of security group on LDAP server\n\n## Installation\n\n1. Install the Plugin using composer: `composer require anklimsk/cakephp-settings-app`\n2. Add the next line to the end of the file `app/Config/bootstrap.php`:\n\n   ```php\n   CakePlugin::load('CakeSettingsApp', ['bootstrap' =\u003e true, 'routes' =\u003e true]);\n   ```\n\n3. Get the name of the user that is running the web server, run the command:\n`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\\  -f1`.\n4. Set owner of file `app/Config/config.php` run the command `chown www-data app/Config/config.php` where\n`www-data` - user name for web server.\n5. Add to file `app/Config/core.php`:\n\n   ```php\n   /**\n    * A random numeric string (digits only) used to encrypt/decrypt strings.\n    */\n       Configure::write('Security.key', '9b8964f94127f5b843c67e8c89479e4f2cfac2b182c72dc0691cc384c438f9ca');\n\n    /**\n     * Set Security.useOpenSsl to use OpenSSL instead of the deprecated mcrpyt extension.\n     */\n       Configure::write('Security.useOpenSsl', true);\n   ```\n\nSee https://book.cakephp.org/2.0/en/core-utility-libraries/security.html#Security::encrypt\n\n## Using\n\n[Using this plugin](docs/USING.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanklimsk%2Fcakephp-settings-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanklimsk%2Fcakephp-settings-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanklimsk%2Fcakephp-settings-app/lists"}