Slim for PHP (www.slimframework.com) is a RESTful micro framework for PHP 5 inspired by Sinatra.

learn more… | top users | synonyms

0
votes
1answer
13 views

Debugging NotORM Call Results in “Use of undefined constant STDERR - assumed 'STDERR'”

I am debugging a project that uses Slim and NotORM on PHP 5.4. When setting NotORM to debug mode the NotORM trace statement: fwrite(STDERR, "$backtrace[file]:$backtrace[line]:$debug\n"); throws ...
0
votes
0answers
20 views

What is the correct way to save connection settings/connect to a mysql database in the Slim framework?

I'm really liking the Slim framework but can't seem find documentation on database settings or where to put that kind of information. I tried doing it inline, but that was out of scope for requests. ...
0
votes
1answer
14 views

SlimFramework Redirect Problems

i'm trying to manage a login page with redirect to home page if it is still logged: $app->get("/",function() use ($app){ if(!isset($_SESSION['group_id'])){ View::login(); // Show login ...
0
votes
0answers
51 views

Backbone.js and PHP/MySQL fetching data [closed]

First of all, sorry for my bad English lang. skills. I've messed little with Backbone.js, Slim Framework, PHP and MySQL. I'am traying to fetch data from my database but i don''t get it well. I can't ...
2
votes
1answer
56 views

Slim PUT returns NULL

I have a problem with the Slim Framework and a PUT request. I have a litte jQuery script that that will update an expiry time when a button is clicked. $("#expiry-button").click(function(event) { ...
0
votes
0answers
28 views

URL Rewriting with Slim

I've just finished writing a basic REST API using Slim and I'm having problems getting URL rewriting to work, as we have our API dispatcher called "api.php" located in the root of our Apache webdocs ...
0
votes
1answer
32 views

Setting default assigns with slim using smarty

I am about to convert a site to use the Slim Framework with the Smarty template engine. On the current site I have assigned some default smarty vars, but I am not sure how to set them with the Slim ...
-1
votes
0answers
32 views

cant't load composer zend-db with slim framework [closed]

I'm new to using composer packages. i try to load adapter zend but not work. this is my directory structure: -slim_dir/ -vendor/ -zendframework/ -zend-db/ -Zend/ -Db/ ...
1
vote
0answers
170 views

creating Basic authentication in Slim framework

I had seen 2 questions on SO and several topics on google but that didn't helped me out Authentication Based REST API with Slim Securing a REST API and Slim Framework Slim provides you different ...
0
votes
2answers
59 views

how to accept multiple variables in REST API

i am currenty learning how to use rest api for mobile dev't, i just want to know is there a method for accepting multiple variables in the URL? for example: $app->get('/chara/arena/:id', ...
0
votes
0answers
53 views

Slim Framework: D.R.Y

I am using the following code to use a route, but I will repeat the same code for a different route. Question: What would be the best way to avoid repetition? I've tried using a method getParameters, ...
1
vote
1answer
43 views

Slim PHP: make $app available in classes

I'm using controller/method as callbacks to application routes. E.g.: $app->get('/user/login', array('User', 'login')); Here is the sample User class: Class User { public function login() { ...
0
votes
0answers
24 views

HTML5 pushState and Slim PHP service together with mod_rewrite?

I am trying to find a way to get Slim and HTML5 pushState to work together easily. My biggest issue is getting Slim to pick up the url after I get mod_rewrite to ignore the base for my Slim app thats ...
0
votes
0answers
193 views

Sending data to RESTful using Advanced Rest Client Chrome

Hello i am facing an issue in REST API as i developed a function for checking email and password. and during testing i am sending this data through Curl console and it is working fine ...
0
votes
1answer
34 views

in slim how can I pass a file path into a variable?

what i have right now is: $app->get(/folderBrowse/:path function($app){ bla bla bla }); // I know this is not using '' or , but it's just for example, because I've tried it with many ...
2
votes
1answer
145 views

angularjs $http params with slash

I am using angularjs with slim php and I have a GET action in slim which action/param1/param2 Then in my angularJS $http({ url: 'action', method: 'GET', params:{param1: param1, param2: param2} ...
0
votes
3answers
141 views

Slim Framework - cannot add route middleware

I am new to Slim Framework and PHP. I cant get this to work, if I use a normal function and use "foo" as a parameter, it works, but doesnt work like this, even tho the documentation uses pretty much ...
0
votes
1answer
81 views

Using smarty template engine with slim

I am trying to setup Slim Framework with the use of Smarty, but something is very wrong. I can output the template, but it renders the template with the markers and the the data which should replace ...
0
votes
0answers
17 views

How to redirect the logs output from STDERR to a file

Starting from Slim Framework Documentation -> Log Writers, how I can redirect the logs output from STDERR to a log/ folder on my documentroot? Thanks in advance, and sorry for my bad english
0
votes
1answer
75 views

Slim framework - Call external API

I'm completely new to Slim Framework 2 and I would like to make an HTTP call to an external API. It would simply something like: GET http://website.com/method Is there a way to do this using Slim or ...
0
votes
1answer
103 views

How to get the environment mode on slim framework

Picked from Slim Framework Documentation: mode This is an identifier for the application’s current mode of operation. The mode does not affect a Slim application’s internal functionality. ...
0
votes
2answers
62 views

sending an array through cURL POST

Hi i am testing a scenario for REST web service for mobile app.During testing i need to send an array to my php programme using post method. which i am doing through cURL console. rest of the thing is ...
1
vote
1answer
124 views

trouble using angularjs with slim in a rails project

I've finally decided to give angularjs a whirl and i'm running into some early trouble. I'm using Rails 3.2 and the Slim template gem for the view. I'm just trying the example from the angularjs ...
0
votes
0answers
156 views

Backbone Routing 404 Error

I have a backbone.js + slim php + jquery mobile app. I search for university modules, pick one, then tap a link to produce a list of lecturers associated with the module. This works! Now I want to ...
0
votes
1answer
48 views

Multi row toJSON function using Propel and Backbone

I'm trying to make what should be a very simple "list all" function using Propel ORM - for Backbone.js to read. This is what I want to do, and in my opinion, should work: $users = ...
2
votes
4answers
397 views

API Client Secret with REST Using Slim Framework

I have a simple REST API (using the Slim framework) set up where the user can call a page like this: subdomain.domain.com/api/musician/id/3273 to retrieve and display some simple JSON data. I want ...
1
vote
1answer
82 views

Authetication with Slim Framework

I'm developing an app with Slim Framework but i'm stuck now. I've created the URL's and everything is working perfectly, the problem is when I want to protect the data. This is the workflow: 1) I ...
0
votes
1answer
98 views

backbone.js, views and routing

I am developing an app using slim, backbone.js and jquery mobile with a MySQL backend. The workflow is along the lines of: 1) Search for a uni module. 2) List matching modules. 3) Select and view a ...
0
votes
0answers
121 views

