Avatar

Howdy, Stranger!

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

swampthang

About

Username
swampthang
Joined
Visits
207
Last Active
Roles
Member

Comments

  • Well, geeez. It was the structure of the users_to_servers table. Both user_id and server_id needed to be set as primary keys. Only user_id was set as that. This is now working like a charm:function on_after_save($values) { $CI =& get_in…
  • I think the problem might be my understanding of how the post data makes its way to the on_after_save function. I changed it to this and now nothing is happening: function on_after_save($values) { $CI =& get_instance(); $CI->load->…
  • Thanks for the reply, David. Ok, I've commented out the $has_and_belongs_to_many line and have replaced $data = $this->normalized_save_data['view_servers'];with$data = (!empty($this->normalized_save_data['view_servers'])) ? $this->normalize…
  • By the way, it's not a list of checkboxes that shows up but a select list (when I first started this I had set the mode to auto instead of multi)
  • I figured it out. It wasn't the rewrite. Of course there's the index.php file in the main directory which you get if you use http://localhost as the URL (my sites are in the standard c:/wamp/www/ directory). The hotfretsnew site is in /wamp/www/hotf…
  • I seem to be having trouble with this now myself. I have a new local computer, windows 7 x64 and installed the newest version of WAMP server. I am using .htaccess, have rewrite_module checked on and have my fuel files located in wamp/www/hotfrets/fu…
  • I've been able to get the CKEditor to work successfully so thought I'd add a little more detail for you. In fuel/modules/fuel/assets/js/fuel/controller/BaseFuelController.js the code he's talking about should look like this... // set up markitu…
  • Oh, man! Why didn't I think about looking at the CI documentation. You are a patient man. Thanks so much for the pointer. Works like a charm.