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

  • Thanks for the bug report. I've updated the user guide and the repo. The category field actually isn't a field in the articles table so you may need to use a hook and get the validation object to add validation like so: $this->get_validation()-&g…
  • Another note about getting CKeditor to work for inline editing. You'll need to load the ckeditor javascript files in the fuel/modules/fuel/views/_blocks/inline_edit_bar.php file (around line 8 where the js() function is). Also, you will need to repl…
  • No problem... glad it helped.
  • You should be able to load it up like any other CI library (e.g. $this->load->library('email');. You could also add an fuel/application/config/email.php like other CI library classes to provide initialization parameters.
  • It may be an issue with the uri_protocol that CodeIgniter is using and .htaccess. Try this thread (about half-way down) where it talks about adding a question mark in your .htaccess like so: RewriteRule .* index.php?/$0 [L] http://getfuelcms.com/f…
  • If you are creating a module, you probably want to extend base_module_model. MY_Model, was built to be more generic and could be used outside of FUEL, while base_module_model is essentially the extensions needed for a module in FUEL.
  • I would create a separate user accounts login for the ecommerce side of things since the fuel_users table is really just for people interacting with the admin. For what we did, we created an "advanced module", similar to the blog in the sense that i…
  • The IRC #fuelcms should be back in business. Thanks Stoph for the help on getting it back online.
  • That has been updated to account for 2 digit years.
  • Great! look forward to seeing what you've built.
  • I'll need to modify the code I think to account for the 2 digit year.
  • That's a great question and a definite need for both the community. We've actually considered doing a blog post about it because there is a module we created for a project that we were considering either opening up or selling (not sure at this point…
  • I'm assuming that this code lives in the footer block right? If pages are created in the FUEL admin instead of static view files, then the CI variable is not sent to the page (for security reasons). Although their is a $CI variable declared in the g…
  • Is your comment regarding years being 2 or 4 in the database still relevant?
  • I just posted a fix for this. The change was made to the fuel/application/libraries/MY_Model.php and made some additions to fuel/modules/fuel/language/english/model_lang.php
  • Great!... Thanks for the input. Would the above fix be an issue for dates before 1900 or after 2099?
  • I'm getting the following error when doing it through the webchat link above "cannot send to channel". Googling brings up the following: "On a moderated channel, only channel operators can talk publicly, others can only listen and will get "cannot …
  • I believe you are right in that by adding $vars['news'] = array('view' => 'news'); should fix that (note the "s" at the end of $var... that was a typo in the user_guide that I've fixed now). You could also add to that _variables/news.php file $p…
  • For the module name parameter try "blog" instead of "links". Hopefully that does the trick. That's a reference to the module folder it belongs to.
  • Thanks for clarifying. I'll look into that issue.
  • Thanks for the update and I apologize for saying someone hijacked it. Whenever I try to correspond though I get this message "Can't send to room "#fuelcms" on 'irc.freenode.net'" in my chat client now and I think others are having trouble. And I was…
  • Thanks for the report. I'm not quite sure I follow when you say a 4 digit DATE field. Could you explain that a bit more? The '0000' is there to catch empty date field values (e.g. '0000-00-00').
  • Some of you may have found that the Page module throws a javascript error if you put the ckeditor in the initSpecialFields method. This is because the initSpecialFields() function, is getting called twice. I will be making a few changes in the next …
  • That is an error. There use to be an RSS layout and they got switched somehow. I've updated the repo with both the fixes. The sitemap layout uses a slightly different way to get the pages (there are a few ways to do it, depending on your site). Than…
    in Sitemaps Comment by admin February 2011
  • There currently is no tutorial for integrating with existing applications, but depending on how far you've tweaked CI, it should be a matter of transferring your application files to the fuel/application directory. This is what I would recommend doi…
  • There was an issue with the value of the am/pm options that were being set in the Form_builder class. I've pushed an update to that file on GitHub.
  • That looks like a bug. I'll look into it.
  • I believe I've fixed that issue and have updated the GitHub repo. The change made was to the fuel/modules/fuel/models/navigation_model.php file
  • OK... I think I'm able to replicate the problem and will look into a fix shortly.
  • A few questions to help diagnose: 1. What browser are you using? 2. Do you mean no parents show up to select? 3. Do you have the latest from the repo? There were some fixes I made last week regarding navigation so I want to be sure this is a new bu…