retspen / webvirtcloud

WebVirtCloud is virtualization web interface for admins and users
1.63k stars 362 forks source link

500 Internal server error #507

Open lmsdscav opened 2 years ago

lmsdscav commented 2 years ago

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 2 years ago

Screenshot_20220626-165515381

catborise commented 2 years ago

if you update it lately. you should run python manage.py makemigrations; python manage.py migrate commands

pysiek634 commented 1 year ago

I have the same problem on clean ubuntu 20.04 installation.

pysiek634 commented 1 year ago

Debug=true shows missing instances_instance.drbd column in sqlite database. After fresh installation! python3 manage.py migrate was usefull for me.

gilbertoferreira commented 1 year ago

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 1 year ago

SOLVED 134 pip install django-bootstrap5 135 python3 manage.py migrate 136 pip install django-icons 137 python3 manage.py migrate

catborise commented 1 year ago

@gilbertoferreira you should install requirements with pip3 install -r conf/requirements.txt .

gilbertoferreira commented 1 year ago

@gilbertoferreira you should install requirements with pip3 install -r conf/requirements.txt .

Yes! I do that following the installation instructions. But nevertheless after install it give the 500 error! Just solved after do the above