window7 32位部署django

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值