CodeIgniter's Scaffolding not working

Posted by 01010011 on Server Fault See other posts from Server Fault or by 01010011
Published on 2010-03-28T01:22:46Z Indexed on 2010/03/28 1:33 UTC
Read the original article Hit count: 329

Filed under:

Hi, I keep getting a 404 Page Not Found whenever I try to access CodeIgniter's Scaffolding page in my browser, like so: localhost/codeignitor/index.php/blog/scaffolding/mysecretword

I can access localhost/codeignitor/index.php/blog just fine. I followed CodeIgnitor's instructions in their "Create a blog in 20 minutes" by storing my database settings in the database.php file; and automatically connecting to the database by inserting "database" in the core array of the autoload.php; and I've added both parent::Controller(); and $this->load->scaffolding('myTableName') to blog's constructor. It still gives me this 404.

Any suggestions?

© Server Fault or respective owner

Related posts about codeigniter