Middleman Slim template - is there a way to pass variables into YAML front matter?

I'm using Middleman and Slim templates. I am proxying data to create multiple pages automatically. I need to set YAML front matter with variables and I don't know how to do that! Does anyone know? ...
1
vote
1answer
36 views

Why we prepend \Slim before using Slim class?

Once we have included SLIM PHP class using require function, why do we still instantiate Slim class with \Slim prefix. <?php $app = new \Slim\Slim(); // Why \Slim before Slim(); ...
0
votes
0answers
31 views

Slim PHP routes with special characters not working

I've got the below SLIM php route: $app->get('/suggest(/:filter)', 'getSuggestions'); It works fine when calling it as per below: /suggest/query But always breaks on more complicated, URI ...
0
votes
0answers
128 views

POST request method via a call to GET, SlimPHP, RedBeanPHP

Tools I'm using: Slim Framework & RedBeanPHP I'm studying this article: http://www.ibm.com/developerworks/library/x-slim-rest/ and especially this method: // handle POST requests to /articles ...
0
votes
1answer
53 views

How to process paramerters in URL in slim framework?

A simple REST GET call http://localhost/root/student/11 can be handled via $data->get('/student/:id', 'getStudent'); I however have a want to send parametric data like because it solves my ...
0
votes
1answer
238 views

How to install and use Slim template engine with Middleman

I'm new to Middleman and ruby in general. I've installed Ruby I've installed Middleman and the gems to get it running. I need to use slim instead of the default template system. So I installed the ...
0
votes
1answer
81 views

how to mock third party classes in fitnesse

I have written one fixture: !define TEST_SYSTEM {slim} !path E:\eclipse\eclipse_workspace\FitnesseDemo\bin Calculator Example |com.example.qc.fixture.CalcFixture| |pad1|pad2|margin1|margin2|get ...
1
vote
1answer
172 views

How to include JS/CSS files into templates of Slim Framework?

I am developing a simple web app with Slim framework. I got stuck with a probably simple problem. I want to include static files (CSS and Javascript) into my template. My project folder structure is ...
2
votes
0answers
57 views

.NET 3.5CF WebRequest to Slim Framework

I'm writing a mobile application in .NET 3.5 Compact Framework and am trying to make a GET request to a PHP Slim Framework page. If I try to access the page from a web browser on the local machine it ...
0
votes
0answers
203 views

Routing issues with Slim Framework running on AppFog

I've been successfully running Slim apps on a couple different servers and tried setting one up on AppFog today using the same structure, but it isn't running normally. I'll start with my directory ...
1
vote
2answers
189 views

Insert failing with SQLITE & PHP PDO - General error: 25 bind or column index out of range

I'm attempting to insert some data into my database using a PHP PDO function within the Slim framework but when I'm posting with curl I'm getting the following error; SQLSTATE[HY000]: General error: ...
0
votes
1answer
31 views

Error in loading SASS stylesheet

I am experimenting with SASS and am trying to load a simple sytlesheet using scss in my sinatra application. The route handler in main.rb is get('/styles.css'){ scss :styles } In the layout (using ...
0
votes
1answer
60 views

Fitnesse slim: Call generic method (fitSharp)

Linux 3.2.0-3-amd64 #1 SMP Mon Jul 23 02:45:17 UTC 2012 x86_64 GNU/Linux Mono 2.10.8.1 (Debian 2.10.8.1-7) (64-bit) glib-sharp 2.12.0.0 FitNesse (v20121220) FitSharp release 2.2 for .net 4.0 I have ...
0
votes
0answers
142 views

Installing Slim, PHP, Ubuntu

I'm trying to install Slim on my local LAMP server on Ubuntu only I get stuck at second base. From my tutorial and various documentation found online: You now have access to the composer command. ...
0
votes
1answer
78 views

Creating OR capability with Slim Framework

I have a slim GET method setup whose basic signature looks like this: $app->get('/musicians/name/:name', function($name) use ($allFields, $app, $db) I then create some query text, something ...
-1
votes
1answer
251 views

Php Slim Framework nested routes

i try something like: $app = new Slim(); $app->get("/home", function() use($app) { //some query for sub pages $my_sub_page = 'subpage'; $app->get("/home/" . ...
0
votes
0answers
424 views

MySQL API with Slim Framework

Okay, so I've finally managed to get my API working in the slim framework on my MAMP localhost with this code in my index.php: $app = new \Slim\Slim(); $app->get('/people', function() use ($app, ...
0
votes
0answers
142 views

Accessing MySQL Using Slim on a Virtual MAMP Host

That subject's a mouthful. I'm new to PHP and MAMP. I'm trying to create an API that returns JSON encoded information when a user makes a proper GET response. Here is my code: 2 ...
0
votes
1answer
28 views

FitSharp throws a ParseException when an object instance is stored in a slim symbol that is later used in a function call

I store an instance in a slim symbol ($IT) but when I later try to use the instance in a function call I receive a fitSharp.Machine.Exception.ParseException. I think the problem is that FitSharp ...
0
votes
0answers
103 views

Slim framework or Yii for notepad++

Trying to figure out how to install slim to use on ++. I know it's possible. I found inly one video and it was from a student watching a slideshow. The speaker didnt go into much detail with the ...
0
votes
0answers
257 views

Error 404 with slim framework

I am learning to code in PHP and mysql and need to be able to run PHP files using a wampserver. I have correctly installed wamp and have it online through Windows 8, however when I go to run my PHP ...
0
votes
3answers
606 views

PHP RESTful Webservice with Slim Framework, Authentification needed or against statelessness?

I'm writing a RESTful Webservice with the Slim Microframework and use GET for reading data from a mysql database (select query) and also POST/PUT/DELETE for insert/update/delete rows in the database. ...

1 2 3 4 5