При попытке выполнить следующий статический метод:
class User extends \Phalcon\Mvc\Model {
public static function getRandomUsersForMainPage() {
$query = new Query("SELECT * FROM Users WHERE Users.skin != 0 ORDER BY RAND() LIMIT 5");
return $query->execute();
}
}
Apache падает со следующими указаниями (Windows):
Я думал получить исключение о какой-то ошибке внутри самого запроса, но сервер просто умирает и на этом всё, отыскать проблему удаётся только методом тыка. Думаю эта проблема касается не только запроса, а механизма внутри Phalcon, если это действите приводит к падению сервера.
When I'm try to execute the following static method:
class User extends \Phalcon\Mvc\Model {
public static function getRandomUsersForMainPage() {
$query = new Query("SELECT * FROM Users WHERE Users.skin != 0 ORDER BY RAND() LIMIT 5");
return $query->execute();
}
}
Apache falls with the following (Windows):
I was thinking I get an exception of some error within the query itself, but the server just die and that's it, find the problem can only be successful at random. I think this issue is not only a request, but the mechanism inside the Phalcon, if this action leads to a crash server.
Fast Google Translate work.