Tagged Questions

Recess is an open source RESTful PHP framework designed to give you a fun & delightful development experience.

learn more… | top users | synonyms

3
votes
2answers
147 views

Session handling with Recess!

I am using Recess Framework for my application & troubled with session handling. I need to store some values in the session.. I am able to create session and session id. But as soon as i navigate ...
3
votes
1answer
203 views

recess framework, select query

Is there a way in recess framework to do a SELECT mycolumn1, mycolumn2 and not a SELECT * on the Model. I only find the $this->model->select() function and it not allowing that. Thank you,
2
votes
2answers
812 views

PHP Class Name Conflict

I'm attempting to mix a PHP REST framework (Recess) with an webapp building framework (VCL4PHP), they unfortunately like to name their classes the same. Cache, Application (probably others, but I ...
1
vote
1answer
40 views

Recess Framework v0.2: Annotation Tutorial

I want to know about better tutorial for recess framework annotations. Also it could be better you may suggest best tutorial to learn RECESS FRAMEWORK. Thanks.
1
vote
2answers
74 views

unit testing restful webservices

I am wondering if anyone knows the proper way to unit test a restful webservice. I have a set of webservices built using recess, and I would like to write test code for them. Unfortunately, since my ...
1
vote
3answers
233 views

sample of a backend for an iPhone app

I'm writing a backend for my iPhone app and I'm looking for tutorials or sample code for writing the backend. I'm using RestKit as the client. so it would be using JSON and a RESTful framework. ...
1
vote
0answers
36 views

Recess and Drupal Friend or Not?

I want to develop back-end of iphone app using recess for services layer component. This app will also have web app using same services layer component. I want to develop wep app using some ...
1
vote
4answers
313 views

Getting rid of index.php in the URL when using recess framework and lighttpd

I am using the recess php framework with lighttpd Does anyone know how I can use the shorter urls of: http://www.myserver.com/recess Instead of: http://www.myserver.com/index.php/recess The ...
0
votes
0answers
19 views

How to specify Content-type when using Recess framework with Smarty

I am currently using the PHP Recess framework with the Smarty templating engine. In my controller, I have code similar to: /** * !View Smarty * !RespondsWith Smarty * !Prefix Views: templates/, ...
0
votes
0answers
5 views

using IWrapper in methods of a controller in recess

I'm using recess framework to build a REST API, As in recess, there are controllers which contain methods, Does someone know how to wrap methods in the controller methods. In normal classes, I've ...
0
votes
0answers
11 views

Wrapping all methods of a controller in Recess

In recess, I have a controller /** * !RespondsWith Layouts * !Prefix user/ */ class UserController extends Controller { ...... } I want to wrap all methods of the UserController using ...
0
votes
2answers
34 views

php date error, original field of sql date type

in a table user, i have a field birthday which records the birthday of the user. Now, in php, i'm not using sql but recess (a php framework) ORM to insert this record. The original field in the ...
0
votes
1answer
32 views

Recess Framework GET send sentence

The following is a Recess Framework code in which I am facing problem. /** !Route GET, /abc/$text */ function xyz($text) { If $text is a sentence. How do we get a sentence through HTTP GET. I ...
0
votes
2answers
81 views

Recess Framework v0.2: Json Request does not insert values

I am facing trouble while posting JSON DATA to recess framework. The JSON data posted perfect from the browser end. But when i get that from the server end it becomes null. I don't know the reason. ...
0
votes
1answer
24 views

Recess Framework get parameter

I'm using the recess framework. Suppose I have a URL like this www.example.com/try.php?this=5 In recess, what do i do to access the value of parameter this ??
0
votes
1answer
24 views

Getting resources by different columns in Recess

I'm fairly new to RESTful web services and even more new to the Recess PHP framework. It's easy to retrieve resources by ID. For example, if I want to retrieve a User with ID 7, I would make a request ...
0
votes
1answer
30 views

Recess Relationship Annotation issue

I'm running into a severe problem, In fact I'm not well understanding recess naming convention for relationship. I personally think it should be more documented with concrete examples. Hopefully, if i ...
0
votes
1answer
36 views

get Authorization Header from Recess Request

I'm using the recess framework. Does somebody knows how to get the Authorization header from the request. Normally, to get the request, we do $this->request, but how to extract the Authorization ...
0
votes
1answer
113 views

SQLite database locking permanently (until deleted) for PHP

We are using the Recess framework for a web service. As part of this we're using Recess' caching mechanism, provided as an SQLite database. We've been using this caching mechanism happily for about a ...
0
votes
1answer
643 views

How well does the Recess! PHP Framework play with dojo.data?

I've been trying to find the perfect php framework for me that integrates with dojo smoothly. I am trying to avoid creating my own framework and I don't want to use the Zend Framework since I don't ...