Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

admin

About

Username
admin
Joined
Visits
8,800
Last Active
Roles
Administrator

Comments

  • That is a bug. I've pushed a change for that to the develop branch
  • 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…
  • Great... that fix has been pushed to the master branch as well.
  • 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…
    in Backup module Comment by admin June 2015
  • That it is... we are going to get that module updated to OAuth2 (or look at the community to help).
  • 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…
  • How did you upgrade FUEL? The MY_Parser.php file can and should be removed. Regarding the other user, I'm assuming they have full page permissions?
  • 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 …
  • Thanks for the fix. I've posted an update.
  • What version of FUEL are you running (1.3 was rolled out today BTW)? I believe this issue has been fixed already.
  • A fix for that has just been pushed to allow indexing with CSRF protection turned on.
  • 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 …
  • Interesting... and thanks for posting back.
  • 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
  • It has been deprecated (found this out the other day myself). https://developers.google.com/identity/protocols/AuthForInstalledApps
  • This has been fixed in the develop branch BTW: https://github.com/daylightstudio/FUEL-CMS/tree/develop
  • 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…
  • I believe this is fixed in the soon to be released develop branch: https://github.com/daylightstudio/FUEL-CMS/tree/develop
  • You will need to manually overwrite those enum values.
  • 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
    in SEARCH module Comment by admin May 2015
  • Yes. You can use a key=>val array syntax like below: $config['module_overwrites']['users'] = array('table_headers' => array( 'id', 'email' => 'Email Address', 'user_name' => 'User ID', 'first_name', 'last_name', 'super_…