Ho guys, I'm new to django framework. According to Instructions in the djangoproject.com I did all the things and everything was pretty good but when I tried to open my django project in browser by "python manage.py runserver", I got some errors. The page error is : A server error occurred. Please contact the administrator.
Also Here Is the command prompt errors given : """C:\Users\Javad\Desktop\havij>python manage.py runserver Performing system checks... System check identified no issues (0 silenced). April 24, 2015 - 21:34:56 Django version 1.8, using settings 'havij.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CTRL-BREAK. Traceback (most recent call last): File "C:\Python34\lib\site-packages\django\utils\module_loading.py", line 21, in import_string module_path, class_name = dotted_path.rsplit('.', 1) ValueError: need more than 1 value to unpack During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Python34\lib\wsgiref\handlers.py", line 137, in run self.result = application(self.environ, self.start_response) File "C:\Python34\lib\site-packages\django\contrib\staticfiles\handlers.py", l ine 63, in __call__ return self.application(environ, start_response) File "C:\Python34\lib\site-packages\django\core\handlers\wsgi.py", line 170, i n __call__ self.load_middleware() File "C:\Python34\lib\site-packages\django\core\handlers\base.py", line 50, in load_middleware mw_class = import_string(middleware_path) File "C:\Python34\lib\site-packages\django\utils\module_loading.py", line 24, in import_string six.reraise(ImportError, ImportError(msg), sys.exc_info()[2]) File "C:\Python34\lib\site-packages\django\utils\six.py", line 658, in reraise raise value.with_traceback(tb) File "C:\Python34\lib\site-packages\django\utils\module_loading.py", line 21, in import_string module_path, class_name = dotted_path.rsplit('.', 1) ImportError: polls doesn't look like a module path [24/Apr/2015 21:35:04]"GET / HTTP/1.1" 500 59 Traceback (most recent call last): File "C:\Python34\lib\site-packages\django\utils\module_loading.py", line 21, in import_string module_path, class_name = dotted_path.rsplit('.', 1) ValueError: need more than 1 value to unpack During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Python34\lib\wsgiref\handlers.py", line 137, in run self.result = application(self.environ, self.start_response) File "C:\Python34\lib\site-packages\django\contrib\staticfiles\handlers.py", l ine 63, in __call__ return self.application(environ, start_response) File "C:\Python34\lib\site-packages\django\core\handlers\wsgi.py", line 170, i n __call__ self.load_middleware() File "C:\Python34\lib\site-packages\django\core\handlers\base.py", line 50, in load_middleware mw_class = import_string(middleware_path) File "C:\Python34\lib\site-packages\django\utils\module_loading.py", line 24, in import_string six.reraise(ImportError, ImportError(msg), sys.exc_info()[2]) File "C:\Python34\lib\site-packages\django\utils\six.py", line 658, in reraise raise value.with_traceback(tb) File "C:\Python34\lib\site-packages\django\utils\module_loading.py", line 21, in import_string module_path, class_name = dotted_path.rsplit('.', 1) ImportError: polls doesn't look like a module path [24/Apr/2015 21:35:06]"GET / HTTP/1.1" 500 59""" Please help me :|, I really need your help guys. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d14d2fde-f022-4234-b4f7-9decc0748a1f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

