mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-26 08:05:54 +03:00
[GH-ISSUE #112] oops500! internal server error! #95
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 @sravanch on GitHub (Sep 26, 2013).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/112
hi,
After login to the Dashboard I click on Overview and now I am getting always a screen with OOPS! 500 Internal Server Error and there is something miss-configured.
@retspen commented on GitHub (Sep 27, 2013):
Change in file settings.py line:
DEBUG = False to DEBUG = True
What show ?
@sravanch commented on GitHub (Sep 27, 2013):
same issue
Oops!
500 Internal Server Error
The server encountered an internal error or misconfiguration and was
unable to complete you request.
Sravan kumar.Ch
System Support Engineer
Hostway Solutions Pvt. Ltd.
NOTICE: This email and any file transmitted are confidential
and/or legally privileged and intended only for the person(s)
directly addressed. If you are not the intended recipient,
any use, copying, transmission, distribution, or other forms
of dissemination is strictly prohibited. If you have received
this email in error, please notify the sender immediately and
permanently delete the email and files, if any.
-------- Original Message --------
*Subject: *Re: [webvirtmgr] oops500! internal server error! (#112)
*From: *Anatoliy Guskov notifications@github.com
*To: *retspen/webvirtmgr webvirtmgr@noreply.github.com
*Cc: *sravanch sravankumar.c@affinity.com
*Date: *Friday 27 September 2013 02:09:36 PM IST
@retspen commented on GitHub (Sep 27, 2013):
Need restart Apache and then try
@sravanch commented on GitHub (Sep 27, 2013):
ofter restart apachi same error.(500 oops! 500 Internal Server Error )
Sravan kumar.Ch
System Support Engineer
Hostway Solutions Pvt. Ltd.
NOTICE: This email and any file transmitted are confidential
and/or legally privileged and intended only for the person(s)
directly addressed. If you are not the intended recipient,
any use, copying, transmission, distribution, or other forms
of dissemination is strictly prohibited. If you have received
this email in error, please notify the sender immediately and
permanently delete the email and files, if any.
-------- Original Message --------
*Subject: *Re: [webvirtmgr] oops500! internal server error! (#112)
*From: *Anatoliy Guskov notifications@github.com
*To: *retspen/webvirtmgr webvirtmgr@noreply.github.com
*Cc: *sravanch sravankumar.c@affinity.com
*Date: *Friday 27 September 2013 02:47:24 PM IST
@retspen commented on GitHub (Sep 27, 2013):
Stop apache service and then in webvirtmgr directory run command:
$ ./manage.py runserver 0:8080
Open browser and put IP address and port http://x.x.x.x:8080
@sravanch commented on GitHub (Sep 27, 2013):
we follow below stpes but still same issue!(oops!500 Internal Server
ErrorThe server encountered an internal error or misconfiguration and
was unable to complete you request. )
Sravan kumar.Ch
System Support Engineer
Hostway Solutions Pvt. Ltd.
NOTICE: This email and any file transmitted are confidential
and/or legally privileged and intended only for the person(s)
directly addressed. If you are not the intended recipient,
any use, copying, transmission, distribution, or other forms
of dissemination is strictly prohibited. If you have received
this email in error, please notify the sender immediately and
permanently delete the email and files, if any.
-------- Original Message --------
*Subject: *Re: [webvirtmgr] oops500! internal server error! (#112)
*From: *Anatoliy Guskov notifications@github.com
*To: *retspen/webvirtmgr webvirtmgr@noreply.github.com
*Cc: *sravanch sravankumar.c@affinity.com
*Date: *Friday 27 September 2013 04:03:55 PM IST
@retspen commented on GitHub (Sep 27, 2013):
Show you file settings.py ?
@sravanch commented on GitHub (Sep 27, 2013):
import os
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', 'your_email@example.com'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(os.path.dirname(file), '..',
'webvirtmgr.db'),
}
}
TIME_JS_REFRESH = 2000
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
ALLOWED_HOSTS = ['*']
TIME_ZONE = 'Europe/Zaporozhye'
LANGUAGE_CODE = 'en-us'
SITE_ID = 1
USE_I18N = True
USE_L10N = True
USE_TZ = True
MEDIA_ROOT = ''
MEDIA_URL = ''
STATIC_ROOT = os.path.join(os.path.dirname(file), '..', 'static')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
SECRET_KEY = 'zsygk_)h55(c6@+&vl)$f^fflgl_h5%_4_hd^%++)*(n3tgk)e'
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
'django.template.loaders.eggs.Loader',
)
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# Uncomment the next line for simple clickjacking protection:
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'webvirtmgr.urls'
WSGI_APPLICATION = 'webvirtmgr.wsgi.application'
TEMPLATE_DIRS = (
os.path.join(os.path.dirname(file), '..', 'templates'),
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# 'django.contrib.admin',
# 'django.contrib.admindocs',
'vds',
)
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}
Sravan kumar.Ch
System Support Engineer
Hostway Solutions Pvt. Ltd.
NOTICE: This email and any file transmitted are confidential
and/or legally privileged and intended only for the person(s)
directly addressed. If you are not the intended recipient,
any use, copying, transmission, distribution, or other forms
of dissemination is strictly prohibited. If you have received
this email in error, please notify the sender immediately and
permanently delete the email and files, if any.
-------- Original Message --------
*Subject: *Re: [webvirtmgr] oops500! internal server error! (#112)
*From: *Anatoliy Guskov notifications@github.com
*To: *retspen/webvirtmgr webvirtmgr@noreply.github.com
*Cc: *sravanch sravankumar.c@affinity.com
*Date: *Friday 27 September 2013 04:37:47 PM IST
@retspen commented on GitHub (Sep 29, 2013):
What connection TCP or SSH you use?
@orelhinhas commented on GitHub (Feb 7, 2014):
give permission to your www root
chown -R www-data:www-data /var/www/webvirtmgr