{"id":38179343,"url":"https://github.com/earentir/cmsmgmt","last_synced_at":"2026-01-16T23:44:33.090Z","repository":{"id":224265898,"uuid":"762855521","full_name":"earentir/cmsmgmt","owner":"earentir","description":"CMS Management","archived":false,"fork":false,"pushed_at":"2025-11-21T22:08:46.000Z","size":7749,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-22T00:10:50.492Z","etag":null,"topics":["cms","joomla","wordpress"],"latest_commit_sha":null,"homepage":"","language":"Go","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/earentir.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-24T21:53:10.000Z","updated_at":"2025-11-21T22:08:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"b36259ae-b5ba-4b8a-a698-7305629f92ce","html_url":"https://github.com/earentir/cmsmgmt","commit_stats":null,"previous_names":["earentir/cmsum"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/earentir/cmsmgmt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earentir%2Fcmsmgmt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earentir%2Fcmsmgmt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earentir%2Fcmsmgmt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earentir%2Fcmsmgmt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/earentir","download_url":"https://codeload.github.com/earentir/cmsmgmt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earentir%2Fcmsmgmt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28487982,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T22:54:02.790Z","status":"ssl_error","status_checked_at":"2026-01-16T22:50:10.344Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["cms","joomla","wordpress"],"created_at":"2026-01-16T23:44:32.431Z","updated_at":"2026-01-16T23:44:33.083Z","avatar_url":"https://github.com/earentir.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cmsmgmt\n\nContent Management System Management (cmsmgmt) is a command-line tool written in Go for inspecting and managing local installations of WordPress and Joomla. It can detect the CMS type in a given directory, extract the database configuration from the CMS configuration file, connect to the database, list user accounts, edit user details, and show general or version information.\n\n## Features\n\n- **Automatic CMS detection** – Point `cmsmgmt` at the root of your CMS installation using the `-p`/`--path` flag (or run it in the CMS directory), and it will determine whether you are working with WordPress or Joomla by looking for `wp-config.php` or `configuration.php`.\n- **Database configuration parsing** – Reads your CMS configuration to determine connection details for MySQL/PostgreSQL (Joomla) or MySQL (WordPress), including host, port, username, password and database name.\n- **List users** – Enumerates all user accounts in your CMS. For WordPress it reports the username, e-mail, role and other metadata; for Joomla it shows ID, username, name, email and roles.\n- **Edit users** – Allows you to update user information (name and e-mail) for both WordPress and Joomla. Run `cmsmgmt users edit \u003cusername\u003e` and follow the prompts.\n- **CMS information** – Displays general information about the CMS and version number. The `info db` command prints the database name, database user and detected table prefixes. `info version` prints the WordPress or Joomla version (and release for Joomla).\n- **Cross-database support** – Joomla installations can be backed by MySQL or PostgreSQL. WordPress support currently assumes MySQL.\n\n## Installation\n\nThis project is written in Go. To build from source you need Go ≥ 1.24:\n\n```bash\ngit clone https://github.com/earentir/cmsmgmt.git\ncd cmsmgmt\ngo build -o cmsmgmt\n```\n\nAlternatively, you can install the latest version into your `$GOBIN` using:\n\n```bash\ngo install github.com/earentir/cmsmgmt@latest\n```\n\nThe resulting binary can be copied anywhere on your `PATH`.\n\n## Usage\n\nRun `cmsmgmt --help` to see top-level usage. The basic pattern is:\n\n```bash\ncmsmgmt [--path /path/to/cms] \u003ccommand\u003e [subcommand] [flags]\n```\n\nIf `--path` is omitted, `cmsmgmt` assumes the current working directory is the root of your CMS installation.\n\n### List users\n\n```bash\n# From within the CMS root directory\ncmsmgmt users list\n\n# Or specify the CMS path explicitly\ncmsmgmt --path /var/www/html users list\n```\n\n### Show CMS information\n\n```bash\n# Display DB information such as DB name, DB user and table prefixes\ncmsmgmt info db\n\n# Show CMS version (and release for Joomla)\ncmsmgmt info version\n```\n\n### Edit a user\n\n```bash\n# Edit the user with username \"admin\"\ncmsmgmt users edit admin\n```\n\nWhen you edit a user, `cmsmgmt` will connect to the database and update the user's name and e-mail address.\n\n## Roadmap\n\nFuture enhancements may include:\n\n- Changing passwords for Joomla and WordPress users.\n- Additional CMS support beyond WordPress and Joomla.\n- More detailed reporting on CMS configuration and security settings.\n\n## Authors\n\n- [@earentir](https://www.github.com/earentir)\n\n## License\n\nThis project follows the Linux Kernel licence (GPL v2). If you require another open licence, please open an issue and we will try to accommodate it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fearentir%2Fcmsmgmt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fearentir%2Fcmsmgmt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fearentir%2Fcmsmgmt/lists"}