guys, heads up! scaffolding is deprecated in version 1.6
http://dev.ellislab.com/svn/CodeIgniter/trunk/user_guide/changelog.html
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
November 23, 2007 9:27pm
Subscribe [9]#16 / Jan 21, 2008 9:46pm
guys, heads up! scaffolding is deprecated in version 1.6
http://dev.ellislab.com/svn/CodeIgniter/trunk/user_guide/changelog.html
#17 / Nov 19, 2010 1:55am
Hello All,
I am MCA Fresher And i am currently working in code igniter. I am very thankfull to whoever post the sample code and proper guideance for scaffolding but i have one problem while i implement that in my project it gives me warninig like
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /opt/lampp/htdocs/demo/system/application/controllers/demo.php:37)
Filename: helpers/url_helper.php
Line Number: 541
So please suggest me any solution if u have for this….
Once again
Thanks to all….
#18 / Nov 19, 2010 10:17am
guys, heads up! scaffolding is deprecated in version 1.6
http://dev.ellislab.com/svn/CodeIgniter/trunk/user_guide/changelog.html
hi Sanju..South, welcome to CI.
thank you for posting, but (as you can see from this quote from early 2008) this thread is pretty much not alive anymore. you will get a better response if you create a new thread.
also, i’m absolutely sure that nobody in this forum wants to help you with a feature that has been deprecated for 2 1/2 years and is now completely removed from CI.
my advice is to not use scaffolding.
good luck.
#19 / Jan 05, 2011 12:27am
Hi all,
i noticed that appending an extra parameter to the END of the uri leaves automatic scaffolding routing intact and working, like so:
http://www.yourhost.com/controller/secret_word/[parameter]
You can than retrieve it and load scaffolding accordingly:
$total = $this->uri->total_segments();
switch ($this->uri->segment($total))
{
$this->load->scaffolding('your_custom_table_name');
}Now, it would be cool to modify class behaviour without messing with Scaffolding.php, i took a look and the uri part doesn’t seem so complex.
#20 / Jan 07, 2011 10:37pm
Thank you ~!! Your share