window7 32位安装环境,所有的软件都用32位的,如果你想要用64位的软件需要操作系统和下面的相关软件都换成64位,我是在虚拟机上装了win7 32版做的测试。

软件下载地址:

python2.7:http://pcr1.pc6.com/rm/python2.7.zip

Django:https://www.djangoproject.com/m/releases/1.8/Django-1.8.18.tar.gz

apache_2.2.25:http://101.199.121.251/softdl.360tpcdn.com/apache/apache_2.2.25.msi ;Apache官方网站:http://httpd.apache.org/;https://www.apachehaus.com/cgi-bin/download.plx#APACHE24VC09

ez_setup.py:   https://bootstrap.pypa.io/ez_setup.py

mod_wsigi:https://pypi.python.org/pypi/mod_wsgi;http://vdisk.weibo.com/s/GeQH5GZK8ra9;http://download.csdn.net/download/copter/9192361;https://github.com/GrahamDumpleton/mod_wsgi/

mod_wsgi编译过程唯一突出(或者坑人)的地方就是版本匹配。VC编译器、Python环境、Apache环境的版本要匹配

vistudo studio code:https://code.visualstudio.com/Download  如果要下载32位的,点下面的32位链接。64位是无法装在win7 32位上的。

安装顺序:

1、python2.7:注意,为了下一步在dos下使用python命令,这里要配置一下环境变量。右击计算机->属性->高级->环境变量->修改系统变量path,添加Python安装地址

2、ez_setup.py:

系统是Win7  ,已安装Python,在安装Django的时候遇到以下错误信息:ImportError: No module named setuptools

因为Windows环境下Python默认是没有安装setuptools这个模块的,这也是一个第三方模块

打开这个链接: ez_setup.py 用浏览器另存,然后点击运行就好了,so easy!或者命令行cmd下,进入路径,python      ez_setup.py 就可以 安装上setuptools

3、Django下载后为压缩包,解压缩跟Python放在同一个根目录,在dos下进入到Django目录,执行python setup.py install,然后开始安装,Django将要被安装到Python的Lib下site-packages。安装后进入cmd,python 然后import django ,成功则不会报错,可以检查版本django.VERSION

配置环境变量django-admin.py,否则在cmd下无法识别django-admin.py startproject deskphoto命令,创建deskphoto目录和项目

我的路径在:C:\Python27\Lib\site-packages\Django-1.8.18-py2.7.egg\django\bin

如果命令还不识别,第二步你打开.py后缀的文件的默认工具不是python.exe,如果不是的话,那么就会造成不出现对应的工程。选择一个.py的文件设置打开是用python打开

具体排错教程:http://www.cnblogs.com/dadong616/p/4328292.html

4、安装apache,主要是配置httpd.conf

5、安装配置mod_wsgi

查看项目中的wsgi.py 文件会有配置说明链接,全英文,比如django1.8的说明文件链接https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/modwsgi/

apache的配制文件httpd.conf:
#添加mod_wsgi.so 模块
LoadModule wsgi_module modules/mod_wsgi.so  #这里是个坑,没有下载的文件没有改名,没有加后缀.so
#指定myweb项目的wsgi.py配置文件路径
WSGIScriptAlias / D:/pydj/myweb/myweb/wsgi.py
#指定项目路径
WSGIPythonPath D:/pydj/myweb
我的配置文件如下:

WSGIScriptAlias / "C:/django/deskphoto/deskphoto/wsgi.py"
WSGIPythonPath "C:/django/deskphoto"

<Directory "C:/django/deskphoto/deskphoto">
<Files wsgi.py>
Order allow,deny
Allow from all
</Files>
</Directory>

Alias /static/ "C:/django/deskphoto/deskphoto/static/"

<Directory "C:/django/deskphoto/deskphoto/static">
Order deny,allow
Allow from all
</Directory>


如果是apache2.4,上面的加粗部分用下面的替换

<Directory D:/pydj/myweb/myweb>
<Files wsgi.py>Require all granted
</Files>
</Directory>

6、修改settings.py 文件

DEBUG = False

ALLOWED_HOSTS = ['*']

7、修改deskphoto项目的url.py ,加入项目首页的路径,否则会出现错误

url(r'^$', include(admin.site.urls)),

这样访问首页就可以。

我之前没有修改,出现了“Not Found,The requested URL / was not found on this server.”的错误,调了半天配置,最后修改了url.py访问正常。

8、测试启动django 在cmd命令行中运行django服务python manage.py runserver 0.0.0.0:8000   或者  python manage.py runserver可以测试网站是否可以用python django自带的系统启动成功,浏览器输入127.0.0.1:8000访问看看是否正常。

修改windows\system32\drivers\etc\host文件,加入一个127.0.0.1  域名.com 比如abc.com就可以在本机浏览器中用abc.com来访问网站了。
遇到很多坑,可以看apache的日志,一步步调试。

-------------------------亲自一步步操作,实测成功,并写下本博文,欢迎打赏。-------------------------------

看了无数文档,遇到无数坑,几乎要放弃了,最后调试成功。为后来者提前趟雷了,下次再试试xampp。遇到的错误日志如下:

httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 13:12:16 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Aug 25 13:12:16 2017] [notice] Apache/2.2.25 (Win32) configured -- resuming normal operations
[Fri Aug 25 13:12:16 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 13:12:16 2017] [notice] Parent: Created child process 6084
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 13:12:16 2017] [notice] Child 6084: Child process is running
[Fri Aug 25 13:12:16 2017] [notice] Child 6084: Acquired the start mutex.
[Fri Aug 25 13:12:16 2017] [notice] Child 6084: Starting 64 worker threads.
[Fri Aug 25 13:12:16 2017] [notice] Child 6084: Starting thread to listen on port 80.
[Fri Aug 25 13:12:30 2017] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico
[Fri Aug 25 13:12:31 2017] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico
[Fri Aug 25 13:12:31 2017] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico
[Fri Aug 25 13:12:36 2017] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico, referer: http://127.0.0.1/
[Fri Aug 25 14:25:52 2017] [notice] Parent: Received restart signal -- Restarting the server.
httpd.exe: Syntax error on line 62 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf: Cannot load C:/Program Files/Apache Software Foundation/Apache2.2/modules/mod_wsgi-win32-ap22py27-3.3 into server: \xd5\xd2\xb2\xbb\xb5\xbd\xd6\xb8\xb6\xa8\xb5\xc4\xc4\xa3\xbf\xe9\xa1\xa3
[Fri Aug 25 14:25:52 2017] [notice] Child 6084: Exit event signaled. Child process is ending.
[Fri Aug 25 14:25:52 2017] [warn] (OS 995)由于线程退出或应用程序请求,已中止 I/O 操作。 : winnt_accept: Asynchronous AcceptEx failed.
[Fri Aug 25 14:25:53 2017] [notice] Child 6084: Released the start mutex
[Fri Aug 25 14:25:54 2017] [notice] Child 6084: All worker threads have exited.
[Fri Aug 25 14:25:54 2017] [notice] Child 6084: Child process is exiting
[Fri Aug 25 14:33:07 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 14:33:07 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Aug 25 14:33:07 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 14:33:07 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 14:33:07 2017] [notice] Parent: Created child process 1256
[Fri Aug 25 14:33:07 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 14:33:07 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 14:33:07 2017] [notice] Child 1256: Child process is running
[Fri Aug 25 14:33:07 2017] [notice] Child 1256: Acquired the start mutex.
[Fri Aug 25 14:33:07 2017] [notice] Child 1256: Starting 64 worker threads.
[Fri Aug 25 14:33:07 2017] [notice] Child 1256: Starting thread to listen on port 80.
[Fri Aug 25 14:33:18 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 14:33:19 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 14:36:18 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 14:36:18 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Aug 25 14:36:19 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 14:36:19 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 14:36:19 2017] [notice] Parent: Created child process 164
[Fri Aug 25 14:36:19 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 14:36:19 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 14:36:19 2017] [notice] Child 164: Child process is running
[Fri Aug 25 14:36:23 2017] [notice] Child 164: Acquired the start mutex.
[Fri Aug 25 14:36:23 2017] [notice] Child 164: Starting 64 worker threads.
[Fri Aug 25 14:36:23 2017] [notice] Child 164: Starting thread to listen on port 80.
[Fri Aug 25 14:36:53 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 14:36:54 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 14:36:54 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 14:36:58 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 14:37:00 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 14:37:00 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 14:37:03 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 14:37:03 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:00:54 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:00:54 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:04 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:04 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:09 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:09 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:15 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Fri Aug 25 15:05:15 2017] [notice] Child 164: Exit event signaled. Child process is ending.
[Fri Aug 25 15:05:15 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:05:15 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 15:05:15 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 15:05:15 2017] [notice] Parent: Created child process 4680
[Fri Aug 25 15:05:15 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:05:15 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:05:15 2017] [notice] Child 4680: Child process is running
[Fri Aug 25 15:05:16 2017] [notice] Child 4680: Acquired the start mutex.
[Fri Aug 25 15:05:16 2017] [notice] Child 4680: Starting 64 worker threads.
[Fri Aug 25 15:05:16 2017] [notice] Child 164: Released the start mutex
[Fri Aug 25 15:05:17 2017] [notice] Child 4680: Starting thread to listen on port 80.
[Fri Aug 25 15:05:17 2017] [notice] Child 164: All worker threads have exited.
[Fri Aug 25 15:05:17 2017] [notice] Child 164: Child process is exiting
[Fri Aug 25 15:05:20 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:20 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:22 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:22 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:25 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:25 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:26 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:26 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:29 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:29 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:30 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:30 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:05:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:05:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:15:36 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Fri Aug 25 15:15:36 2017] [notice] Child 4680: Exit event signaled. Child process is ending.
[Fri Aug 25 15:15:36 2017] [warn] module wsgi_module is already loaded, skipping
Syntax error on line 197 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf:
Invalid option to WSGI script alias definition.
[Fri Aug 25 15:15:36 2017] [warn] (OS 995)由于线程退出或应用程序请求,已中止 I/O 操作。 : winnt_accept: Asynchronous AcceptEx failed.
[Fri Aug 25 15:15:37 2017] [notice] Child 4680: Released the start mutex
[Fri Aug 25 15:15:38 2017] [notice] Child 4680: All worker threads have exited.
[Fri Aug 25 15:15:38 2017] [notice] Child 4680: Child process is exiting
The Apache2.2 service is restarting.
Starting the Apache2.2 service
The Apache2.2 service is running.
module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:35:57 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Aug 25 15:35:57 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 15:35:57 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 15:35:57 2017] [notice] Parent: Created child process 3172
[Fri Aug 25 15:35:57 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:35:57 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:35:57 2017] [notice] Child 3172: Child process is running
[Fri Aug 25 15:35:57 2017] [notice] Child 3172: Acquired the start mutex.
[Fri Aug 25 15:35:57 2017] [notice] Child 3172: Starting 64 worker threads.
[Fri Aug 25 15:35:57 2017] [notice] Child 3172: Starting thread to listen on port 80.
[Fri Aug 25 15:36:05 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:36:05 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:36:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:36:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 15:42:33 2017] [notice] Child 3172: Exit event signaled. Child process is ending.
[Fri Aug 25 15:42:33 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:42:33 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:42:33 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 15:42:33 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 15:42:33 2017] [notice] Parent: Created child process 5824
[Fri Aug 25 15:42:33 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:42:33 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:42:33 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:42:33 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:42:33 2017] [notice] Child 5824: Child process is running
[Fri Aug 25 15:42:34 2017] [notice] Child 5824: Acquired the start mutex.
[Fri Aug 25 15:42:34 2017] [notice] Child 5824: Starting 64 worker threads.
[Fri Aug 25 15:42:34 2017] [notice] Child 3172: Released the start mutex
[Fri Aug 25 15:42:35 2017] [notice] Child 3172: All worker threads have exited.
[Fri Aug 25 15:42:35 2017] [notice] Child 3172: Child process is exiting
[Fri Aug 25 15:42:35 2017] [notice] Child 5824: Starting thread to listen on port 80.
[Fri Aug 25 15:42:44 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 15:42:44 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 15:42:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 15:42:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:42:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:42:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:42:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 15:49:30 2017] [notice] Child 5824: Exit event signaled. Child process is ending.
[Fri Aug 25 15:49:30 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:49:30 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:49:30 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 15:49:30 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 15:49:30 2017] [notice] Parent: Created child process 4076
[Fri Aug 25 15:49:30 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:49:30 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:49:30 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:49:30 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:49:30 2017] [notice] Child 4076: Child process is running
[Fri Aug 25 15:49:31 2017] [notice] Child 4076: Acquired the start mutex.
[Fri Aug 25 15:49:31 2017] [notice] Child 4076: Starting 64 worker threads.
[Fri Aug 25 15:49:31 2017] [notice] Child 5824: Released the start mutex
[Fri Aug 25 15:49:32 2017] [notice] Child 5824: All worker threads have exited.
[Fri Aug 25 15:49:32 2017] [notice] Child 5824: Child process is exiting
[Fri Aug 25 15:49:32 2017] [notice] Child 4076: Starting thread to listen on port 80.
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 15:49:49 2017] [notice] Child 4076: Exit event signaled. Child process is ending.
[Fri Aug 25 15:49:49 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:49:49 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:49:50 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 15:49:50 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 15:49:50 2017] [notice] Parent: Created child process 2416
[Fri Aug 25 15:49:50 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:49:50 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:49:50 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 15:49:50 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 15:49:50 2017] [notice] Child 2416: Child process is running
[Fri Aug 25 15:49:50 2017] [notice] Child 2416: Acquired the start mutex.
[Fri Aug 25 15:49:50 2017] [notice] Child 2416: Starting 64 worker threads.
[Fri Aug 25 15:49:50 2017] [notice] Child 4076: Released the start mutex
[Fri Aug 25 15:49:51 2017] [notice] Child 4076: All worker threads have exited.
[Fri Aug 25 15:49:51 2017] [notice] Child 4076: Child process is exiting
[Fri Aug 25 15:49:51 2017] [notice] Child 2416: Starting thread to listen on port 80.
[Fri Aug 25 15:49:58 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:49:58 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 15:50:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 15:50:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:06:47 2017] [notice] Child 2416: Exit event signaled. Child process is ending.
[Fri Aug 25 16:06:47 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 16:06:47 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:06:47 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:06:47 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:06:47 2017] [notice] Parent: Created child process 5308
[Fri Aug 25 16:06:47 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 16:06:47 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:06:47 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 16:06:47 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:06:47 2017] [notice] Child 5308: Child process is running
[Fri Aug 25 16:06:48 2017] [notice] Child 5308: Acquired the start mutex.
[Fri Aug 25 16:06:48 2017] [notice] Child 5308: Starting 64 worker threads.
[Fri Aug 25 16:06:48 2017] [notice] Child 2416: Released the start mutex
[Fri Aug 25 16:06:49 2017] [notice] Child 2416: All worker threads have exited.
[Fri Aug 25 16:06:49 2017] [notice] Child 2416: Child process is exiting
[Fri Aug 25 16:06:49 2017] [notice] Child 5308: Starting thread to listen on port 80.
[Fri Aug 25 16:06:57 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:06:57 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:06:59 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:06:59 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:07:10 2017] [notice] Child 5308: Exit event signaled. Child process is ending.
[Fri Aug 25 16:07:10 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 16:07:10 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:07:10 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:07:10 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:07:10 2017] [notice] Parent: Created child process 5376
[Fri Aug 25 16:07:10 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 16:07:10 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:07:10 2017] [warn] module wsgi_module is already loaded, skipping
[Fri Aug 25 16:07:10 2017] [warn] Useless use of AllowOverride in line 203 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:07:10 2017] [notice] Child 5376: Child process is running
[Fri Aug 25 16:07:11 2017] [notice] Child 5376: Acquired the start mutex.
[Fri Aug 25 16:07:11 2017] [notice] Child 5376: Starting 64 worker threads.
[Fri Aug 25 16:07:11 2017] [notice] Child 5308: Released the start mutex
[Fri Aug 25 16:07:12 2017] [notice] Child 5308: All worker threads have exited.
[Fri Aug 25 16:07:12 2017] [notice] Child 5308: Child process is exiting
[Fri Aug 25 16:07:12 2017] [notice] Child 5376: Starting thread to listen on port 80.
[Fri Aug 25 16:07:16 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:07:16 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:07:23 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 16:07:24 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:07:24 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:38:53 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 16:38:54 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 16:38:55 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Fri Aug 25 16:39:00 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /web failed (filesystem path 'C:/C:')
[Fri Aug 25 16:39:00 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://localhost/web
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:47:05 2017] [notice] Child 5376: Exit event signaled. Child process is ending.
[Fri Aug 25 16:47:05 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:47:05 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:47:05 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:47:05 2017] [notice] Parent: Created child process 5788
[Fri Aug 25 16:47:05 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:47:05 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:47:06 2017] [notice] Child 5788: Child process is running
[Fri Aug 25 16:47:06 2017] [notice] Child 5376: Released the start mutex
[Fri Aug 25 16:47:06 2017] [notice] Child 5788: Acquired the start mutex.
[Fri Aug 25 16:47:06 2017] [notice] Child 5788: Starting 64 worker threads.
[Fri Aug 25 16:47:07 2017] [notice] Child 5376: All worker threads have exited.
[Fri Aug 25 16:47:07 2017] [notice] Child 5376: Child process is exiting
[Fri Aug 25 16:47:07 2017] [notice] Child 5788: Starting thread to listen on port 80.
[Fri Aug 25 16:47:10 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /web failed (filesystem path 'C:/C:')
[Fri Aug 25 16:47:10 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://localhost/web
[Fri Aug 25 16:47:13 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /web failed (filesystem path 'C:/C:')
[Fri Aug 25 16:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://localhost/web
[Fri Aug 25 16:47:27 2017] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Fri Aug 25 16:47:27 2017] [notice] Child 5788: Exit event signaled. Child process is ending.
[Fri Aug 25 16:47:28 2017] [notice] Child 5788: Released the start mutex
[Fri Aug 25 16:47:30 2017] [notice] Child 5788: All worker threads have exited.
[Fri Aug 25 16:47:30 2017] [notice] Child 5788: Child process is exiting
[Fri Aug 25 16:47:30 2017] [notice] Parent: Child process exited successfully.
The Apache2.2 service is restarting.
Starting the Apache2.2 service
The Apache2.2 service is running.
module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:47:55 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:47:55 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:47:55 2017] [notice] Parent: Created child process 5544
[Fri Aug 25 16:47:55 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:47:55 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:47:55 2017] [notice] Child 5544: Child process is running
[Fri Aug 25 16:47:55 2017] [notice] Child 5544: Acquired the start mutex.
[Fri Aug 25 16:47:55 2017] [notice] Child 5544: Starting 64 worker threads.
[Fri Aug 25 16:47:55 2017] [notice] Child 5544: Starting thread to listen on port 80.
[Fri Aug 25 16:48:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:48:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:48:45 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:48:45 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:51:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:51:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:51:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:51:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:51:48 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:51:48 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 16:51:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:51:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:55:00 2017] [notice] Child 5544: Exit event signaled. Child process is ending.
[Fri Aug 25 16:55:00 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:00 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:55:00 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:55:00 2017] [notice] Parent: Created child process 2112
[Fri Aug 25 16:55:00 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:00 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:00 2017] [notice] Child 2112: Child process is running
[Fri Aug 25 16:55:01 2017] [notice] Child 2112: Acquired the start mutex.
[Fri Aug 25 16:55:01 2017] [notice] Child 2112: Starting 64 worker threads.
[Fri Aug 25 16:55:01 2017] [notice] Child 5544: Released the start mutex
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:55:01 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:01 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:55:01 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:55:01 2017] [notice] Parent: Created child process 4120
[Fri Aug 25 16:55:01 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:02 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:02 2017] [notice] Child 4120: Child process is running
[Fri Aug 25 16:55:02 2017] [notice] Child 2112: Exit event signaled. Child process is ending.
[Fri Aug 25 16:55:02 2017] [notice] Child 5544: All worker threads have exited.
[Fri Aug 25 16:55:02 2017] [notice] Child 5544: Child process is exiting
[Fri Aug 25 16:55:02 2017] [notice] Child 2112: Starting thread to listen on port 80.
[Fri Aug 25 16:55:03 2017] [notice] Child 4120: Acquired the start mutex.
[Fri Aug 25 16:55:03 2017] [notice] Child 4120: Starting 64 worker threads.
[Fri Aug 25 16:55:03 2017] [notice] Child 2112: Released the start mutex
[Fri Aug 25 16:55:04 2017] [notice] Child 2112: All worker threads have exited.
[Fri Aug 25 16:55:04 2017] [notice] Child 2112: Child process is exiting
[Fri Aug 25 16:55:04 2017] [notice] Child 4120: Starting thread to listen on port 80.
[Fri Aug 25 16:55:10 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:55:10 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:55:23 2017] [notice] Child 4120: Exit event signaled. Child process is ending.
[Fri Aug 25 16:55:23 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:23 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:55:23 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:55:23 2017] [notice] Parent: Created child process 2876
[Fri Aug 25 16:55:23 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:23 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:23 2017] [notice] Child 2876: Child process is running
[Fri Aug 25 16:55:24 2017] [notice] Child 2876: Acquired the start mutex.
[Fri Aug 25 16:55:24 2017] [notice] Child 2876: Starting 64 worker threads.
[Fri Aug 25 16:55:24 2017] [notice] Child 4120: Released the start mutex
[Fri Aug 25 16:55:25 2017] [notice] Child 4120: All worker threads have exited.
[Fri Aug 25 16:55:25 2017] [notice] Child 4120: Child process is exiting
[Fri Aug 25 16:55:25 2017] [notice] Child 2876: Starting thread to listen on port 80.
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:55:48 2017] [notice] Child 2876: Exit event signaled. Child process is ending.
[Fri Aug 25 16:55:48 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:48 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:55:48 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:55:48 2017] [notice] Parent: Created child process 2012
[Fri Aug 25 16:55:48 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:48 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:55:48 2017] [notice] Child 2012: Child process is running
[Fri Aug 25 16:55:49 2017] [notice] Child 2012: Acquired the start mutex.
[Fri Aug 25 16:55:49 2017] [notice] Child 2012: Starting 64 worker threads.
[Fri Aug 25 16:55:49 2017] [notice] Child 2876: Released the start mutex
[Fri Aug 25 16:55:50 2017] [notice] Child 2876: All worker threads have exited.
[Fri Aug 25 16:55:50 2017] [notice] Child 2876: Child process is exiting
[Fri Aug 25 16:55:50 2017] [notice] Child 2012: Starting thread to listen on port 80.
[Fri Aug 25 16:56:29 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:56:29 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 16:58:15 2017] [notice] Child 2012: Exit event signaled. Child process is ending.
[Fri Aug 25 16:58:15 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:58:15 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 16:58:15 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 16:58:15 2017] [notice] Parent: Created child process 2648
[Fri Aug 25 16:58:15 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:58:15 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 16:58:15 2017] [notice] Child 2648: Child process is running
[Fri Aug 25 16:58:16 2017] [notice] Child 2648: Acquired the start mutex.
[Fri Aug 25 16:58:16 2017] [notice] Child 2648: Starting 64 worker threads.
[Fri Aug 25 16:58:16 2017] [notice] Child 2012: Released the start mutex
[Fri Aug 25 16:58:17 2017] [notice] Child 2012: All worker threads have exited.
[Fri Aug 25 16:58:17 2017] [notice] Child 2012: Child process is exiting
[Fri Aug 25 16:58:17 2017] [notice] Child 2648: Starting thread to listen on port 80.
[Fri Aug 25 16:58:18 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 16:58:18 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 17:10:05 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 17:10:05 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 17:24:41 2017] [notice] Child 2648: Exit event signaled. Child process is ending.
[Fri Aug 25 17:24:41 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:24:41 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 17:24:41 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 17:24:41 2017] [notice] Parent: Created child process 5692
[Fri Aug 25 17:24:41 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:24:41 2017] [warn] module wsgi_module is already loaded, skipping
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:24:41 2017] [notice] Child 5692: Child process is running
[Fri Aug 25 17:24:42 2017] [notice] Child 5692: Acquired the start mutex.
[Fri Aug 25 17:24:42 2017] [notice] Child 5692: Starting 64 worker threads.
[Fri Aug 25 17:24:42 2017] [notice] Child 2648: Released the start mutex
[Fri Aug 25 17:24:43 2017] [notice] Child 2648: All worker threads have exited.
[Fri Aug 25 17:24:43 2017] [notice] Child 2648: Child process is exiting
[Fri Aug 25 17:24:43 2017] [notice] Child 5692: Starting thread to listen on port 80.
[Fri Aug 25 17:27:26 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 17:27:26 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 17:28:25 2017] [notice] Child 5692: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:28:25 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 17:28:25 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 17:28:25 2017] [notice] Parent: Created child process 4476
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:28:25 2017] [notice] Child 4476: Child process is running
[Fri Aug 25 17:28:26 2017] [notice] Child 4476: Acquired the start mutex.
[Fri Aug 25 17:28:26 2017] [notice] Child 4476: Starting 64 worker threads.
[Fri Aug 25 17:28:26 2017] [notice] Child 5692: Released the start mutex
[Fri Aug 25 17:28:27 2017] [notice] Child 5692: All worker threads have exited.
[Fri Aug 25 17:28:27 2017] [notice] Child 5692: Child process is exiting
[Fri Aug 25 17:28:27 2017] [notice] Child 4476: Starting thread to listen on port 80.
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 17:28:30 2017] [notice] Child 4476: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:28:30 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 17:28:30 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 17:28:30 2017] [notice] Parent: Created child process 4700
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:28:30 2017] [notice] Child 4700: Child process is running
[Fri Aug 25 17:28:31 2017] [notice] Child 4700: Acquired the start mutex.
[Fri Aug 25 17:28:31 2017] [notice] Child 4700: Starting 64 worker threads.
[Fri Aug 25 17:28:31 2017] [notice] Child 4476: Released the start mutex
[Fri Aug 25 17:28:32 2017] [notice] Child 4476: All worker threads have exited.
[Fri Aug 25 17:28:32 2017] [notice] Child 4476: Child process is exiting
[Fri Aug 25 17:28:32 2017] [notice] Child 4700: Starting thread to listen on port 80.
[Fri Aug 25 17:28:49 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 17:28:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 17:44:22 2017] [notice] Child 4700: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:44:22 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 17:44:22 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 17:44:22 2017] [notice] Parent: Created child process 4664
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:44:22 2017] [notice] Child 4664: Child process is running
[Fri Aug 25 17:44:23 2017] [notice] Child 4664: Acquired the start mutex.
[Fri Aug 25 17:44:23 2017] [notice] Child 4664: Starting 64 worker threads.
[Fri Aug 25 17:44:23 2017] [notice] Child 4700: Released the start mutex
[Fri Aug 25 17:44:24 2017] [notice] Child 4700: All worker threads have exited.
[Fri Aug 25 17:44:24 2017] [notice] Child 4700: Child process is exiting
[Fri Aug 25 17:44:24 2017] [notice] Child 4664: Starting thread to listen on port 80.
[Fri Aug 25 17:44:26 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 17:44:26 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Fri Aug 25 17:44:28 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 17:44:28 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Fri Aug 25 17:45:45 2017] [notice] Child 4664: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:45:45 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Fri Aug 25 17:45:45 2017] [notice] Server built: Jul 10 2013 01:52:12
[Fri Aug 25 17:45:45 2017] [notice] Parent: Created child process 4256
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Fri Aug 25 17:45:45 2017] [notice] Child 4256: Child process is running
[Fri Aug 25 17:45:46 2017] [notice] Child 4256: Acquired the start mutex.
[Fri Aug 25 17:45:46 2017] [notice] Child 4256: Starting 64 worker threads.
[Fri Aug 25 17:45:46 2017] [notice] Child 4664: Released the start mutex
[Fri Aug 25 17:45:47 2017] [notice] Child 4664: All worker threads have exited.
[Fri Aug 25 17:45:47 2017] [notice] Child 4664: Child process is exiting
[Fri Aug 25 17:45:47 2017] [notice] Child 4256: Starting thread to listen on port 80.
[Fri Aug 25 17:45:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Fri Aug 25 17:45:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:30:19 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Mon Aug 28 09:30:19 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:30:19 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:30:19 2017] [notice] Parent: Created child process 208
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:30:19 2017] [notice] Child 208: Child process is running
[Mon Aug 28 09:30:26 2017] [notice] Child 208: Acquired the start mutex.
[Mon Aug 28 09:30:26 2017] [notice] Child 208: Starting 64 worker threads.
[Mon Aug 28 09:30:26 2017] [notice] Child 208: Starting thread to listen on port 80.
[Mon Aug 28 09:33:27 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:33:27 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:33:32 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:33:55 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:33:58 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 09:34:03 2017] [notice] Child 208: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:34:03 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:34:03 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:34:03 2017] [notice] Parent: Created child process 4700
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:34:03 2017] [notice] Child 4700: Child process is running
[Mon Aug 28 09:34:04 2017] [notice] Child 4700: Acquired the start mutex.
[Mon Aug 28 09:34:04 2017] [notice] Child 4700: Starting 64 worker threads.
[Mon Aug 28 09:34:04 2017] [notice] Child 208: Released the start mutex
[Mon Aug 28 09:34:05 2017] [notice] Child 4700: Starting thread to listen on port 80.
[Mon Aug 28 09:34:07 2017] [notice] Child 208: All worker threads have exited.
[Mon Aug 28 09:34:07 2017] [notice] Child 208: Child process is exiting
[Mon Aug 28 09:34:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:34:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:34:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:34:46 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 09:34:58 2017] [notice] Child 4700: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:34:58 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:34:58 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:34:58 2017] [notice] Parent: Created child process 5820
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:34:58 2017] [notice] Child 5820: Child process is running
[Mon Aug 28 09:34:59 2017] [notice] Child 5820: Acquired the start mutex.
[Mon Aug 28 09:34:59 2017] [notice] Child 5820: Starting 64 worker threads.
[Mon Aug 28 09:34:59 2017] [notice] Child 4700: Released the start mutex
[Mon Aug 28 09:35:00 2017] [notice] Child 4700: All worker threads have exited.
[Mon Aug 28 09:35:00 2017] [notice] Child 4700: Child process is exiting
[Mon Aug 28 09:35:00 2017] [notice] Child 5820: Starting thread to listen on port 80.
[Mon Aug 28 09:35:01 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:01 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:01 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:02 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:06 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:06 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:09 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:09 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:35:11 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:35:11 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:36:42 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:36:42 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:36:42 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:36:42 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:36:48 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:36:49 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:36:53 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:36:53 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:38:17 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:38:17 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 09:38:46 2017] [notice] Child 5820: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:38:46 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:38:46 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:38:46 2017] [notice] Parent: Created child process 4640
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:38:46 2017] [notice] Child 4640: Child process is running
[Mon Aug 28 09:38:47 2017] [notice] Child 5820: Released the start mutex
[Mon Aug 28 09:38:47 2017] [notice] Child 4640: Acquired the start mutex.
[Mon Aug 28 09:38:47 2017] [notice] Child 4640: Starting 64 worker threads.
[Mon Aug 28 09:38:48 2017] [notice] Child 5820: All worker threads have exited.
[Mon Aug 28 09:38:48 2017] [notice] Child 4640: Starting thread to listen on port 80.
[Mon Aug 28 09:38:48 2017] [notice] Child 5820: Child process is exiting
[Mon Aug 28 09:38:49 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:38:49 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:38:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:38:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:38:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:38:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:38:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:38:51 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:46:56 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:46:56 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 09:47:10 2017] [notice] Child 4640: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:47:10 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:47:10 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:47:10 2017] [notice] Parent: Created child process 2932
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:47:10 2017] [notice] Child 2932: Child process is running
[Mon Aug 28 09:47:11 2017] [notice] Child 4640: Released the start mutex
[Mon Aug 28 09:47:11 2017] [notice] Child 2932: Acquired the start mutex.
[Mon Aug 28 09:47:11 2017] [notice] Child 2932: Starting 64 worker threads.
[Mon Aug 28 09:47:12 2017] [notice] Child 4640: All worker threads have exited.
[Mon Aug 28 09:47:12 2017] [notice] Child 2932: Starting thread to listen on port 80.
[Mon Aug 28 09:47:12 2017] [notice] Child 4640: Child process is exiting
[Mon Aug 28 09:47:13 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:13 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:14 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:16 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:16 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:16 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:16 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:37 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 09:47:37 2017] [notice] Child 2932: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:47:37 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:47:37 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:47:37 2017] [notice] Parent: Created child process 5536
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:47:38 2017] [notice] Child 5536: Child process is running
[Mon Aug 28 09:47:38 2017] [notice] Child 5536: Acquired the start mutex.
[Mon Aug 28 09:47:38 2017] [notice] Child 5536: Starting 64 worker threads.
[Mon Aug 28 09:47:38 2017] [notice] Child 2932: Released the start mutex
[Mon Aug 28 09:47:39 2017] [notice] Child 2932: All worker threads have exited.
[Mon Aug 28 09:47:39 2017] [notice] Child 2932: Child process is exiting
[Mon Aug 28 09:47:39 2017] [notice] Child 5536: Starting thread to listen on port 80.
[Mon Aug 28 09:47:42 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:42 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:47:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:47:43 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://127.0.0.1/
[Mon Aug 28 09:51:07 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:51:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:51:31 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:51:34 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:')
[Mon Aug 28 09:51:50 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:51:51 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:51:51 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://ggttpe.com/
[Mon Aug 28 09:51:51 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://ggttpe.com/
[Mon Aug 28 09:52:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:52:15 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://ggttpe.com/
[Mon Aug 28 09:52:19 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to / failed (filesystem path 'C:/C:')
[Mon Aug 28 09:52:19 2017] [error] [client 127.0.0.1] (20024)The given path is misformatted or contained invalid characters: access to /favicon.ico failed (filesystem path 'C:/C:'), referer: http://ggttpe.com/
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 09:54:06 2017] [notice] Child 5536: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:54:06 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 09:54:06 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 09:54:06 2017] [notice] Parent: Created child process 656
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 09:54:06 2017] [notice] Child 656: Child process is running
[Mon Aug 28 09:54:07 2017] [notice] Child 656: Acquired the start mutex.
[Mon Aug 28 09:54:07 2017] [notice] Child 656: Starting 64 worker threads.
[Mon Aug 28 09:54:07 2017] [notice] Child 5536: Released the start mutex
[Mon Aug 28 09:54:08 2017] [notice] Child 5536: All worker threads have exited.
[Mon Aug 28 09:54:08 2017] [notice] Child 5536: Child process is exiting
[Mon Aug 28 09:54:08 2017] [notice] Child 656: Starting thread to listen on port 80.
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:00:42 2017] [notice] Child 656: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:00:42 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:00:42 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:00:42 2017] [notice] Parent: Created child process 2456
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:00:42 2017] [notice] Child 2456: Child process is running
[Mon Aug 28 10:00:43 2017] [notice] Child 2456: Acquired the start mutex.
[Mon Aug 28 10:00:43 2017] [notice] Child 2456: Starting 64 worker threads.
[Mon Aug 28 10:00:43 2017] [notice] Child 656: Released the start mutex
[Mon Aug 28 10:00:44 2017] [notice] Child 656: All worker threads have exited.
[Mon Aug 28 10:00:44 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:00:44 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:00:44 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:00:44 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:00:44 2017] [notice] Child 656: Child process is exiting
[Mon Aug 28 10:00:44 2017] [notice] Child 2456: Starting thread to listen on port 80.
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:02:11 2017] [notice] Child 2456: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:02:11 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:02:11 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:02:11 2017] [notice] Parent: Created child process 6136
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:02:11 2017] [notice] Child 6136: Child process is running
[Mon Aug 28 10:02:12 2017] [notice] Child 6136: Acquired the start mutex.
[Mon Aug 28 10:02:12 2017] [notice] Child 6136: Starting 64 worker threads.
[Mon Aug 28 10:02:12 2017] [notice] Child 2456: Released the start mutex
[Mon Aug 28 10:02:13 2017] [notice] Child 2456: All worker threads have exited.
[Mon Aug 28 10:02:13 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:02:13 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:02:13 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:02:13 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:02:13 2017] [notice] Child 2456: Child process is exiting
[Mon Aug 28 10:02:13 2017] [notice] Child 6136: Starting thread to listen on port 80.
The Apache2.2 service is restarting.
The Apache2.2 service has restarted.
arent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:03:58 2017] [notice] Child 6136: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:03:58 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:03:58 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:03:58 2017] [notice] Parent: Created child process 5976
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:03:58 2017] [notice] Child 5976: Child process is running
[Mon Aug 28 10:03:59 2017] [notice] Child 5976: Acquired the start mutex.
[Mon Aug 28 10:03:59 2017] [notice] Child 5976: Starting 64 worker threads.
[Mon Aug 28 10:03:59 2017] [notice] Child 6136: Released the start mutex
[Mon Aug 28 10:04:00 2017] [notice] Child 6136: All worker threads have exited.
[Mon Aug 28 10:04:00 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:04:00 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:04:00 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:04:00 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:04:00 2017] [notice] Child 6136: Child process is exiting
[Mon Aug 28 10:04:00 2017] [notice] Child 5976: Starting thread to listen on port 80.
[Mon Aug 28 10:13:08 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:13:08 2017] [notice] Child 5976: Exit event signaled. Child process is ending.
Syntax error on line 206 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf:
<Directory "C:\\django\\deskphoto\\deskphoto\\media""> path is invalid.
[Mon Aug 28 10:13:08 2017] [warn] (OS 995)由于线程退出或应用程序请求,已中止 I/O 操作。 : winnt_accept: Asynchronous AcceptEx failed.
[Mon Aug 28 10:13:09 2017] [notice] Child 5976: Released the start mutex
[Mon Aug 28 10:13:10 2017] [notice] Child 5976: All worker threads have exited.
[Mon Aug 28 10:13:10 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:13:10 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:13:10 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:13:10 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:13:10 2017] [notice] Child 5976: Child process is exiting
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:13:40 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Mon Aug 28 10:13:40 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:13:40 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:13:40 2017] [notice] Parent: Created child process 3740
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:13:40 2017] [notice] Child 3740: Child process is running
[Mon Aug 28 10:13:40 2017] [notice] Child 3740: Acquired the start mutex.
[Mon Aug 28 10:13:40 2017] [notice] Child 3740: Starting 64 worker threads.
[Mon Aug 28 10:13:40 2017] [notice] Child 3740: Starting thread to listen on port 80.
[Mon Aug 28 10:14:00 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:14:00 2017] [notice] Child 3740: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:14:00 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:14:00 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:14:00 2017] [notice] Parent: Created child process 4396
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:14:01 2017] [notice] Child 4396: Child process is running
[Mon Aug 28 10:14:01 2017] [notice] Child 4396: Acquired the start mutex.
[Mon Aug 28 10:14:01 2017] [notice] Child 4396: Starting 64 worker threads.
[Mon Aug 28 10:14:01 2017] [notice] Child 3740: Released the start mutex
[Mon Aug 28 10:14:02 2017] [notice] Child 3740: All worker threads have exited.
[Mon Aug 28 10:14:02 2017] [notice] Child 3740: Child process is exiting
[Mon Aug 28 10:14:02 2017] [notice] Child 4396: Starting thread to listen on port 80.
[Mon Aug 28 10:15:24 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:15:24 2017] [notice] Child 4396: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:15:24 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:15:24 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:15:24 2017] [notice] Parent: Created child process 2736
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:15:24 2017] [notice] Child 2736: Child process is running
[Mon Aug 28 10:15:25 2017] [notice] Child 4396: Released the start mutex
[Mon Aug 28 10:15:25 2017] [notice] Child 2736: Acquired the start mutex.
[Mon Aug 28 10:15:25 2017] [notice] Child 2736: Starting 64 worker threads.
[Mon Aug 28 10:15:26 2017] [notice] Child 4396: All worker threads have exited.
[Mon Aug 28 10:15:26 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:15:26 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:15:26 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:15:26 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:15:26 2017] [notice] Child 4396: Child process is exiting
[Mon Aug 28 10:15:26 2017] [notice] Child 2736: Starting thread to listen on port 80.
[Mon Aug 28 10:20:23 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:20:23 2017] [notice] Child 2736: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:20:23 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:20:23 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:20:23 2017] [notice] Parent: Created child process 5352
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:20:23 2017] [notice] Child 5352: Child process is running
[Mon Aug 28 10:20:24 2017] [notice] Child 5352: Acquired the start mutex.
[Mon Aug 28 10:20:24 2017] [notice] Child 5352: Starting 64 worker threads.
[Mon Aug 28 10:20:24 2017] [notice] Child 2736: Released the start mutex
[Mon Aug 28 10:20:25 2017] [notice] Child 2736: All worker threads have exited.
[Mon Aug 28 10:20:25 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:20:25 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:20:25 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:20:25 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:20:25 2017] [notice] Child 2736: Child process is exiting
[Mon Aug 28 10:20:25 2017] [notice] Child 5352: Starting thread to listen on port 80.
[Mon Aug 28 10:20:34 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:20:34 2017] [notice] Child 5352: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:20:34 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:20:34 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:20:34 2017] [notice] Parent: Created child process 4104
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:20:34 2017] [notice] Child 4104: Child process is running
[Mon Aug 28 10:20:35 2017] [notice] Child 4104: Acquired the start mutex.
[Mon Aug 28 10:20:35 2017] [notice] Child 4104: Starting 64 worker threads.
[Mon Aug 28 10:20:35 2017] [notice] Child 5352: Released the start mutex
[Mon Aug 28 10:20:36 2017] [notice] Child 5352: All worker threads have exited.
[Mon Aug 28 10:20:36 2017] [notice] Child 4104: Starting thread to listen on port 80.
[Mon Aug 28 10:20:36 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:20:36 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:20:36 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:20:36 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:20:36 2017] [notice] Child 5352: Child process is exiting
[Mon Aug 28 10:28:40 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:28:40 2017] [notice] Child 4104: Exit event signaled. Child process is ending.
Syntax error on line 206 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf:
WSGIPythonPath cannot occur within <VirtualHost> section
[Mon Aug 28 10:28:40 2017] [warn] (OS 995)由于线程退出或应用程序请求,已中止 I/O 操作。 : winnt_accept: Asynchronous AcceptEx failed.
[Mon Aug 28 10:28:41 2017] [notice] Child 4104: Released the start mutex
[Mon Aug 28 10:28:42 2017] [notice] Child 4104: All worker threads have exited.
[Mon Aug 28 10:28:42 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:28:42 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:28:42 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:28:42 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:28:42 2017] [notice] Child 4104: Child process is exiting
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:48:40 2017] [warn] pid file C:/Program Files/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Mon Aug 28 10:48:40 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:48:40 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:48:40 2017] [notice] Parent: Created child process 2596
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:48:40 2017] [notice] Child 2596: Child process is running
[Mon Aug 28 10:48:40 2017] [notice] Child 2596: Acquired the start mutex.
[Mon Aug 28 10:48:40 2017] [notice] Child 2596: Starting 64 worker threads.
[Mon Aug 28 10:48:40 2017] [notice] Child 2596: Starting thread to listen on port 80.
[Mon Aug 28 10:51:10 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://127.0.0.1/admin/login/?next=/admin/
[Mon Aug 28 10:51:10 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://127.0.0.1/admin/login/?next=/admin/
[Mon Aug 28 10:51:36 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:51:36 2017] [notice] Child 2596: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:51:36 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:51:36 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:51:36 2017] [notice] Parent: Created child process 2428
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:51:36 2017] [notice] Child 2428: Child process is running
[Mon Aug 28 10:51:37 2017] [notice] Child 2428: Acquired the start mutex.
[Mon Aug 28 10:51:37 2017] [notice] Child 2428: Starting 64 worker threads.
[Mon Aug 28 10:51:37 2017] [notice] Child 2596: Released the start mutex
[Mon Aug 28 10:51:38 2017] [notice] Child 2428: Starting thread to listen on port 80.
[Mon Aug 28 10:51:38 2017] [notice] Child 2596: All worker threads have exited.
[Mon Aug 28 10:51:38 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:51:38 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:51:38 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:51:38 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:51:38 2017] [notice] Child 2596: Child process is exiting
[Mon Aug 28 10:52:43 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 10:52:43 2017] [notice] Child 2428: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:52:43 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 10:52:43 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 10:52:43 2017] [notice] Parent: Created child process 1664
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 10:52:43 2017] [notice] Child 1664: Child process is running
[Mon Aug 28 10:52:44 2017] [notice] Child 1664: Acquired the start mutex.
[Mon Aug 28 10:52:44 2017] [notice] Child 1664: Starting 64 worker threads.
[Mon Aug 28 10:52:44 2017] [notice] Child 2428: Released the start mutex
[Mon Aug 28 10:52:45 2017] [notice] Child 2428: All worker threads have exited.
[Mon Aug 28 10:52:45 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:52:45 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:52:45 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 10:52:45 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 10:52:45 2017] [notice] Child 2428: Child process is exiting
[Mon Aug 28 10:52:45 2017] [notice] Child 1664: Starting thread to listen on port 80.
[Mon Aug 28 10:52:49 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 10:52:49 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 10:52:49 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:38 2017] [notice] Parent: Received restart signal -- Restarting the server.
[Mon Aug 28 11:10:38 2017] [notice] Child 1664: Exit event signaled. Child process is ending.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 11:10:38 2017] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.3 Python/2.7 configured -- resuming normal operations
[Mon Aug 28 11:10:38 2017] [notice] Server built: Jul 10 2013 01:52:12
[Mon Aug 28 11:10:38 2017] [notice] Parent: Created child process 4252
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 169.254.106.181 for ServerName
[Mon Aug 28 11:10:38 2017] [notice] Child 4252: Child process is running
[Mon Aug 28 11:10:39 2017] [notice] Child 1664: Released the start mutex
[Mon Aug 28 11:10:39 2017] [notice] Child 4252: Acquired the start mutex.
[Mon Aug 28 11:10:39 2017] [notice] Child 4252: Starting 64 worker threads.
[Mon Aug 28 11:10:40 2017] [notice] Child 1664: All worker threads have exited.
[Mon Aug 28 11:10:40 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 11:10:40 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 11:10:40 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in <bound method OrderedDict.__del__ of OrderedDict()> ignored
[Mon Aug 28 11:10:40 2017] [error] Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in Exception AttributeError: "'NoneType' object has no attribute 'clear'" in
[Mon Aug 28 11:10:40 2017] [notice] Child 1664: Child process is exiting
[Mon Aug 28 11:10:40 2017] [notice] Child 4252: Starting thread to listen on port 80.
[Mon Aug 28 11:10:42 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:42 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:42 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:44 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:44 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:44 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:45 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:45 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/
[Mon Aug 28 11:10:45 2017] [error] [client 127.0.0.1] File does not exist: C:/django/deskphoto/deskphoto/static, referer: http://ggttpe.com/admin/login/?next=/

转载于:https://www.cnblogs.com/doyonevertodo/p/7424289.html

window7 32位部署django相关推荐

  1. openstack安装系列问题:window7 64位安装的virtualBox 只能选择32位的系统安装不能选择64位的系统安装...

    个人原创,转载请注明作者,出处,否则依法追究法律责任 2017-10-03-12:22:22 现象:window7 64位安装的virtualBox 只能选择32位的系统安装不能选择64位的系统安装 ...

  2. windows XP(32位) 安装java web 部署环境

    背景 客户有个服务器是windows XP系统,需要安装java web 运行环境,这个就是产品线上要的服务器. 有人会问那间公司还会用这个xp系统来做服务器的,没错我的第一反应也是一样,然后我建议换 ...

  3. 关于系统32位和64位的程序发布和部署(一)

    如果程序集文件只包含类型安全的托管代码,那么无论在32位版本的windows上,还是64位版本上的windows上,所写的代码都应该能正常工作.在这两种版本上的windowss上运行,源代码无需进行任 ...

  4. 把ePO4.5或者4.6从32位迁移到64位系统

    环境总结: 客户现在的环境是ePO4.5安装在32位的WS2003R2上,想实现的效果是迁移到ePO4.6并且运行在WS2008R2上(只有64位系统). 使用声明: 1.期望目标读者是网络管理员和e ...

  5. 服务器系统都是64位的吗,云服务器32位跟64位的区别吗

    云服务器32位跟64位的区别吗 内容精选 换一换 Windows操作系统与Linux操作系统没有好坏之分,只有适合不适合.请根据业务需求选择Windows或Linux的操作系统.华为云提供了5个版本, ...

  6. JMeter-Eclipse添加自定义函数 MD5加密 32位和16位

    最近公司的接口都是MD5  16位加密,所以要使用加密功能. 之前也做过加密,因为用的比较少,所以是写了一个加密方法,导出JAR包,调用的.用起来需要很多设置,并且换算效率也不高.听前同事说,jmet ...

  7. 【转】Nginx+uWSGI 部署 Django 应用

    原文来自: http://www.oschina.net/question/54100_30386 http://obmem.info/?p=703 常见的django webapp 部署方式采用FC ...

  8. 32位python-64位Python调用32位DLL方法(一)

    摘要: 本文介绍了一种简单快捷的方法,实现在64位Python调用32位DLL. 引言: Python发展到现在,3.x的普及率已经相当高,而且随着硬件(内存的不断增大)以及操作系统(64bit wi ...

  9. java怎样生成32位全是整形的主键_你肯定会需要的分布式Id生成算法雪花算法(Java)...

    最近公司正好在做数据库迁移从oracle到mysql,因为之前oracle主键是使用的 SYS_GUID() 这个oracle提供的函数来生成全球唯一的标识符(原始值)由16个字节组成. 不过由于my ...

  10. 启动64位 IIS 32位应用程序的支持

    64位的系统可以让IIS在32位的环境下运行asp.net程序,设置方法如下: ASP.NET程序在编译的时候默认是Any CPU,即编译的程序可以在X86.X64系统平台上运行.若希望我们的ASP. ...

最新文章

  1. PIE SDK图层树伙伴控件示例
  2. hdu4503 概率
  3. 66319d电源使用说明书_你用对电暖器了吗?冬季使用家电应该注意这四点
  4. 深度学习《CycleGAN》
  5. qwt需要添加到qcreator的东西
  6. Vue学习笔记(二) —— 组件开发
  7. HDU 3037 Saving Beans [Lucas定理]
  8. wamp 局域网访问
  9. python学习(三)
  10. SQL Server将DataTable传入存储过程(Table Value Parameter)
  11. 本人账户登录计算机黑屏,电脑开机输入系统密码后就黑屏了,怎么办
  12. Java: 将中文名转换为指定格式拼音
  13. npm install 报错 this command with --force, or --legacy-peer-deps
  14. 虚拟机VMware破解版教程下载
  15. 以下产品不用再做CCC认证了,你的产品在内吗?
  16. jQuery 已经落幕了~
  17. Python入门习题(89)——OpenJudge百练习题:二分法求函数的零点
  18. 在线版音乐播放器APP
  19. 429. N-ary Tree Level Order Traversal**
  20. 编写java程序计算梯形面积_【Java】编写一个应用程序计算梯形和圆形的面积。...

热门文章

  1. Javsscript自定义事件和触发
  2. 排序算法之一 冒泡排序(C++版本)
  3. 微服务学习之02支付模块构建(单个、集群)【Hoxton.SR1版】
  4. linux批量创建ftp用户密码,批量在LINUX下建立很多FTP用户
  5. python输入学生成绩、分a、b、c类_在Python中,如果输入a=1b=2c=acc=b,那么c的值是多少?c指的是什么?...
  6. matplotlib plot 分组_Python数据分析模块二:Matplotlib
  7. python抢演唱会门票_韩国演唱会抢票系统生产环境(Linux)配置记录
  8. 利用vb进行autocad图形格式的批量自动转换.pdf_ReaConverter Lite图像批量转换器下载V7.607官方版...
  9. 实战flex:模拟实现静态知乎首页
  10. 实战Python:利用Python实现基于终端的文本行编辑程序