Sometimes I have 503 error without any error messages in logs, after compile new phalcon version 1.3.1, but I haven't errors on old 1.2.6 version. I tried to find what's wrong and found that if I switch off opcache module, everything work normal. But I have one more comment for this, I found that all major operations do correct until render and send response
public function optionsAction()
{
$params = $this->request->getQuery();
$result = $this->_getMenuOptions($params);
echo json_encode($result);
$this->view->setRenderLevel(View::LEVEL_NO_RENDER);
}
If I add 'die' after 'echo' no error!
Short system info: Ubuntu 12.04, php 5.5.9, nginx + php-fpm