PhalconPHP is a web framework delivered as a C extension providing high performance and lower resource consumption.

learn more… | top users | synonyms

0
votes
1answer
26 views

Phalcon php vs node.js

We are going to develop rest server for our application (and all logic is on client javascript). So we thought to use Phalcon php, but we also need to create realtime chat system, which is much more ...
0
votes
0answers
19 views

php phalcon controller default to index

Currently running Phalcon 1.0.0 since the latest is seg faulting for me. My problem is the routing that directs uri to a specific controller isn't working the way i would expect when adding ? to uri. ...
0
votes
1answer
24 views

How to use “Models::find()” in phalcon framework?

$submodules = Modules::find( array( 'moduleid in (:mods:) and parentid = :parentid:', 'bind' => array( 'mods' => '1,2', 'parentid' => 1 ), ...
-3
votes
0answers
52 views

Single page application + phalcon php [closed]

Where can I see a sample of single page application with phalcon php framework on backed. would be great, if be used backbone.js
0
votes
0answers
21 views

phalcon currently dispatching route name

I use custom routes which include namespace besides controller and action. So for ACL purposes I use MVC route name as ACL resource name. Now I need to obtain currently DISPATCHING route name. The ...
0
votes
3answers
51 views

Why can APC backend cache in Phalcon not be used directly - why the need for $frontCache?

The docs offer the following approach to APC caching: //Cache data for 2 days $frontCache = new Phalcon\Cache\Frontend\Data(array( 'lifetime' => 172800 )); $cache = new ...
0
votes
1answer
30 views

Phalcon sessions: Cache folders, error reporting/exceptions?

I'm trying to use Sessions in my application. However, I fail to get them to work in a very simple phpunit test. Take the following test: <?php namespace Tests\App; class SessionTest extends ...
0
votes
1answer
24 views

Preventing more validator

How to stop more validator when other validator on the same field fails? If following code I do not want Email validator executed when the email is empty. $v=new Phalcon\Validation(); ...
0
votes
1answer
36 views

How does one define default key=>value pair behavior on route params in Phalcon?

I would like to define the following default behavior on my routes: Url: myapp.com/mymodule/mycontroller/myaction/q/someTerm/key/someValue/key2/anotherValue This url should give the dispatcher the ...
1
vote
1answer
106 views

How to make models use defaults in Phalcon PHP Framework?

If a table has defaults on certain fields and NULL is not allowed, one would expect the insert script to use those defaults, as MariaDB/MySQL usually does. For example, if the table products has an AI ...
3
votes
3answers
201 views

IDE autocomplete for PhalconPHP

Is there exist any kind of skeleton for PhalconPHP framework, which I can use in my Netbeans IDE for autocompletion purposes? All I need is a heap of files with class/interface declarations, like ...
0
votes
0answers
52 views

Class Phalcon\Mvc\Collection without DI

How can I use Class Phalcon\Mvc\Collection in a stand-alone manner without DI? In other word how can I specify mongo connection manually? at getConnection is not static and I can not write static ...
-2
votes
1answer
74 views

Workflow migrations phalcon

Time ago I worked with yii framework. In yii framework with yiic shell I make migration file and write actions for db: create table, alter table, create index and any actions with another (no db). ...
0
votes
1answer
54 views

Using phalcon's DI from singleton?

Let's imagine, that we're developing extremely simple singleton Auth class dealing with DB and session (we don't want any other decomposition like auth adapters etc). How can I make DI available from ...
1
vote
0answers
45 views

Finding out Task and Action in CLI Phalcon script

I'm trying to create a debug utility that prints out the time a script took, the actual task name it used and actual action it ran <?php $di = new Phalcon\DI\FactoryDefault\CLI(); $console = new ...
0
votes
1answer
62 views

How much column mapping in phalcon models impacts performance?

Does column mapping Phalcon\Mvc\Model column mapping impact performance? I am working on application, that would be under highloads and i am worrying about that.
0
votes
1answer
37 views

Should i declare model class properties in phalcon when using Phalcon\Mvc\Model::columnMap()?

Usually we need to define public properties in model class, that represent table columns. As was said in docs and on development forums defining such public properties increases perfomance. But if we ...
0
votes
2answers
172 views

PhalconPHP model

I have two questions related to models in Phalcon, that I am struggling to find an answer for: How do I access the Dependecy Injector in a model? Is it plausible to create a model that is not binded ...
2
votes
1answer
136 views

Phalcon PHP Paginator Bug

I think there is a bug with the \Phalcon\Paginator\Adapter\NativeArray. The ->next property contains the wrong value. Here is a test case: $a = array_fill(0, 25, 'banana'); echo count($a); ...
1
vote
1answer
41 views

Dealing with URI after $dispatcher->forward() execution

I've set form submission URI to something like '/register' and in controller action $dispatcher->forward() to '/profile'. When submitting form, it forwards to the right page, but URI shown in ...
0
votes
0answers
49 views

Preserve Order of IN in ORM Order

I'm trying to do a query where I preserve the order of the ids in a IN statement. I can't seem to do it with either the Model Manage Query Builder or the standard ORM 'order' array parameter. Am I ...
0
votes
1answer
75 views

Global acssess to some component in Phalcon

How can I make some classes and objects accessible from all MVC layers? For example I want to access to current user's profile and config.ini file globally. In Zend Framework 1.x I was using ...
0
votes
0answers
51 views

Is it possible to setup Phalcon\Mvc\Application or Phalcon\Mvc\Micro to handle jsonrpc 2.0 requests?

Main goal is that controller name, action name and parameters group must be taked from raw-post jsonrpc object. Is it possible to configure phalcon this way? For example, for following data in raw ...
0
votes
0answers
52 views

Phalcon not render view

I tried to create multimodule phalcon application, but it cannot render view. For example Application\IndexController::indexAction not render view/index/index.phtml. All code here: GitHub Phalcon ...
1
vote
1answer
152 views

Phalcon and cli applications

is it possible to use phalcon in cli applications to handle requests with argv parameters? i want to use argv parameters to understand command that should be executed, e.g. ./script.php robot/create ...
0
votes
1answer
49 views

Phalcon: recive action parametrs with a question mark OR how to get variables from GET method

I have to recive information from another server (token) with http GET method. I can change URL at witch I get I it, so I figured I could try to get the GET to be a parameter in an action like this: ...
0
votes
1answer
26 views

Extra Attribute Disappears after it is set successfully

I am trying to get all records that are tied to a parent object through a lookup table, and insert them directly into the model. I have an object, Role, that hasMany() RoleEndpoints. RoleEndpoints ...
0
votes
1answer
83 views

Phalcon\Mvc\Model and composite primary key

I use Phalcon\Mvc\Model for all entities in my project (to keep things standartized). Today i had to import maxmind geoip database in my mysql database to implement native relationships between some ...
0
votes
1answer
43 views

Phalcon\Mvc\Model::beforeCreate() method

If i try to save model with date_created field defined in beforeCreate() method, it does not save it: class TestEntity extends Phalcon\Mvc\Model { public function beforeCreate() { ...
0
votes
1answer
37 views

Phalcon\Mvc\Model findBy*** static methods

Today i discovered that my model object has methods like findBy{property}. (i am using phalcon 0.9.0) For example, i have model Language with id, code, name properties. And for each i can call ...
0
votes
1answer
57 views

Phalcon\Session\Bag.. how to use them?

In my project i use following code to access session variables via Session Bags in services: public function __construct() { // Create session bag $className = get_class($this); ...
0
votes
1answer
52 views

Phalcon: transactions and complex models

In my project i have entities table, where all entities should exist (to support complex foreign keys), so i need to insert additional row in special table (in this entities list) before inserting a ...
0
votes
1answer
65 views

Code for Redirection Not Working

I am having some problems with redirection on Phalcon 0.8b. Here is my code: <?php class UsersController extends \Phalcon\Mvc\Controller { public function loginAction() { ...
1
vote
4answers
108 views

How to use the var_dump output directly from the controller?

class IndexController extends \Phalcon\Mvc\Controller { public function indexAction() { $custom = "Custom variable"; var_dump($custom); } } How to display the result not ...
0
votes
1answer
62 views

Variable output in Phalocn

When I use findFirst of mongo extension I can use var_dump on its out put and see actual mongo document easliy. But when I do that on output of \Phalcon\Mvc\Collection::findFirst tens of properties ...
1
vote
2answers
150 views

How to implement inheritance using Twig in Phalcon?

Ok. I use Twig as a View engine and Phalcon version is 0.8 Code of adapter I got from this repository: github I made ​​a small modification in this code because I include Twig via composer. I will ...
1
vote
2answers
67 views

Is it possible to render custom view (just custom .phtml) template with Phalcon\Mvc\View?

I need to render email templates in variable to send them later (which are stored in .phtml files), and i really don't want to implement my special class for handling this. Is it possible to render ...
0
votes
1answer
52 views

How do I find all the views used by Phalcon?

How do I find all the views used by phalcon for a single request after rendering the request? I want to know the Action view, controller layout and Main layout.
0
votes
1answer
65 views

Find() does not return result with cache

I am trying to implement memcache into my application, but I am running into some strange issues. If I run find() when there is no cache, then I get no results found. However, if I run the same query ...
1
vote
1answer
90 views

How can I set up a user defined function in Volt (Phalcon)

How can I set up a user defined function in Volt? For instance I want to call a function that would translate strings in my views as such: <div class='page-header'> <h2>{{ ...
2
votes
1answer
160 views

How to setup a 404 page in Phalcon

How can I set a 404 page in Phalcon to be displayed when a controller/action does not exist?
0
votes
1answer
78 views

Trailing Slashes in URL

So, I've been trying to find stuff online about it, but no where in the documentation is there anything regarding trailing slashes in URLs. Here's my problem. I want all URLs to end with a slash, ...
0
votes
1answer
67 views

What does Phalcon\Mvc\Model::findFirst((int) $id)?

Does it get entity by primary key.. or just taking entity from table with specified number? If i do smth like $model = new Phalcon\Mvc\Model(); $model->findFirst('id = 1'); It's clear. But if ...
1
vote
1answer
39 views

What is the most correct way to define source table in \Phalcon\Mvc\Model?

As i know, it is possible to define table name by following variants: 1) by defining method getSource() class Table1 extends \Phalcon\Mvc\Model { public function getSource() { ...
1
vote
2answers
95 views

Phalcon git installation bug?

On my sever i successfully install phalcon version 0.6.0 through git. These are the steps i used. git clone git://github.com/phalcon/cphalcon.git cd cphalcon/build sudo ./install restart the ...
0
votes
0answers
48 views

Phalcon invalid document error

I have a Phalcon\Mvc\Collection model called User. When I try to get a user by their email like this User::findFirst(array("conditions" => array("email" => $email))); I get two different ...
1
vote
1answer
85 views

How to escape html in Phalcon\Mvc\View

I found that view variables in phalcon could be escaped by Phalcon\Escaper: http://docs.phalconphp.com/en/latest/api/Phalcon_Escaper.html For example, in Zend, there is a way to call view helpers ...
1
vote
1answer
65 views

Is there a way to get assembled query by Phalcon\Mvc\Model\Criteria?

I've not found here how we can get builded query by Phalcon\Mvc\Model\Criteria in docs: http://docs.phalconphp.com/en/latest/api/Phalcon_Mvc_Model_Criteria.html Is it possible?
0
votes
1answer
60 views

Phalcon\Mvc\Model::find() failes with condition “column value IN (list)”

Following code throws exception "Invalid SQL expression type 'list'": $condition = 'id IN(1,2,4)'; Model::find($condition); I can't believe that phalcon does not support this. What is the correct ...
0
votes
1answer
123 views

How it's possible to disable rendering layout in case of xmlhttprequest in phalcon framework?

How can be disabled layout rendering? For a moment i can detect that request is made via jQuery this way: public function initialize() { if (!$this->request->isAjax()) { // ...

1 2 3