You'll need to look at the Fuel authentication model and either extend it to include a function that logs the user in or add a helper that does it.
Do you get given the email address of the authenticated Facebook user? You should be able to find_on…
Yes, we're alive and kicking. We're not a massive community but pretty active.
Check out the Github repos, you'll likely get most of your answers there.
Are you talking about Fuel users or 3rd party, front-end users?
For the second option, the TankAuth Codeignitor modules works well but needs some integration.
The problem is probably more to do with your Apache/PHP set up. You'll need to edit your php.ini.
http://stackoverflow.com/questions/2184513/php-change-the-maximum-upload-file-size
You can add your own CSS for the CMS by adding the following to the MY_fuel.php config file $config['xtra_css'] = array('my_admin.css'); where mY-admin goes in the ./assets/css directory.
Each CMS icon has it's own class so you can easily override t…
Fuel has this (occasionally annoying but handy) feature of working out what the field contents are based on it's name. You can disable that for your field using: $fields['telephone']['ignore_representative'] = TRUE; does that help?
EDIT: Hmm Sorry.…
Fixed. Not sure how. I built a scratch site to test which worked. Copied the forms table from that to the live site and it started working. I deleted the cache directories, rebuilt and reset permissions too so it may have been that...
If you're using MySQL on Linux, you could take a look at SQLyog Job Agent (SJA) [https://github.com/webyog/sqlyog-community/wiki/Downloads] which has some good syncing options.
Yeah. Both of those are old and problematic. I've built my own but it's not in a state that I can easily share and is still pending some features. Keep an eye on the forums, one day when I have enough bandwidth I'll collect it all together and post …
1.3.0 to 1.3.1 is pretty straightforward. I'm not aware of any changes to the default contents of the ./fuel/applications directory so I'd just extract 1.3.1 into a temporary directory, delete it's ./fuel/applications directory and copy the whole th…
My .htaccess is similar. On my test rig, the .htaccess works fine but on my live, shared hosting, I have to remove everything outside the IfModule block for it to work.
Try removing "Options +FollowSymLinks" and "Options -Indexes"
Do you have a project controller?
I'd add a function (maybe function show($project) {} ) that takes the project name off the url and renders it $page_init = array('location'=>'project','render_mode'=>'view'); $this->fuel->pages->ren…
I think there's a variable somewhere that defines what the "fuel" directory path should be:
// path to the fuel admin from the web base directory... MUST HAVE TRAILING SLASH! $config['fuel_path'] = 'fuel/';
From MY_fuel.php...
I use git to control the source via GitLab repos and use a deployment php script (with a GitLab web-hook) to pull in the changed files. By using .gitignore file, you can specify what you want to update and what to leave alone.
For sites running off…