It could be something in the session. Try logging out. You can specify the a default_col and default_order for you module in the MY_fuel_modules.php file
That is correct that there is now just one form being used. You will have to either use javascript to change the action or if you are using your own controller, you can pass in a form_action value.
So you are saying something like the following is happening (say the month is December)?
$key = date('Y/m', strtotime($post->date_added)); // 2013/12
$key = date('Y/M', strtotime($post->date_added)); // 2013/Dec
$key = date('Y/F', strtotime($p…
The filter join is something that needs to be set as a property of the model such as :
$this-> filter_join = 'and'; // will be used for all fields
$this-> filter_join = array('time_played_fromequal' => 'and'); // will be used for only the t…
You can add those date filters using the Form_builder array syntax in your MY_fuel_modules.php file under the "filters" key of your module config. You can add suffixes of "_from" ( >), "_fromequal (>=)", "_to ( function filters(){ $filters[…
So is the $prizes_values array value the same whether it's published or not and it's just not displaying correctly?
Also, what is the $has_and _belongs_to_many property... did you mean $has_many? If so, you shouldn't need to create the form field s…
You can set a "null" parameter to TRUE which will uncheck the first option. Also, I've posted a fix for the render_divs HTML. Test it out and let me know if there are any additional issues.
After thinking about this a little more, I don't think my suggestion will work. I think the change is actually to the asset_helper and making the default 3rd parameter an array instead of an empty string. I've posted a fix for that in the repo.
There is a module property of "list_actions" you can set in your MY_fuel_modules.php file with the key being the action (relative to the fuel path e.g. my_module/export_data), and the value being the label. This will add the buttons before the "crea…
That first example appears to be a bug. The "load_model" method only returns a string of the name of the modal so your fix should work. I'll post that in a bit.
As for saving, you may need to use the save_related method in a model hook (on_after_s…
What were the proxy buffer size increases. We have used Media Temple's DV which uses Nginx in front of Apache and we'll use something like the following.
proxy_buffer_size 16k; proxy_buffers 32 16k; proxy_busy_buffers_size 64k;
This is u…
Thanks for the info. I've posted some changes to the Cache library per your suggestions. For the Asset issues, do they go away if the default value for the js and css functions for the 3rds 'options' parameter is set to NULL instead of "array()"?
Hmm... it sounds like Form_builder would be what you may want to use. In .93 there is a contact controller that shows how to make a contact form and send an email using Form_builder. Is that what you are wanting?
If you have an advanced module that has sub modules, like the blog advanced module that has a blog_posts sub modules, you can set the URI to match what you've set the route too. In the this example, that is blog/posts (instead of blog_posts).
Ah... placeholder isn't an option in .93. 1.0 beta includes it though but also has it as a separate module that needs to be installed:
https://github.com/daylightstudio/FUEL-CMS-Blog-Module
In that method, if $dir_folder is an array with the key being the module and the value being the folder, and then the code is changed to something like the following, does it work for you:
public function options_list_with_views($where = array(), $d…
For the $render_form = 'divs', if you are using the 1.0 beta, you can create a fuel/application/config/blog.php file and add the following or you can just add it to the fuel/modules/blog/config/blog.php file in 0.93:
$config['blog']['comment_form'][…
That appears to be the correct syntax. It sounds like you have this in a controller file. What is the name of the controller and the method that you are calling?
Is it perhaps a .htaccess issue in general? Does http://mysite.com/fuel show up?
What is happening instead? Is it perhaps that the "antispam" hidden field isn't set? The value of that is stored in the session:
$this->session->userdata('antispam');
Also, the blog config file allows you to set additional fields as well as p…