Christoph Kappestein
Christoph Kappestein
I think we could generate a unique project key on installation. Laravel does this also automatically on installation through a `post-create-project-cmd` composer hook. We could also do this in the...
So, we automatically generate a new key if you install Fusio through the `install.php`, if you only use the CLI you need to manually change the project key. I think...
Hi, so in general you can use the normal PHP functions to handle file uploads i.e. ```php move_uploaded_file($body->get('my_file')->tmp_name, '/my/target.tmp') ``` but in the sandbox action you are restricted to specific...
@LaserStony yes this is true, so maybe we dont need such a feature in Fusio. The advantage of building this inside Fusio would be, that we would could use this...
Hi Ratsey, yes we use the affected rows return to determine whether a record was updated, so we dont need to make an separate query to check whether the row...
Hi, ok, you could try to add the following rewrite rule directly at your vhost config: ``` RewriteEngine On RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] ``` This rule is...
Ok, this is probably a problem because we have just released version 2.0 of Fusio and with this the backend app has changed. The problem is that on installation we...
Yes, this is an issue regarding the installer which adjusts the .env file in a wrong way s. https://github.com/apioo/fusio/issues/365 Please check also the current https://github.com/apioo/fusio/blob/master/public/install.php whether this fixes the problem,...
yes, so this is currently a problem, that the Fusio marketplace does not consider the current version of Fusio s. https://github.com/apioo/fusio/issues/364 So we need to define in every app which...
yes this would be a valid workaround. There is currently no way to manually select a specific version since you always get the latest version. But we want to create...