CodeIgniter Forums
CodeIgniter 1.6.0 "beta" - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: CodeIgniter 1.6.0 "beta" (/showthread.php?tid=5305)

Pages: 1 2 3 4 5 6 7 8 9


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]ken@CodeIgniter Users Group in Japan[/eluser]
Hi, Derek

Does Scaffolding evolve to Heavy Metal CRUD like Symfony,CakePHP?

Use command lines?

Thanks


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]ianchov[/eluser]
Great news for the beta release.

Keep up the good work

codeigniter is great.


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]mglinski[/eluser]
iv been using Ci for about 2 months now and i dont know how i got along without it before.
In converting from my old code i found one thing lacking overall, JSON encoding.
I have made a feature request about this and i want to know if it will be included in 1.6 by default.
Thanks
-Matt


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]Derek Jones[/eluser]
[quote author="XtraFile" date="1201234114"]iv been using Ci for about 2 months now and i dont know how i got along without it before.
In converting from my old code i found one thing lacking overall, JSON encoding.
I have made a feature request about this and i want to know if it will be included in 1.6 by default.
Thanks
-Matt[/quote]

It's my understanding that performance of JSON processing with traditional PHP implementations where the JSON extension is not available is less than stellar, so I don't foresee this making it into the application. If you're using PHP 5.2+ then the JSON PHP extension is enabled by default, otherwise you can compile the extension into your PHP installation to add native support.


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]mglinski[/eluser]
My projects require backwards compatibility for php4(as i develop OS projects too) so the JSON extension is not a solution for me. I have patched in JSON support for my projects using the Zend Framework's code and it seems to be pretty snappy. Im looking at smaller versions now,, and at the pear proposal.
-Matt


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]Derek Jones[/eluser]
The extension only requires PHP 4.3, so backwards compatibility likely isn't an issue, though if you cannot control the server environment it certainly is. I'll take a look at the PEAR implementation though when I have some time, as it's not a topic that I have exhaustively researched.


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]Majd Taby[/eluser]
not to be cynical or anything, but why is this 1.6? it seems the new version is full of small evolutionary additions and bug fixes. Unless i'm missing something, I don't see the reason for the big version jump.

Unless a lot of work has been done on the core, then i can see 1.6 as the growndwork for the future versions.


CodeIgniter 1.6.0 "beta" - El Forum - 01-24-2008

[eluser]mglinski[/eluser]
Im rewriting thee download helper into a library, to make it RFC2616(http 1.1) conforming. This includes range requests and partial downloads plus some extras like speed throttling. If you want the code when im done i will post it here. I need to do it anyway so if I can share with everyone even better.
-Matt


CodeIgniter 1.6.0 "beta" - El Forum - 01-26-2008

[eluser]zdknudsen[/eluser]
Could you consider moving logs into the application folder? I always found it awkward having logs in the system folder. And perhaps having a look at this: http://codeigniter.com/bug_tracker/bug/3031/


CodeIgniter 1.6.0 "beta" - El Forum - 01-26-2008

[eluser]wiredesignz[/eluser]
From application/config.php

Code:
|--------------------------------------------------------------------------
| Error Logging Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| system/logs/ folder.  Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';