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…
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…
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…
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
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…
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…
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…
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…