-
Notifications
You must be signed in to change notification settings - Fork 33
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
ComfyUI tab shows only blank page #184
Comments
Please modify preload.py line 3 to 8188. |
@tholonia I'm not sure I understand the situation. Does comfyui work or does it not work? I would appreciate if you could join your webui server command line logs. Let us know if using the comfyui server reverse proxy helps.
I don't recommend changing the default port to 8188 as the extension has custom loading code that could mess up any default workflow you have on a normal comfyui install. Each address+port combination can store a unique default workflow in the browser localstorage. But if that does not bother you, instead of changing the config file, you can add |
Ok, i dont know why, i can only be used if the default port is modified, otherwise it will be blank. |
That's odd. Are you using a custom comfyui install path or it's the default one at |
@ljleb I use default install path webWhen i set config of proxypreloaddef preload(parser):
parser.add_argument("--comfyui-listen", type=str, default='127.0.0.1', nargs='?', const='0.0.0.0')
parser.add_argument("--comfyui-port", type=int, default=8189)
parser.add_argument("--comfyui-dont-upcast-attention", action='store_true', default=None)
parser.add_argument("--comfyui-use-split-cross-attention", action='store_true', default=None)
parser.add_argument("--comfyui-use-pytorch-cross-attention", action='store_true', default=None)
parser.add_argument("--comfyui-disable-xformers", action='store_true', default=None)
parser.add_argument("--comfyui-highvram", action='store_true', default=None)
parser.add_argument("--comfyui-normalvram", action='store_true', default=None)
parser.add_argument("--comfyui-lowvram", action='store_true', default=None)
parser.add_argument("--comfyui-novram", action='store_true', default=None)
parser.add_argument("--comfyui-cpu", action='store_true', default=None)
parser.add_argument("--webui-comfyui-client-address", type=str, default=None) otherI can visit it from logWhen i set
|
Thanks a lot, this is useful. Would it be possible to include the full webui logs? the extension prints a lot of information, so if anything is missing we know it stopped working at a certain point. Can you also check what the address the iframes is using f12 in the browser? Maybe they just have the wrong port... |
start log
|
I start with
|
In start log, the error of |
Already from the logs I can see that
should start comfyui on port 8189, but then we see that comfyui still starts on port 8188:
So the problem can be many things still, even though we narrowed it down. You said that you comfyui install was up to date, correct? I assume something else is going on, but make sure to verify this. I would be very surprised if this was not the case, as I will investigate tomorrow. |
Another notable discepancy is that even though the webui is started with Off the top of my head, one possible cause is that the extension is not up to date. |
My version id is |
This is not the commit hash of Your version of the extension will not work with the latest version of comfyui, the cli args module was fixed one commit later in fact. |
Very thank you, everything worked fine after I updated to the latest version. |
@tholonia I'm not totally sure this was related to your issue. Please let us know if any part of this discussion helps with the problem you are encountering, or if we need to look somewhere else. In the latter case, please share with us any webui server logs with a problematic behaviour so that I can help resolve this. |
@OtakuFra which version of comfyui and the sd-webui-comfyui extension are you using? Please share the commit hash of the repositories you are using. In case you don't know, you can get this information by opening a terminal in the directory of the extension (under extensions\sd-webui-comfyui) and then typing git rev-parse HEAD Then, go to the directory where your ComfyUI is installed (either extensions\sd-webui-comfyui\ComfyUI or your custom location otherwise) and type the same command as above, If you recognize that either the extension or comfyui is not up to date, please update them to the latest version and let us know if the problem (or part thereof) is resolved. If you know that you are on the latest versions, well it's certainly odd that |
CopmfyUI runs fine in A1111 on http://0.0.0.0:7860/, so I can confirm it's working, but the ComfyUI tab just shows a blank, black page. The browser console only reports a 404 for openpose_editor.js, which I assume I unrelated. In any case, I can "Go to the ComfyUI tab, and follow the instructions:"
A1111 version: v1.6.0-127-g102b6617 • python: 3.10.13 • torch: 2.0.1+cu118 • xformers: 0.0.20 • gradio: 3.41.2
The text was updated successfully, but these errors were encountered: