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

  • Fuel_base_controller doesn't extend Fuel_admin, it just uses it in the constructor. If you want to see what it does, it is located at fuel/modules/fuel/libraries/Fuel_base_controller.php
  • What I meant by .htaccess being enabled was that you may want to check the Apache conf file to see if .htaccess is enabled for that folder (not that a .htaccess file existed in that folder).
  • The fuel/modules/fuel/controllers/module.php controller handles the rendering of those pages, coupled the Fuel_admin class: http://docs.getfuelcms.com/libraries/fuel_admin To have the save button appear, you'll need to have an item_actions paramete…
  • It sounds like you want a similar structure as Blog Module: https://github.com/daylightstudio/FUEL-CMS-Blog-Module/tree/develop Note that there is a config/blog_routes.php file which creates the routes for the Posts, Comments, etc simple modules. I…
  • Is .htaccess enabled for that folder?
  • There isn't a built in Authentication library for front-end users. There are a couple popular ones out there: https://github.com/benedmunds/CodeIgniter-Ion-Auth http://konyukhov.com/soft/tank_auth/ Here is a thread discussing implementation with FU…
  • This does seem something that may be more CodeIgniter focused and would recommend the forum.
  • I think you may need to overwrite the table_headers fields and use your own (not necessarily those that are below): $config['module_overwrites']['categories']['hidden'] = TRUE; $config['module_overwrites']['categories']['model_location'] = 'app'; $…
  • If you are creating an advanced module in FUEL, you should be able to access it anywhere using $CI->fuel->my_module->my_method() where $CI is the controller object (which is referenced as $this in a controller). This is assuming that your a…
  • Thanks... fixed the typo.
  • There is a parameter you can set on your module in the MY_fuel_modules.php config of "rows_selectable" => FALSE.
  • For changing the login screen, you can't easily change the view but you could add your own CSS file to overwrite existing styles using an $config['xtra_css'] configuration parameter in fuel/application/config/MY_fuel.php which specifies a CSS file. …
  • In situations like this, I would recommend one of the following methods: 1. In your global.php file you can use the $pages variable with a regular expression key. Perhaps something like: $pages[':any/productsheet$'] = array('var1' => 'var1_value…
  • I'm sorry, but I don't at the moment. My only suggestion would be to try and isolate if it is a server environment or not. To do that, I'd recommend getting it setup in a different environment.
  • Does this problem happen on your local development or is this specific to the server?
  • To have a little more control over that, there is an "advanced_search" => TRUE parameter you can set for your module. When this parameter is set to TRUE, there will be a triangle indicator to the right in the search box that when clicked will dis…
  • There were a few additional changes made to the core to account for some changes in CKEditor 4.4 so I would recommend an upgrade or at least replace the fuel/modules/fuel folder.
  • If you upgrade to the latest version of FUEL CMS, it will be upgraded for you. To do that, you can just use GIT and pull in from GitHub the master branch.
  • You can add to the tables config your own tables that you want to map and then reference that in your constructor and elsewhere in your models.
  • FUEL doesn't change the core CI Logging. The Fuel logging is actually separate so your log_message function should continue to work. However, it can write 2 log files if your system default time is different then what is set in the fuel/application/…
    in Logs Comment by admin November 2014
  • There is a "editor_config" parameter you can set which will set different configuration values. This talks more about setting configuration values per field here: http://docs.getfuelcms.com/general/forms#wysiwyg
    in CKEditor Comment by admin November 2014
  • Yes, modules are setup a little different and a language column must be added to the table with each record. What if you had the slug and language values be a unique key in your news table instead of just the slug value? Then on your front end, you …
  • I haven't tried what I'm about to suggest yet but it may be worth a shot. FUEL has a "tables" config that is used for mapping models to tables. In the fuel/application/config/MY_fuel.php file you could try adding something like this configuration: s…
  • If you look in the fuel/modules/fuel/assets/css/fuel.css file towards to the very bottom of the file, you'll see three styles that are used for the buttons: .cke_button__fuellink_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) n…
    in CKEditor Comment by admin November 2014
  • It sounds like you are completely trying to replicate the Pages module instead of using a Layout for your News items correct? If so, that's quite a bit of work and not something FUEL is easily setup to do without you writing a lot of code. To point …
  • What is the URL you are calling?
  • The ck_editor_settings configuration parameters are merged into the fuel_header_jqx.php which is in the header of a FUEL page and assigned to the javascript variable jqx_config.ckeditorConfig. This variable gets passed to CKEditor upon intialization…
    in CKEditor Comment by admin November 2014
  • Nitesh, this seems to be in posted in the wrong discussion thread. I think the easiest way would be to use the "link_pdfs" and "link_filters" parameter with the "link_filters" being something like: ...'link_filter' => '.+\.pdf', 'link_pdfs' =>…
  • If you add the following to the MY_custom_fields::select2 method, it will allow for multiple selections: $params['multiple'] = TRUE;
  • The default settings now in 1.2 are: $config['ck_editor_settings'] = "{ toolbar:[ ['Bold','Italic','Strike'], ['Format'], ['FUELImage','HorizontalRule'], ['NumberedList','BulletedList'], ['FUELLink','FUELUnlink'], ['Undo','Redo',…
    in CKEditor Comment by admin November 2014