-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
The home page keeps loading #6780
Comments
Same problem, how to solve it? |
Solution: |
@ltdrdata yeap, it can make new folder, such as parent is |
…not exist in the user directory. The `file` argument of the `get_request_user_filepath` method is always assumed to be a file, leading to checking the parent directory when creating a directory. However, it is necessary to distinguish whether the target path is a file or a directory and create the path accordingly. comfyanonymous#6780 (comment)
…t exist in the user directory. The `file` argument of the `get_request_user_filepath` method is always assumed to be a file, leading to checking the parent directory when creating a directory. However, it is necessary to distinguish whether the target path is a file or a directory and create the path accordingly. comfyanonymous#6780
This PR will patch this issue. |
Expected Behavior
Open the home page of comfyui
Actual Behavior
Always loading
Steps to Reproduce
ComfyUI-0.3.14 ,
Python 3.12.0 | packaged by Anaconda, Inc. | (main, Oct 2 2023, 17:29:18) [GCC 11.2.0] on linux
run command:
CUDA_VISIBLE_DEVICES=2 python main.py --listen 0.0.0.0 --port 8765 --enable-cors-header '*' --verbose DEBUG --log-stdout --disable-all-custom-nodes
A layer of domain forwarding is added in the middle, causing the access home page to load all the time.
Reason:
app/user_manager.py#L170
return 404 code .Solution:
$ mkdir user/default/workflows
. It is recommended that you create this folder automatically.Debug Logs
Other
No response
The text was updated successfully, but these errors were encountered: