├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Feature_request.md │ └── Support.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F41B Bug Report" 3 | about: Something not working as expected? 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Environment details (please complete the following information):** 24 | - Statamic Version [e.g. 2.8.12] 25 | - Fresh Install or Upgrade: 26 | - OS: [e.g. macOS 10.12.6, Ubuntu 16.04] 27 | - Browser: [e.g. chrome, safari] 28 | - Web Server: [eg. Apache, Nginx, Valet] 29 | - PHP Version: [eg. 7.1] 30 | - Addons installed: 31 | 32 | **Additional context** 33 | Add any other context about the problem here. 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F680 Feature Request" 3 | about: For when you can't do a thing, but would like to. 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Eg. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Support.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F44B Support Question" 3 | about: If you have a question, please check out the forum or send us an email. 4 | 5 | --- 6 | 7 | --------------^ Click "Preview"! 8 | 9 | Issues on GitHub are intended to be related to bugs or feature requests, 10 | so we recommend not using this medium to ask them here 😁. 11 | 12 | --- 13 | 14 | If you have a support request or question please consider using one of these resources: 15 | 16 | * Check out the [documentation](https://docs.statamic.com/). It even has a search function! 17 | * Post on [The Lodge, our official support Forum](https://statamic.com/forum) - Be sure to do a search for your question first, it may have already been answered! 18 | * If it's private or sensitive, you can submit an [official support request](https://statamic.com/support) or shoot an email to [support@statamic.com](mailto:support@statamic.com) 19 | * Hop into the [Slack Chat](https://statamic.slack.com/). If you have a quick question or just want to chat, the community may be able to lend a hand. [Request an invite here](http://slack.statamic.com/). 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Statamic 2 Feature Requests and Bug Reports 2 | 3 | Greetings, Statamagicians! 4 | This repo is intended for Statamic 2 bug reports and feature requests. 5 | 6 | ## How to report a bug 7 | 8 | 1. Check to see if there's a similar issue filed already (open _or_ closed). 9 | 2. Make sure it's not a cache issue. Clear your cache using `php please cache:clear` or delete everything inside `local/cache` and `local/storage` and try again. If your issue goes away, let us know what happened so we can fine tune our cache invalidation. 10 | 3. Otherwise, [open an bug report issue](https://github.com/statamic/v2-hub/issues/new?template=Bug_report.md) with as much detail as you can. PHP/Server environment, content types, YAML/template examples, etc. Feel free to remove any non-applicable sections of the Issue template. Also, please be as kind and detailed as possible. It goes a long way towards finding a solution! 11 | 12 | ## Requesting a feature 13 | 14 | Fire up [a feature request issue](https://github.com/statamic/v2-hub/issues/new?template=Feature_request.md) and give as much detail as possible! 15 | 16 | ## Getting support 17 | 18 | Again, this repo is intended for bugs and feature requests. If you have a support request or question please consider using one of these resources: 19 | 20 | * Check out the [documentation](https://docs.statamic.com/). It even has a search function! 21 | * Post on [The Lodge, our official support Forum](https://statamic.com/forum) - Be sure to do a search for your question first, it may have already been answered! 22 | * If it's private or sensitive, you can submit an [official support request](https://statamic.com/support) or shoot an email to [support@statamic.com](mailto:support@statamic.com) 23 | * Hop into the [Discord Chat](https://statamic.com/discord). If you have a quick question or just want to chat, the community may be able to lend a hand. [Join here](https://statamic.com/discord). 24 | --------------------------------------------------------------------------------