Was it your debug code that was causing that error in My_language_helper.php or is there still an error in that file and if so, what is the value of $args?
I think the next steps would be to debug the fuel/modules/forms/Fuel_forms.php file around line 1094 in the notify method where it is suppose to be attaching the files. I would first check to see $this->upload_files() outputs (using var_dump or p…
A couple questions:
1. What version of FUEL are you running (you can check the fuel/modules/fuel/config/fuel_constants.php file)?
2. What does line 72 of the MY_language_helper.php file look like for you an what is the array value that it's trying t…
There looks to be a conflict with how the base_module_model and the blog_posts_model are joining the fuel_users table. I've posted a fix to both the develop branches of FUEL and the Blog which should help. Basically the limit_to_user table join on t…
Yes, you can still use the CMS. You just need to specify the block value as opposed to it being auto created under the Form tab > Form display option. To grab the properties of the created form, you can first grab the form instance by using the f…
Unfortunately, there doesn't appear to be a field type that supports what you need. However, you could try wrapping up all the logic you are implementing into your image gallery form field code and create a custom field type. More information on cre…
Hmmm... I'm having trouble replicating this with the code provided. However, I've posted an update in the develop branch to check that there is a val first based on your fix.
The Base_module_model::limit_to_user property is meant to limit the records to the author. To avoid needing to modify the Base_module_model::limit_to_user property, there is a limit_to_user value that can be set in the blog config. If you pull from …
To generate the proper HTML, I'd recommend creating your own block of HTML to structure it how you want. The Customizing the HTML section explains it a little more in detail (and note the next section for Special Hidden Fields which allows you to se…
There were some changes made to the dependent field in the develop branch. I'm not sure if any of the updates would fix your error but if you can, can you update to the develop branch (You can use GIT to pull in and merge any changes ... may need to…
The FUEL blog requires an author to have access to the admin area which means they need to be a FUEL user with the appropriate blog permissions. Then under the Blot Authors area, you associate that FUEL user to that blog author.
There is a develop …
FUEL currently doesn't support that unfortunately.
Perhaps a change to the $boolean_fields property where you can pass it a $key=>$val as well. If the key is a string it will use that instead of the value which is the alias to that value. This …
Not at this time without overwriting the controller for your module with custom code. By default your module create, edit, delete, and list views gets routed to the fuel/modules/fuel/controllers/module.php. You can specify your own routes in the fue…
OK... I think I finally understand. You have a single image field that is set to multiple which appends images with a comma delimiter it looks like. In this situation, I think it has to do with the fact that the post_process method on that field doe…
Are you wanting to have multiple history_img fields so you can save an array of images as JSON? If so, you'll need to convert the saved valued into an array syntax perhaps by using something like the "template" field type which will create a nested …