Salem Ouerdani

Results 17 comments of Salem Ouerdani

There is also a list of disabled functions [here](https://cloud.google.com/appengine/docs/flexible/php/runtime): ``` exec passthru proc_open proc_close shell_exec show_source symlink system ``` These needed could be whitelisted in the Yaml file within a...

@samdark check also http://hubpress.io another interesting open-source solution you may use in case if you want to build a website for the book, kind of blog posts (using [ghost](https://ghost.org/)) where...

> That's just SQL part though; I think that part works already? Niet. At least not with PostgreSQL. But this one did: ```php User::find() ->where(['@>', 'json_column', new JsonExpression(['email' => '[email protected]'])])...

bindModels receives 2 models only 1 of them is getting saved but not the second one: ``` php private function bindModels($link, $foreignModel, $primaryModel) { ... $foreignModel->save(false); } ``` which means...

Sorry but cannot understand how saving is unnecessary. the link method ([source](https://github.com/yiisoft/yii2/blob/master/framework/db/BaseActiveRecord.php#L1194)) will basically try to parse the db schema to understand what kind of relationship both models are sharing....

Nice! I guess direct usage via [@tauri-apps/plugin-sql](https://v2.tauri.app/plugin/sql/) will depend on this: https://github.com/launchbadge/sqlx/issues/2674

> That's just SQL part though; I think that part works already? Niet. At least not with PostgreSQL. But this one did: ```php User::find() ->where(['@>', 'json_column', new JsonExpression(['email' => '[email protected]'])])...