Fuel is a simple, flexible, community driven PHP 5.3 web framework based on the best ideas of other frameworks with a fresh start.

learn more… | top users | synonyms

0
votes
1answer
136 views

What PHP MVC Framework would the PHP experts recommend between FuelPHP, Laravel and YII… [closed]

I did use CodeIgnitor for a project last year, and really enjoyed it, but since some of the developers broke away from that Framework to creat FulePHP it seems like it's stagnated a bit. I also ...
1
vote
1answer
74 views

Forbidden error in apache virtual host setup

Hello I have been looking through internet articles forums to solve my issue and so far it has been to no avail. I am trying to set up an Apache virtual host for my FuelPHP development on localhost ...
-3
votes
2answers
52 views

fuelphp -Undefined variable [closed]

I have book model view controller and I have library controller and view . The view folder has index.php and view.php . My question in my index.php i get following error: ErrorException [ Notice ]: ...
0
votes
0answers
30 views

FuelPHP ORM order_by Not Working in a Task

I have an order_by statement on a relationship in an ORM query: $vehicles = \Model_Inventory_Main::find('all', array( 'related' => array( 'photos' => array( ...
1
vote
2answers
67 views

How can i output/log the sql query generated by Fuel PHP's Orm queries?

Is there some way of logging or outputting the mysql query string that is generated from a Model_Orm::query() or a Model_Orm::find()? I have a complex Orm::query() that is not giving me the results ...
0
votes
2answers
68 views

FuelPHP Oil Migration not working

I have xampp installed and want to get FuelPHP working. Everything seems to work fine, I scaffolded some stuff, that I want to migrate. But I get the error Error - invalid data source name in ...
0
votes
2answers
118 views

Nginx Fuelphp VHost Config - File Not Found

I am trying to setup my first fuelphp project in ubuntu12, php5 and nginx, Im following their tutorial in http://ucf.github.io/fuelphp-crash-course/#Every_Building_Needs_A_Scaffold The problem Im ...
0
votes
1answer
109 views

FuelPHP - php oil refine migrate PDO Error

I'm trying to setup my fuelphp on ubuntu12, nginx in a development environment. Everything was working for me except when I try to do php oil refine migrate. I was faced with the following error ...
0
votes
2answers
104 views

Redirect to another controller with data

I have an action_register function which attempts to register a new user. If successful, I would like the user to be forwarded to the login form (which is shown via action_login). However, I'd also ...
0
votes
1answer
76 views

FuelPHP custom environments

I'm moving an existing FuelPHP application across to a new environment, and I've reached the point where I could really do with adding another environment beyond the default 4 (ie. development, test, ...
0
votes
1answer
256 views

Basic user authentication example in FuelPHP

I've just started using Fuel and I'm trying to implement basic user authentication and registration using the auth package. I have a controller called auth.php in which I have action_login, ...
0
votes
1answer
110 views

FuelPHP routes.php not working

I have a very basic setup with a new Fuel checkout. fuel/app/classes/controllers/auth.php class Controller_Auth extends Controller { public function action_login() { return ...
0
votes
0answers
52 views

Fuelphp testing the after_load observer in Model (phpunit)

I'm writing unit tests for a model which uses _event_after_load observer to create some computed properties based on that object's data. I run the following in the console just to see that the model ...
0
votes
0answers
80 views

FuelPHP and Cartalyst Sentry Error

Thanks in advance for your help. I'm trying to learn a bit about FuelPHP and was attempting to install Cartalyst's Sentry package for authorization and related activities. However, I'm getting the ...
0
votes
1answer
166 views

Upload and than resize images

I am having trouble with simple picture upload. I already tried that the uploading part separately works perfectly only after adding the Image resize functionality gives unknown error. public ...
-1
votes
1answer
57 views

load next offer when answer has been submitted

I'm trying to build a simple offer survey app (PHP using Fuel Framework). I want to serve one question at a time. A user then has to answer Save or Bin. Only when they have answered do I want to ...
0
votes
2answers
120 views

Getting last saved object id

I am using the Model_CRUD class and it's methods to save and find in database. The problem comes when saving new object into DB, is how to get last inserted id ? User::forge($userInfo)->save(); ...
0
votes
1answer
95 views

FuelPHP Form validation not working with IE (Internet Explorer) browser… Client side validation not working

I'm using FuelPHP 1.0 version... I create form field validation server side... eg - $fs->add('test', 'test', array('type'=>'text'), array('required')); FuelPHP automatically create the client ...
0
votes
0answers
52 views

Need to implement PHPSpellChecker with FuelPHP

I'm new to FuelPHP and need to implement PHPSpellChecker Class. I can't find any help related to its implementation with FuelPHP. I'm trying it out by creating a package but I'm not sure how to ...
0
votes
1answer
107 views

ErrorException [ Error ]: Class 'Model_Search' not found

I moved from my localhost to my web host to test out the application, and everything works as expected but when i tried to use a model that i generated via oil, it throws that error, saying the class ...
1
vote
2answers
195 views

FuelPHP Pagination Issue

I recently upgraded my FuelPHP to v1.5. Now I'm trying to set up the pagination class. This is my code: $data['news'] = Model_News::find()->where('font', '>', -1); $count = ...
0
votes
3answers
142 views

fuelPHP read config from db

I have table in DB with global settings for site. I want to load these parameters when fuelPHP is starting and use it in all controllers. table columns is id|setting_name|setting_value. I used ...
0
votes
0answers
79 views

Upload Class won't see $_FILES

I've taken too much time on this. It seems that the Upload Class is not working. I followed the document and came with this: public function action_file() { $path = DOCROOT . 'assets\uploads'; ...
1
vote
2answers
141 views

Object context - Using $this in PHP 5.3 vs PHP 5.4

I've got a web application that I'm building on the FuelPHP framework. My local development environment is running PHP 5.4 while my server is running PHP 5.3. In my development environment, from my ...
0
votes
1answer
78 views

MongoDB (via Fuelphp): Adding entries on an Array

I would appreciate the help here. For the purpose of this discussion I have an example here (I will use paste bin for the codes): http://pastebin.com/VPuyKn6W I am trying to produce this output: ...
0
votes
1answer
115 views

Cannot get FuelPHP action to run

I'm new to FuelPHP and I did a little coding with it! What I did was create a simple controller and created two methods. One for action_index() and the other is action_add(). the code is given below. ...
0
votes
1answer
410 views

FuelPHP oil refine migrate not working

I'm stuck at the beginning of a new site. It's my first time, trying to use oil for generation / migration. I successfully create a model using oil and now I want to migrate it, but php oil refine ...
2
votes
0answers
62 views

PHP Comet (Server Side Push) [duplicate]

Possible Duplicate: Using comet with PHP? I am writing a social application with a back end written in PHP (I'm using the FuelPHP framework). I would like to notify a client that some event ...
1
vote
2answers
156 views

Fuel PHP - ORM - Has Many and Belongs To

I'm having relationship issues (lol)... It's with the ORM (which is amazing). I have two models 'Item' and 'Offer'. An Item can have many Offers - so Offer belongs to Item. But, an Offer also has one ...
0
votes
1answer
70 views

How can I route to a module?

I have poured over the documentation but I can't seem to find out how I can route a URI to a module. My module currently contains a single controller using the correct directory structure (currently ...
1
vote
4answers
3k views

Using jQueryMobile AND bootstrap together

Right now I'm building a web app, and I would like the device to use jquerymobile for resolutions under 780 pixels, and bootstrap for above 780 pixels.. Is this even possible? I've tried searching ...
0
votes
0answers
128 views

URL cannot be found on the server for my FuelPHP Module

I'm creating a small FuelPHP application that contains a blog module. In this module the posts controller just assigns a simple view to the template for the posts index. I have read through the ...
3
votes
1answer
149 views

Multiple order by with join

I am new to fuelphp.Need to add order_by for parent table: order by username asc, parent_table_field asc. I tried following code: Model_Definition::find('all', Array ( [related] => Array ( ...
0
votes
2answers
104 views

Error: The subfolder for admin templates does not exist or is spelled wrong

I have tried to Generate Custom Template using oil Scaffold on FUELPHP. Move oil/views in oil/views/my_custom run php oil generate scaffold/my_custom -f monkey name:string description:text the ...
0
votes
1answer
191 views

AWS Elastic Beanstak and Custom Environment Variables

I have been looking but I'm not sure I have found an adequate answer for this. I would like to set a unique environment variable for each Environment I have in my application. When I create my ...
1
vote
2answers
251 views

How to set error notifications in FuelPHP

I have a problem when I want to publish my local development to production environment, this problem is about error message handling. When I access my site using development environment errors can be ...
0
votes
0answers
71 views

ACL with only “has access” / “no access” for CMS backend. Need some opinion [closed]

I'm working on modular CMS, currently I've got ACL with features: users' roles users' groups groups' roles Usage is very simple: Acl::has_access('Namespace\\Class', 'method', 'role'); The thing ...
0
votes
1answer
175 views

FuelPHP: Create Table When Using 'oil generate model' Confusion

I am totally new to FuelPHP, ORM and migrations in general so sorry if I come accross like a noob but I've been struggling with this for a few hours now so I thought I'd ask for help. I think I'm ...
0
votes
1answer
113 views

FuelPHP Oil utility error: 'This is not a valid Fuel installation so Oil is a bit lost'

I installed FuelPHP using the manual installation (regretting now, should have used Oil but knew no better back when I started). I'm now trying to create data models and migrations using the command ...
1
vote
2answers
418 views

FuelPHP “invalid data source name” error

I'm trying to set up a FuelPHP app, and I've run into a puzzling problem. Every time the app tries to connect to the database, I get the following error: Fuel\Core\Database_Exception [ Error ]: ...
0
votes
2answers
250 views

FuelPHP: Changing the language dynamically

I'm trying to write a FuelPHP (v1.4) module with support for multiple languages. I have the following directory structure: fuelphp/ app/ modules/ mymodule/ lang/ en/ ...
0
votes
2answers
78 views

Red filename in Ubuntu CLI (Vagrant)

I am building a FuelPHP application running on an Ubuntu VM powered by Vagrant. I am trying to include a CSS file on the global wrapper for all my pages, but Firebug tells me it isn't there. (the ...
0
votes
2answers
158 views

Maintaining a multi-submodule project using git

I'm developing a website with two other team members using the FuelPHP framework. I would like to use git to maintain the project, but I'm having some trouble wrapping my head around the ...
0
votes
2answers
91 views

php fuel 42000 error

I don't get whats wrong. So this is the full error I get... Fuel\Core\Database_Exception [ 42000 ]: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; ...
2
votes
1answer
191 views

FuelPHP: Trying to implement Search. Routes doesn't work

folks. I'm kinda stuck with Routes there is a search-form in a top-navigation. <form action="/search/" class="navbar-search pull-right"> <input type="text" name="q" id="search-query" ...
0
votes
3answers
71 views

FUELPHP - Changing the name of the “public” folder

in my public folder is called "public_html", so I wonder how can I configurate fuel to use the "public_html" instead of the "public" Thanks!
0
votes
1answer
170 views

Create one to many relation in FuelPHP

I have 3 models: Client, Task and Taskstatus(for matching tasks for each client). Model_Task protected static $_properties = array( 'id', 'name', 'created_at', ...
1
vote
0answers
172 views

FuelPHP ORM database schema for i18n, opinions/suggestions

While this question might be similar to many others, I'd like to ask for opinions/suggestions on the best approach for i18n specificaly on FuelPHP. So, here is what I've got so far: Database schema ...
0
votes
1answer
51 views

How to compare value in two columns in FuelPHP

I have problem when query table using FuelPHP 1.3's Model. Entries table have three columns ('id', 'status', 'current', 'max' ). $result = Model_Entry::query() ->where('status', 1) ...
0
votes
1answer
192 views

FuelPHP: Pagination in Search Result

I am having problems with pagination. Actually, the documentation doesn't tell much on how to implement it. I have a search page that will display the search results. I want it broken down into pages, ...

1 2 3 4 5