That is indeed a bug that looks to have been fixed in the 1.0 branch:
https://github.com/daylightstudio/FUEL-CMS
To fix in .93, try adding the following to the fuel/modules/fuel/controllers/module.php around line 1439 right before "$config['remove_…
I don't think this is an issue specific to FUEL if you are able to view the SWF file.
As an alternative, FUEL comes with a swf function you can try:
http://getfuelcms.com/user_guide/libraries/asset#swf
The 1.0 beta version has the functionality built into it if you set the module config parameter "exportable" to TRUE in your MY_fuel_modules.php file. The exporting is done based on the "Base_module_model::export_data" method, which you can overwrit…
There currently is not an option to do that unfortunately. The only other option is to use the 4th and 5th parameters of fuel_edit to provide x and y offset values
Did you change it in the the following place as well?
Also, does it look like all the javascript you need to render the page is being properly pulled in?
That is probably due to an error being returned. "cat_name" is a field in your database correct? The data is ajaxed in and may be why you aren't seeing the error. Can you check your console (e.g. Firebug) to se if the server returns any error with a…
For example, say we had a model called widgets and we wanted to iterate over an array of widget objects and display them along with an edit pencil icon. Before we had to do something like this:
<?php $widgets = fuel_model('widgets'); ?>
<…
Try using the following in your members.php file:
// use get_members instead of just members for the method name $members = $category->get_members($subCategory);
You have to use the method name in this case because you are passing a parameter.
I just tried and was actually getting a slightly different error which I just pushed some fixes for regarding a file not existing. However, I ran the following command in the windows command line and it seemed to work OK. Do you have the"admin_enabl…
I'll look into that issue. In the meantime, you should still be able to see the user guide in the CMS. The installation for the user_guide just adds the appropriate permission which isn't really necessary for the user_guide unless you plan on assign…
A couple things to try out. Can you debug the value of "$config['allowed_types']" around line 1438 in the fuel/modules/fuel/controllers/module.php file to see what it outputs? Also, what happens if you add the 'images/groups' folder to editable_asse…
The user guide for 1.0 is currently a module that can be downloaded on GitHub.
https://github.com/daylightstudio/FUEL-CMS-User-Guide-Module
The install instructions on the installer homepage should point you to how to install the user guide but bas…
If you add 'class' =>'multifile' to your file field, then it will give you the ability to upload multiple files. However, as for the processing of those file names to the database, you would need to use an on_after_post hook most likely to do fur…
The file upload types don't save to the database, they merely just upload the file. If you want to upload and save to a field in the database, you will need to create a field to capture that. By default, any field in the table that has a name ending…
For the paragraphs, it depends on what editor you have configured in the Admin. If you are using markItUp! which is the default, then you need to add them. The toolbar has an easy way to do that (the "P" toolbar button). You can set the editor to be…
You may also need to change the list_items method on your model to use the UID instead of id. To do so, just set a db select statement in the method. If the model doesn't have that method, you can create it. Look at the fuel/modules/blog/models/blog…