core icon indicating copy to clipboard operation
core copied to clipboard

Fuel PHP Framework - The core of the Fuel v1 framework

Results 46 core issues
Sort by recently updated
recently updated
newest added

I've already added this functionality by adding the following method to Database_Query_Builder_Select class ``` public function calc_found_rows($value = true) { $this->_calc_found_rows = (bool) $value; return $this; } ``` It's pretty...

Awaiting feedback

Remove all migrations and start again, equivalent of doing loads of :downs and then running it back up again.

Feature
Address in 2.0

**Issue** When using the PDO ODBC driver, which [does not implement **PDO::quote**](http://php.net/manual/en/pdo.quote.php), SQL syntax errors occur. **Reproduce** Connect to MySQL using the PDO ODBC driver: ``` 'default' => array( 'type'...

Bug
Awaiting feedback
Pending

`migrate --all` is a useful feature. We're creating a system that can be installed a bit like Wordpress, where it runs migrations and sets up configs if it determines itself...

Feature
Address in 2.0

File Cache deletes all the subdirectory while APC Cache does not. Eg: if you call Cache::delete_all( 'cache/users' ), the file version will delete 'cache/users/0' and ''cache/users/1' Not the apc version

Bug
Pending
Address in 2.0

https://github.com/fuel/core/blob/1.9/develop/classes/database/query/builder/update.php Hello, maybe it could be interesting to add: protected $_where; protected $_execute; as_object, order_by... => Undefined method 'where'. Not to have error with Intelephense for a better debug for...