For point #3, you say that that it does not accept any POST data. What is meant by that (e.g. is it not going to the fuel/modules/products/controllers/ajax.php saveProduct method?) Are you seen an error and if so, what is the error?
I'm sorry but I'm not quite sure I understand your issue and need some additional information. A few questions:
1. Is this concerning the front end or back end?
2. What is the URL you are trying to AJAX too (e.g. /products/ajax/saveProduct)
3. Wher…
I'm assuming this is when you save navigation in the CMS correct? If so, I've added a fix for that in the develop branch:
https://github.com/daylightstudio/FUEL-CMS/commit/316564eb390145512955200eb1df95940c0fea41
That first scenario is strange in that those $_SERVER variables aren't set. You are right that they should be set if running it via CLI because those variables are set in the index.php. The only change I can think of between 1.2.1 and In 1.3 was to …
You could perhaps use the 'append' parameter and append a navigation item with the same key but a different location value:
<?=fuel_nav(array('append' => array('products' => array('location' => 'products/byvender', 'label' => 'Product…
You could directly access the fuel_relationships_model to run your queries using active record. It also has some helpful methods on it such as "find_by_candidate" and "find_by_foreign"
$CI->load->module_model(FUEL_FOLDER, 'fuel_relationships_m…
I think that may be a bug. You mind trying a change out on your end before I post to the develop branch? Try changing the following on line 1287 or so in the fuel/modules/fuel/assets/js/fuel/custom_fields.js file:
$(context).on('change.toggler', 's…
I believe you'll need to setup special permissions and assign them to the users. The permission names would be:
categories?context=gallery tags?context=gallery
There currently isn't a way to limit the subfolders quite like that. There is a "folder" parameter which can be specified and you can limit it to a specific folder. In your case you could use placeholders:
$fields['image'] = array('type' => 'asse…
That makes sense. I'll look into updating that. There is also the ability to make sections by adding a "section" parameter and specifying the section_tag property on the form_builder instance which won't wrap it in the span. This would insert the se…
When you say a time field do you mean that it is showing the date picker field (mm/dd/yyyy) without the time? There are 3 different types of fields types you can use, date, datetime, and time:
$fields['my_field']['type'] = 'datetime';
OR$fields['my_…
1-2, 4) There is a $config['nav'] value you can set in your fuel/application/config/MY_fuel.php file which takes a $key=>$val array of urls and labels. By default, it uses the value in the fuel/modules/fuel/config/fuel.php file.
3) In fuel/applic…
Was the home page given the location value of "home" in the CMS? If so, is the fuel_mode configuration value in the fuel/application/config/MY_fuel.php file set to "auto" instead of "views"?
There was a password issue a few versions ago with users (not admins), that would have their passwords changed when assigned different permissions I believe (been a while). I haven't seen an issue yet with an admin. Let me know if you are able to re…
That looks to be a bug! Luckily, the base_posts_model is meant to be a starting point to inherit from so to fix for now until the fix is in place (I've pushed it already to the develop branch), you can do the following in your model:
function form_f…
If you look at the base_posts_model.php file on line 122, you'll see that it references a property called name. The name should be the module and the example in the documentation, it uses 'articles'. Do you have that property defined in your model a…