
Am new to code igniter.Am tring to create the blog in one of their tutorials. class Blog extends CI_controller{ function __construct() { parent::__construct(); $this->load->scaffolding('entries'); } But i keep getting this *Fatal error*: Call to undefined method CI_Loader::scaffolding() in * C:\xampp\htdocs\blog\application\controllers\blog.php* on line *8* Somebody with a solution Regards Benard

Are you using one of the older versions of CI? Coz scaffolding was dropped as of version 1.6.0, but it should still work as of version 1.7.2. Have you enabled it in the config file? On Fri, May 13, 2011 at 10:10 AM, Ben mukash <mukashh@gmail.com> wrote:
Am new to code igniter.Am tring to create the blog in one of their tutorials.
class Blog extends CI_controller{ function __construct() { parent::__construct(); $this->load->scaffolding('entries');
}
But i keep getting this
Fatal error: Call to undefined method CI_Loader::scaffolding() in C:\xampp\htdocs\blog\application\controllers\blog.php on line 8
Somebody with a solution
Regards Benard
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke

Yeah i have enabled the config file and am using version 2.0 On Fri, May 13, 2011 at 10:59 AM, Peter Karunyu <pkarunyu@gmail.com> wrote:
Are you using one of the older versions of CI? Coz scaffolding was dropped as of version 1.6.0, but it should still work as of version 1.7.2.
Have you enabled it in the config file?
On Fri, May 13, 2011 at 10:10 AM, Ben mukash <mukashh@gmail.com> wrote:
Am new to code igniter.Am tring to create the blog in one of their tutorials.
class Blog extends CI_controller{ function __construct() { parent::__construct(); $this->load->scaffolding('entries');
}
But i keep getting this
Fatal error: Call to undefined method CI_Loader::scaffolding() in C:\xampp\htdocs\blog\application\controllers\blog.php on line 8
Somebody with a solution
Regards Benard
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke

Well, scaffolding is deprecated in 2.0. If you really must use it, then grab and older copy of CI. I would recommend using the exact version being used in the tutorial, then once u get the basics, upgrade. That said, see this: http://samuel.ramon.blog.br/en/using-codeigniter-scaffolding/ Also, whilst this does't solve your immediate problem, I highly recommend the Code Igniter from scratch video series, here: http://net.tutsplus.com/articles/news/codeigniter-from-scratch-day-1/ On Fri, May 13, 2011 at 11:24 AM, Ben mukash <mukashh@gmail.com> wrote:
Yeah i have enabled the config file and am using version 2.0
On Fri, May 13, 2011 at 10:59 AM, Peter Karunyu <pkarunyu@gmail.com> wrote:
Are you using one of the older versions of CI? Coz scaffolding was dropped as of version 1.6.0, but it should still work as of version 1.7.2.
Have you enabled it in the config file?
On Fri, May 13, 2011 at 10:10 AM, Ben mukash <mukashh@gmail.com> wrote:
Am new to code igniter.Am tring to create the blog in one of their tutorials.
class Blog extends CI_controller{ function __construct() { parent::__construct(); $this->load->scaffolding('entries');
}
But i keep getting this
Fatal error: Call to undefined method CI_Loader::scaffolding() in C:\xampp\htdocs\blog\application\controllers\blog.php on line 8
Somebody with a solution
Regards Benard
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke
participants (2)
-
Ben mukash
-
Peter Karunyu