-
Notifications
You must be signed in to change notification settings - Fork 308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Extension Path is not in the subpath of WebUI Path #136
Comments
This is similar to the underlying issues in #78, #132 and #134. TL;DR: |
@CriticalSteffen Good news, if still needed: You will need to add the A word of caution if you share the webui on your local network or even as a public server: |
In the
webui-user.sh
script, I have configured the--data-dir
option to store extensions, models, etc. on a separate drive. Unfortunately, whentag_autocomplete_helper.py
attempts to locate necessary files, it does so viaPath().absolute()
on line 10 of the tagcomplete Python script. Instead of returning the path of the extension's script, this returns the path of the stable-diffusion-webui/launch.py script, which results in the script attempting to load tags from a folder that doesn't exist:This breaks the extension.
I'm unaware of any current workaround.
The text was updated successfully, but these errors were encountered: