The slug value for the forms module doesn't directly relate to the page in which you view the form but the page in which it gets submitted to. To embed the form, you can use:
<?=form('contact')?>
You can copy that file to fuel/applications/views/search.php and paste in the code from that fuel/modules/search/views/search.php into it so it allows you to update the search module codebase without affecting your custom changes. The default value …
For the block layouts, you'll need to set the model property to be your module's model. By default, it will pull values from the Fuel_pagevariables_model.
$my_block_layout->set_model('my_model');
You'll want to make sure that your Model has a record class associated with it as well. This link provides an example half way down. So one class that extends Base_module_model and another class that extends Base_module_record which usually resides …
It may have something to do with the sanitization being done on save for the module. For your module's config, add the parameter:
'sanitize_input' => array('template','php'),
The default is the value of "TRUE" which is an array of array('template…
This was more an issue I believe with older versions of CI when the session info was saved in a special CI_SESSION cookie that had a 4K limit and would cause issues with too much data. I would set it to the number of modules that you have and see ho…
That is happening in the MY_Model::process_relationships() method around line 3346. The Fuel_users_model has a has_many relationship to the Fuel_permissions_model which gets processed via the on_after_save hook.
Does it work if you apply this fix (I just pushed to the develop branch)?
https://github.com/daylightstudio/FUEL-CMS/commit/ab0170b48275224c6743c0ca2e2bf2a392d23673
Looks like not all the tables have been loaded. Try dropping all the tables (assuming you haven't added anything to them yet) and loading in the fuel/install/fuel_schema.sql file again.
This seems to be a bug. I've posted a fix in the develop branch for what I noticed when debugging your issue:
https://github.com/daylightstudio/FUEL-CMS/commit/7f743339bb8e59084fabeaefd136764c1d57d229