Questions tagged [recess]

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

Recess is a RESTful PHP framework designed to give you a delightful development experience. It provides tools and features to quickly build RESTful applications.

Features include:

  • Create RESTful APIs with Ease
  • Declarative PHP with annotations
  • D.R.Y. in philosophy & practice
  • Loosely coupled Model-View-Controller

Checkout the tutorials and videos at : http://www.recessframework.org/section/tutorials

Home Page: http://www.recessframework.org/

Downloads: http://www.recessframework.org/page/download

Bleeding Edge release: https://github.com/recess/recess/

43 questions
7
votes
2 answers

.htaccess RewriteRule causing 403 Forbidden

I'm trying to install the Recess PHP framework on my web host (Dreamhost). It includes the following .htaccess: Options FollowSymLinks RewriteEngine On RewriteRule ^([^.]+)$ $1.html [QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$…
Leonard Thieu
  • 785
  • 1
  • 7
  • 21
4
votes
2 answers

Sass lint task in Gulp - Code quality

I recently moved to Sass in a side project with Gulp. I'm used to LESS development and I'm finding hard to find some tools: I want to keep a minimum code quality watcher in my project since we are more than one developer writting Sass (not only a…
Xaviju
  • 250
  • 4
  • 12
3
votes
3 answers

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 webservices are tied to a database, my tests end…
akhalsa
  • 2,303
  • 3
  • 25
  • 43
3
votes
2 answers

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 to another page, I am not able to retrieve them back …
Abdel Raoof Olakara
  • 19,223
  • 11
  • 88
  • 133
3
votes
1 answer

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,
recess-new
  • 31
  • 1
3
votes
2 answers

Error in selector with a percent character in a LESS file

I have a div with an ID which contains a percentage symbol, like this:
stuff
And I cant avoid that, is a div that I cant change so I need to deal with that :( I am trying to reach that element using LESS but I get an…
Masta
  • 149
  • 4
  • 15
2
votes
2 answers

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 gave up at Application). Are there namespaces in…
Peter Turner
  • 11,199
  • 10
  • 68
  • 109
2
votes
4 answers

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. Thanks. My main problem is that I don't know how to…
Tomer Even
  • 4,820
  • 2
  • 30
  • 36
2
votes
1 answer

How to output Recess data as a Json?

I've installed Recess: http://www.recessframework.org/ Configured the database, added a table, generated model and controller. In video tutorial you can see author uses URI like ../something.json to get JSON results. I generated a profile class so i…
Tom Smykowski
  • 25,487
  • 54
  • 159
  • 236
2
votes
1 answer

Where does the error output from recess go when used from the command line to compile LESS files?

I've installed recess as a Ruby gem (though this question also applies if I do it as an npm package), and am using it in Bash script with watchr to process LESS files when they're changed. Whenever a LESS file has bad syntax, the resulting CSS…
Peter Behr
  • 607
  • 1
  • 5
  • 16
2
votes
1 answer

Installing PHP Recess framework, getting error: Can't connect to local MySQL server through socket '/tmp/mysql.sock'

Trying to install the Recess API Framework on an EC2 instance using the Bitnami AMI. I get the error Error connecting to data source: SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) I tried this…
PandemoniumSyndicate
  • 2,855
  • 6
  • 29
  • 49
1
vote
0 answers

Why is an error not produced when following the Recess 'Controlling the Controller' doc?

According to the section 'The Controller-View Relationship' located in http://www.recessframework.org/page/controlling-the-controller : Try removing the body of the printIt method and refresh to get an error indicating no view template at…
J.C.
  • 893
  • 14
  • 27
1
vote
1 answer

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.
Naveenkumar
  • 77
  • 3
  • 10
1
vote
2 answers

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. SMPLE EXT JS CODE: Ext.Ajax.request({ url :…
Naveenkumar
  • 77
  • 3
  • 10
1
vote
1 answer

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 CMS(Drupal) . I m confuse about databases . Since services…
Ahmed
  • 772
  • 1
  • 9
  • 26
1
2 3