There’s an error here: /packages/auth/classes/auth/login/simpleauth.php line 257: ‘group_id’ => (int) $group, should actually be: ‘group’ => (int) $group, otherwise you…
Notes on the system i’m building: A user has many sets of related data, one set being a list of…
I recently built my client management / quote / invoice system using fuelPHP, and needed to add some defaults settings…
Just as a point of reference, nothing here that isn’t in the fuelPHP documentation. Using fuelPHP Related Models. All relationships…
We always need pagination for displaying many records. fuelPHP makes this easy for us: [code] $countQuotes = count(Model_Quote::query()->where(‘user_id’, Auth::instance()->get(‘id’))->get()); $pagination…
I built myself a forgot password system in fuelPHP, and have needed it a few times since, so I thought…
Generating PDF with fuelPHP is very straight forward using the built in wrappers around TCPDF or DOMPDF (my preferred choice)…
Sending email with fuelPHP is really straight forward, as are most things with fuel! In this example i am sending…
Using OIL to generate Models, Controllers, Views, or even entire Scaffolding. A few notes. Quickly generate a model for albums:…