core
core copied to clipboard
Fuel PHP Framework - The core of the Fuel v1 framework
If we enable automatic CSRF checking, all REST calls will fail, unless they contain a token, which is not likely. See https://github.com/fuel/core/pull/1974#issuecomment-183992069 How to implement it?
I have created and configurate a SQLite database connection and want to run the migrations. If I execute the migration with `env FUEL_ENV=test php oil refine migrate:current` I got this...
``` ``` # expected http://site/theme/default/img/image.png # get http://site/theme/D:/xampp/site/public/theme/default/img/image.png # because File: /fuel/core/classes/asset/instance.php Function: find_file() Line: 316 **return str_replace(DS, '/', $newfile);** Function: get_file() Line: 339 **strpos($file, DOCROOT) = null** instead **strpos($file,...
Cache::get throws an exception if the cache key is not found. Nonexistence is the default state of all cache keys; this behaviour appears to be contrary to the philosophy of...
I'm having a hard time with configs at the moment because of the interactions between module configs, package configs and the app configs. I'll omit all the boring details and...
In the documentation it states that you can use Log::write() to create you're own custom levels to log at. ``` php // and finally, we create a log entry with...
Do you support having the translations of the core in the core? If not, a "central" fuel package would be nice, where all the translations could be stored.
Suggest to add something like php built-in [mysqli->multi_query](http://php.net/manual/en/mysqli.multi-query.php) function. Current implementation of DB class can't to handle sql with definition mysql triggers/stored routne with delimiter change because method query() execute...
The current options with regard to debugging, profiling and error handling all leave from the premise that you have a browser to your disposal, i.e. they all display data in...
Image_Driver stores a config that is the top-level image config merged with the config array passed in. This means that `\Config::get` is never used on the actual config values themselves....