Not at this time. The class that renders it if you want to take a look is the fuel/modules/fuel/libraries/Data_table.php
http://docs.getfuelcms.com/libraries/data_table
You can try setting a placeholder value for the upload_path or folder value. The placeholder should be surrounded by "{" and "}" and should contain a value that your model returns using the "find_one_array" method. The following will upload the file…
The backup config allows you to specify which tables to ignore in the "db_backup_prefs" preference. It's recommended that you copy the fuel/modules/config/backup.php file to the fuel/application/config/backup.php file and make your changes outside o…
I just saw an issue that was the opposite almost where if you weren't given the edit permissions for a page specifically you could still edit inline. I've posted a fix for that. Perhaps that fix will help your situation. The change was to the fuel/m…
You can actually pass that variable and any other variable to the page if you create a "search" page in the CMS or you use the _variables file:
http://docs.getfuelcms.com/general/pages-variables
// in the views/_variables/search.php $vars['page_tit…
It sounds like you would want to use "aggressive_redirects" (those that happen before it hits the routes or a controller). Depending on how comfortable you are with regular expressions, you can use them (similar to routes) which should give you the …
If you don't set it, it should last forever. By default, when a page is created in the cache, it is setup to last forever until it gets saved again and then it recreates the cache.
Regarding the clean function, it isn't attached to the Fuel_cache …
It appears that you are asking the right person (the creator of the module) in this thread:
http://forum.getfuelcms.com/discussion/1948/free-source-code-for-my-photo-gallery-module#Item_5
If it is for the backend admin area, it will automatically load the style sheet with the same name as the module at fuel/modules/my_module/assets/css/my_module.css.
For the front end, there is a second parameter you can pass in the css function whi…
Is this an advanced module that has it's own folder in the fuel/modules/ folder? If so, there should be a generated fuel/modules/{my_module}/config/{my_modules}_routes.php file. This file is where you may need to change/create routes specific to yo…
I'm not sure if you have any sort of build script or after commit hooks, but you can clear the cache via the command line or a web hook. More can be read about web hooks here:
> php fuel/manage/clear_cache
http://docs.getfuelcms.com/general/cachi…
That query that it displays in the error is a valid query for FUEL (you can copy it and paste it into your MySQL manager and execute it it without errors). Is there something in the Gallery_model where it's referencing a different database or using …
Because it has "_image" in the field name, it will detect it using a representative. To ignore the representative, add the following:
$fields['show_image']['ignore_representative'] = TRUE;
http://docs.getfuelcms.com/general/forms#representatives
The blog author has a proper email address in the Users module (not the blog authors module)? Also, if an email isn't being sent, are you sure PHP can send mail on the server you are testing to begin with (like what almostcompletely asked)?
Sorry, but it looks like this module may no longer work based on the authentication being deprecated and unavailable as of April 20th
https://www.google.com/accounts/ClientLogin
https://developers.google.com/identity/protocols/terms
When you say the site went down, do you mean just the admin area? I've ran into a similar issue with this module and it seemed to go away after. There seemed to be some sort of hiccup on the client login authentication on Google's side.
Chances are you may need to set the "delimiters" configuration. Some more information on configuring can be found in the documentation here:
http://docs.getfuelcms.com/modules/search