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