Avatar

Howdy, Stranger!

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

Wilhelmus

About

Username
Wilhelmus
Joined
Visits
16
Last Active
Roles
Member

Comments

  • Hi, I am currently working on a model to show the user table in fuel cms backend and create new users. This ist not to hard. However when it comes to saving the password I am experiencing a little problem. The password (12369874 for testing reasons …
  • Alright, I fixed it. The second modification needs to be done to the CI/Core/Exceptions.php. Just replace the function show_php_error() with function show_php_error($severity, $message, $filepath, $line) { $severity = ( ! isset($this->levels[…
  • Ok, I will just add successively all the lines that need to be changed for TankAuth to work with fuel cms. First you need to change the logout function: function logout() { $this->delete_autologin(); // See http://codeigniter.com/foru…
  • @almostcompletely: can you remember what and where you knocked?
  • At the top of the file? So looking at the line number won't do?
  • Thank you very much for your help. That's working just fine! Greetings from Germany, Wilhelmus
  • Thank you very much! Everything is working now! However I had to pass the data to the default argument like this: 'default' => $data,
  • Thank you very much for your quick reply. Everything works perfect. However I had to modify your answer a bit. I now run a loop and insert the values as an array, where list_id is the current todo_list_id that is edited, the todo_name is the name a…
  • Hi I am new to this forum. What is the markup for a code segment? Kind regards, Wilhelmus
  • Hello, I am also new to fuel cms and need to solve the same problem. I want to manage todolists with multiple tasks. However I could not figure it out with the help of this forum and the admin's answers. This is my lists_model: <?php if (!def…