Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-09 | Bulk (mostly documentation) update | Andrey Andreev | 1 | -3/+3 | |
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450 | |||||
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-10-06 | E_DEPRECATED is not available in PHP 5.2 | Andrey Andreev | 1 | -1/+8 | |
2014-03-13 | Partially revert PR #2190 | Andrey Andreev | 1 | -4/+4 | |
The core shouldn't depend on constants that are not defined by itself | |||||
2014-02-11 | 2013 > 2014 | darwinel | 1 | -1/+1 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2013-10-14 | Fix #2682 | Andrey Andreev | 1 | -7/+7 | |
2013-08-06 | Various typos and tabs adjustments | vlakoff | 1 | -1/+1 | |
2013-07-22 | Change class filenames to Ucfirst | Andrey Andreev | 1 | -1/+1 | |
2013-07-21 | Fix too verbose error logging on default production environment | vlakoff | 1 | -1/+1 | |
issue was present on PHP < 5.4 | |||||
2013-03-29 | index.php: minor improvement in VIEWPATH definition code | vlakoff | 1 | -1/+1 | |
Fixes an oversight from 806ca600d3669343ee7ae90a9b5d65be9dfdbefe | |||||
2013-03-04 | Updated in accordance with feedback from @narfbg | Daniel Hunsaker | 1 | -1/+1 | |
- Removed commented lists of constants from the three reference conventions, replacing each with the URLs at which more information can be found. - Renamed a few constants to more closely reflect CodeIgniter conventions. - Modified a couple of lines which were in violation of the CI Style Guide. Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com> | |||||
2013-02-23 | Updated exit codes as constant values | Daniel Hunsaker | 1 | -4/+8 | |
Re-allocated exit status codes according to three references, which follow: BSD sysexits.h:http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits GNU recomendations:http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html Bash scripting:http://tldp.org/LDP/abs/html/exitcodes.html The GNU recommendations stem from and expand upon the standard C/C++ library (stdlibc) definitions, while also suggesting some best-practice conventions which happen to prevent exit status code collisions with bash, and probably other shells. The re-allocated codes are now mapped to constant values, set in *application/config/constants.php*, and used throughout the CodeIgniter core. They would additionally be used in *index.php*, but the constants file hasn't been loaded at that point, so the integer values are used instead, and a comment follows each such use with amplifying information on why that particular value was selected. Finally, the errors documentation has been updated accordingly. Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com> | |||||
2013-01-03 | fix a typo in index.php | Adam Carmichael | 1 | -1/+1 | |
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 1 | -1/+1 | |
2012-11-21 | Change fs permissions and add some missing index.html files (#2017) | Andrey Andreev | 1 | -0/+0 | |
2012-07-15 | Fix in index.php inline documentation | vlakoff | 1 | -1/+1 | |
$routing['controller'] has to respect the capitalization of the filename, which is in lowercase. Otherwise, the application fails on case-sensitive servers. | |||||
2012-07-13 | Some adjustments in inline documentation | vlakoff | 1 | -1/+1 | |
2012-07-10 | Follow-up to #1398, #1548 | Andrey Andreev | 1 | -0/+1 | |
2012-07-10 | Merge pull request #1398 from gintsmurans/develop | Andrey Andreev | 1 | -14/+15 | |
Change error_reporting(0) to ini_set('display_errors', 0); | |||||
2012-06-12 | Fix APPPATH | Andrey Andreev | 1 | -2/+2 | |
2012-06-12 | Some more index.php improvements | Andrey Andreev | 1 | -7/+8 | |
2012-06-12 | Changed APPPATH, BASEPATH and VIEWPATH to be absolute paths (fixes issue ↵ | Andrey Andreev | 1 | -15/+31 | |
#1321) and removed EXT constant | |||||
2012-06-03 | Added support for $_SERVER['CI_ENV'] in index.php | Phil Sturgeon | 1 | -1/+1 | |
Remember this is entirely optional, nothing will change if you do not which to use Multiple Environments just like right now. If you DO set CI_ENV you can manipulate the switch that controls error reporting, etc, so set it to "production" on your live site to hide errors from users. If you don't require this logic you can remove it, or change it entirely to check HTTP_HOST for environment subdomains, or check IP address, etc. | |||||
2012-05-30 | E_ALL -> -1 | Gints Murans | 1 | -1/+1 | |
2012-05-28 | Changed to show all the errors on dev | Root | 1 | -4/+2 | |
2012-05-26 | Changed instead of turning off of the error messaging to hide them | Root | 1 | -13/+16 | |
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 1 | -1/+1 | |
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway... | |||||
2012-02-05 | Adding in a few 503 status codes for common errors in response to this ↵ | Kevin Cupp | 1 | -0/+2 | |
ExpressionEngine bug about errors getting cached by reverse proxies who cache 200 responses: http://expressionengine.com/bug_tracker/bug/17420 | |||||
2012-01-08 | Clear some spaces from index.php | Andrey Andreev | 1 | -34/+23 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 1 | -0/+25 | |
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change | |||||
2011-08-21 | Ability to move the view folder out of the Application directory | Joe Cianflone | 1 | -0/+33 | |
* index.php -- added the $view_folder var and VIEWPATH constant * Loader.php -- changed the private _ci_view_paths var so that it's not hardcoded to the view dir, but looks for the VIEWPATH constant instead | |||||
2011-08-21 | Changed error reporting level to -1, which will show ALL PHP errors. This ↵ | Dan Horrigan | 1 | -1/+1 | |
will future-proof the solution. Thanks @ericbarnes for pointing that out. | |||||
2011-08-21 | Changed the 'development' environment default error reporting to included ↵ | Dan Horrigan | 1 | -1/+1 | |
E_STRICT errors. E_ALL does not include these errors. | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -15/+15 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -15/+15 | |
2011-04-20 | Fix #224 Error in primary index.php $routing instructions | Greg Aker | 1 | -1/+1 | |
2011-04-19 | Removing internal references to the EXT constant. Additionally, marked the ↵ | Greg Aker | 1 | -1/+2 | |
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3. | |||||
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 1 | -0/+3 | |
stop environment checks. | |||||
2011-02-07 | CLI requests can now be run from any folder, not just when CD'ed next to ↵ | Phil Sturgeon | 1 | -0/+7 | |
index.php. | |||||
2011-02-02 | Merged recent changes and tweaked multi-env changes. | Phil Sturgeon | 1 | -25/+34 | |
2011-01-16 | Set error_reporting to E_ALL when environment unknown and changed CI_Loader ↵ | joelcox | 1 | -0/+1 | |
to load environment configs first. | |||||
2011-01-16 | Removed default error_reporting and set it depending on environment | joelcox | 1 | -16/+22 | |
2011-01-15 | Split basic configuration in three environments, providing fallback to global | joelcox | 1 | -0/+12 | |
2010-10-07 | Automated merge with https://bitbucket.org/barrymieny/codeigniter | Derek Jones | 1 | -1/+1 | |
2010-10-06 | added suggested value to index.php for error_reporting() when a site goes ↵ | Derek Jones | 1 | -1/+1 | |
live, closes #177 | |||||
2010-10-04 | Cleanup of stray spaces and tabs | Barry Mieny | 1 | -21/+21 | |
2010-04-08 | Update to realpath() check of SYSDIR in index.php | Greg Aker | 1 | -1/+1 | |
2010-04-08 | Fix #15 - Strict Standards Error in index.php | Greg Aker | 1 | -1/+1 | |
2010-03-22 | fixed spelling in code comment | Derek Jones | 1 | -1/+1 | |