mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-26 07:55:52 +03:00
[GH-ISSUE #507] 500 Internal server error #306
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#306
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lmsdscav on GitHub (Jun 26, 2022).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/507
it says 500 error if i opened user configuration.
and it will also be 500 if i connected ssh and opened "Instances" tab.
How can i fix it?:(
![Uploading Screenshot_20220626-165515381.png…]()
@lmsdscav commented on GitHub (Jun 26, 2022):
@catborise commented on GitHub (Jun 27, 2022):
if you update it lately. you should run
python manage.py makemigrations; python manage.py migratecommands@pysiek634 commented on GitHub (Jul 11, 2022):
I have the same problem on clean ubuntu 20.04 installation.
@pysiek634 commented on GitHub (Jul 11, 2022):
Debug=true shows missing instances_instance.drbd column in sqlite database.
After fresh installation!
python3 manage.py migrate
was usefull for me.
@gilbertoferreira commented on GitHub (Jul 21, 2022):
srv1:/srv/webvirtcloud# python3 manage.py migrate
Traceback (most recent call last):
File "/srv/webvirtcloud/manage.py", line 21, in
main()
File "/srv/webvirtcloud/manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/usr/lib/python3/dist-packages/django/core/management/init.py", line 381, in execute_from_command_line
utility.execute()
File "/usr/lib/python3/dist-packages/django/core/management/init.py", line 357, in execute
django.setup()
File "/usr/lib/python3/dist-packages/django/init.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File "/usr/lib/python3/dist-packages/django/apps/registry.py", line 91, in populate
app_config = AppConfig.create(entry)
File "/usr/lib/python3/dist-packages/django/apps/config.py", line 90, in create
module = import_module(entry)
File "/usr/lib/python3.9/importlib/init.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 1030, in _gcd_import
File "", line 1007, in _find_and_load
File "", line 984, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'django_bootstrap5'
Debian 11
@gilbertoferreira commented on GitHub (Jul 21, 2022):
SOLVED
134 pip install django-bootstrap5
135 python3 manage.py migrate
136 pip install django-icons
137 python3 manage.py migrate
@catborise commented on GitHub (Jul 22, 2022):
@gilbertoferreira you should install requirements with
pip3 install -r conf/requirements.txt.@gilbertoferreira commented on GitHub (Jul 22, 2022):
Yes! I do that following the installation instructions. But nevertheless after install it give the 500 error! Just solved after do the above