Akram El Assas
Akram El Assas
Did you put `Wexflow.Tasks.MyTask.dll` in `/opt/wexflow/Wexflow.Server` and restart the server `sudo systemctl restart wexflow`? Does `Wexflow.Tasks.MyTask.dll` have external referenced assemblies? Can you show me the log error in `/opt/wexflow/Wexflow.Server/Wexflow.log` when...
Here is the error: `System.BadImageFormatException: Could not load file or assembly 'Wexflow.Tasks.MyTask, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Reference assemblies cannot be loaded for execution. (0x80131058)` Wexflow.Tasks.MyTask should target .net 8.0 and compile...
It seems to be related to a wrong setting value of your custom task. What are the settings of your custom task? Show me your custom workflow in xml.
Can't see any xml. Copy/paste your xml and click preview to ensure your xml is visible.
You need to set a value for `selectFiles` setting: ``` ``` What is the type of settingName setting?
@dualdetail I have tried with the following config before submiting this issue but got the same error: ```ts import type { NextConfig } from 'next' const nextConfig: NextConfig = {...
@dualdetail After playing with turbo config, I found a workaround: ```js const nextConfig = { experimental: { turbo: { root: '..', resolveAlias: { ':package1': '../packages/package1', ':package2': '../packages/package2', }, }, },...
You forgot to add your database name after `mongodb.net/` in your connection string: ``` MI_DB_URI="mongodb+srv://admin:[email protected]/movinin?retryWrites=true&w=majority&appName=MoveAws" ``` Make sure your smtp server is working so you can sign up: ``` MI_SMTP_HOST=smtp-relay.brevo.com...
Open your browser console (F12) and show me the error you get when you try to sign up.
@wurkado Did you fix your issue?