We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Creating Posts

Please take some time to read these recommendations before creating a new post to increase your chances of getting good answers.

Open-Source Community

Like any open-source community, Phalcon is full of members that will help you voluntarily in their free time. Please be kind and respectful to the effort made by others.

Busy People

Pretend you're talking to a busy colleague. Be as specific as possible. Write titles that summarizes the specific problem. Introduce the problem before you post any code. Include any error messages and relevant details that could help others to understand your issue. If someone posts an answer, be ready to try it out and provide feedback.

Posts/Replies in the forum use Markdown to format code. If you need to post code use the proper markdown, this makes the code easier to read for everyone:

```php
public function statsAction()
{
   $this->view->threads = Posts::count();
}
```
```html
<p><h2>Hello</h2><p>
```
```javascript
$("button").on("click", function(event) { });
```
See the reference for more details.

Help others reproduce the problem

Some questions require little or no code. Others require much code or invite to reproduce complex, unusual or weird cases that are circling your head. In these cases it is better to post the code in more appropriate places as Gist.

Setting up a repository on Github with the relevant parts of the code alongside with a proper explanation to reproduce the issue is an excellent idea. If you don't know how to create a repository, please check this article.