Marcus
Marcus
In my model I add $foreign_keys for categories ```php class Events_model extends Base_posts_model { public $foreign_keys = array( 'category_id' => array( FUEL_FOLDER => 'my_fuel_categories_model', 'where' => ['context' => 'events'] )...
If `$config['composer_autoload'] = TRUE;` expects `autoload.php` in `application/vendor/`, why is composer.json outside of said /application folder? Now I have to set `$config['composer_autoload'] = APPPATH. '/../vendor/autoload.php';` explicitly.
I couldn't filter unicode strings in the backend. Maybe it's better to use `mb_strtolower()` instead to the non multi bye version `app\fuel\modules\fuel\models\Base_module_model.php:455` ```php array_push($$joiner_arr, 'LOWER('.$key.') LIKE \'%'.mb_strtolower($val).'%\''); ```
Hi, thanks for this boilerplate code. I encountered a problem with registering as a new user. 0. I setup the Database in manually with importing the create.sql 1. On register...
You now need a free API key (limited to 10000 queries/month) 🔗 https://github.com/apilayer/freegeoip/ EDIT: this is not an easy replacement for freegeoip.com since there free plan requires to add the...
The search for partial strings in assets doesn't work as expected, since FULLTEXT treats filenames with underscores or hyphens as one word. Therefore, it matches the beginning of a string...
I needed something like the expression tree in math.js (https://mathjs.org/docs/expressions/expression_trees.html) to extract all variables from an expression. Like: ```php $formula = '(a+b)*c'; $variables = magic($formula); print_r($variables); // ['a','b','c'] ``` Unfortunately,...
Users are pasting preformatted text from Word and other sources and this always comes with a lot of baggage as we know (mostly inline style attributes, but also useless ``...
jQuery Slim comes without animation effects and as far as I can tell, this plugin relies on them. Here is a non working example https://codepen.io/localhorst/pen/JjoNRxx Obligatory question: Any chance this...