error with ssl setting

Problems with the Windows version of XAMPP, questions, comments, and anything related.

error with ssl setting

Postby impartial just » 18. March 2021 11:28

I have a problem with running the Apache in Xampp. I change the setting of the ssl config setting. I would like to install a ssl certificates, but I try some method on web. As a result, I can not even start my http broswer.
httpd-ssl.conf
Code: Select all
#
# This is the Apache server configuration file providing SSL support.
# It contains the configuration directives to instruct the server how to
# serve pages over an https connection. For detailing information about these
# directives see <URL:http://httpd.apache.org/docs/2.2/mod/mod_ssl.html>
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned. 
#

#
# Pseudo Random Number Generator (PRNG):
# Configure one or more sources to seed the PRNG of the SSL library.
# The seed data should be of good random quality.
# WARNING! On some platforms /dev/random blocks if not enough entropy
# is available. This means you then cannot use the /dev/random device
# because it would lead to very long connection times (as long as
# it requires to make more entropy available). But usually those
# platforms additionally provide a /dev/urandom device which doesn't
# block. So, if available, use this one instead. Read the mod_ssl User
# Manual for more details.
#
#SSLRandomSeed startup file:/dev/random  512
#SSLRandomSeed startup file:/dev/urandom 512
#SSLRandomSeed connect file:/dev/random  512
#SSLRandomSeed connect file:/dev/urandom 512


#
# When we also provide SSL we have to listen to the
# standard HTTP port (see above) and to the HTTPS port
#
# Note: Configurations that use IPv6 but not IPv4-mapped addresses need two
#       Listen directives: "Listen [::]:443" and "Listen 0.0.0.0:443"
#
Listen 443

##
##  SSL Global Context
##
##  All SSL configuration in this context applies both to
##  the main server and all SSL-enabled virtual hosts.
##

#
#   Some MIME-types for downloading Certificates and CRLs
#
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl

#   Pass Phrase Dialog:
#   Configure the pass phrase gathering process.
#   The filtering dialog program (`builtin' is a internal
#   terminal dialog) has to provide the pass phrase on stdout.
SSLPassPhraseDialog  builtin

#   Inter-Process Session Cache:
#   Configure the SSL Session Cache: First the mechanism
#   to use and second the expiring timeout (in seconds).
#SSLSessionCache         "dbm:C:/dev/tools/apache2/logs/ssl_scache"
SSLSessionCache        "shmcb:C:/dev/tools/apache2/logs/ssl_scache(512000)"
SSLSessionCacheTimeout  300

#   Semaphore:
#   Configure the path to the mutual exclusion semaphore the
#   SSL engine uses internally for inter-process synchronization.
SSLMutex default

##
## SSL Virtual Host Context
##

<VirtualHost _default_:443>

#   General setup for the virtual host
DocumentRoot "C:/dev/tools/apache2/htdocs"
ServerName Bill.local.sbcs.com:443
ServerAdmin bill.rawlinson@sbcs.com
ErrorLog "C:/dev/tools/apache2/logs/error.log"
TransferLog "C:/dev/tools/apache2/logs/access.log"

#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on

#   SSL Cipher Suite:
#   List the ciphers that the client is permitted to negotiate.
#   See the mod_ssl documentation for a complete list.
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

#   Server Certificate:
#   Point SSLCertificateFile at a PEM encoded certificate.  If
#   the certificate is encrypted, then you will be prompted for a
#   pass phrase.  Note that a kill -HUP will prompt again.  Keep
#   in mind that if you have both an RSA and a DSA certificate you
#   can configure both in parallel (to also allow the use of DSA
#   ciphers, etc.)
SSLCertificateFile "C:/dev/tools/apache2/conf/server.crt"
#SSLCertificateFile "C:/dev/tools/apache2/conf/server-dsa.crt"

#   Server Private Key:
#   If the key is not combined with the certificate, use this
#   directive to point at the key file.  Keep in mind that if
#   you've both a RSA and a DSA private key you can configure
#   both in parallel (to also allow the use of DSA ciphers, etc.)
SSLCertificateKeyFile "C:/dev/tools/apache2/conf/server.key"
#SSLCertificateKeyFile "C:/dev/tools/apache2/conf/server-dsa.key"

#   Server Certificate Chain:
#   Point SSLCertificateChainFile at a file containing the
#   concatenation of PEM encoded CA certificates which form the
#   certificate chain for the server certificate. Alternatively
#   the referenced file can be the same as SSLCertificateFile
#   when the CA certificates are directly appended to the server
#   certificate for convinience.
#SSLCertificateChainFile "C:/dev/tools/apache2/conf/server-ca.crt"

#   Certificate Authority (CA):
#   Set the CA certificate verification path where to find CA
#   certificates for client authentication or alternatively one
#   huge file containing all of them (file must be PEM encoded)
#   Note: Inside SSLCACertificatePath you need hash symlinks
#         to point to the certificate files. Use the provided
#         Makefile to update the hash symlinks after changes.
#SSLCACertificatePath "C:/dev/tools/apache2/conf/ssl.crt"
#SSLCACertificateFile "C:/dev/tools/apache2/conf/ssl.crt/ca-bundle.crt"

#   Certificate Revocation Lists (CRL):
#   Set the CA revocation path where to find CA CRLs for client
#   authentication or alternatively one huge file containing all
#   of them (file must be PEM encoded)
#   Note: Inside SSLCARevocationPath you need hash symlinks
#         to point to the certificate files. Use the provided
#         Makefile to update the hash symlinks after changes.
#SSLCARevocationPath "C:/dev/tools/apache2/conf/ssl.crl"
#SSLCARevocationFile "C:/dev/tools/apache2/conf/ssl.crl/ca-bundle.crl"

#   Client Authentication (Type):
#   Client certificate verification type and depth.  Types are
#   none, optional, require and optional_no_ca.  Depth is a
#   number which specifies how deeply to verify the certificate
#   issuer chain before deciding the certificate is not valid.
#SSLVerifyClient require
#SSLVerifyDepth  10

#   Access Control:
#   With SSLRequire you can do per-directory access control based
#   on arbitrary complex boolean expressions containing server
#   variable checks and other lookup directives.  The syntax is a
#   mixture between C and Perl.  See the mod_ssl documentation
#   for more details.
#<Location />
#SSLRequire (    %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \
#            and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
#            and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
#            and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
#            and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20       ) \
#           or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
#</Location>

#   SSL Engine Options:
#   Set various options for the SSL engine.
#   o FakeBasicAuth:
#     Translate the client X.509 into a Basic Authorisation.  This means that
#     the standard Auth/DBMAuth methods can be used for access control.  The
#     user name is the `one line' version of the client's X.509 certificate.
#     Note that no password is obtained from the user. Every entry in the user
#     file needs this password: `xxj31ZMTZzkVA'.
#   o ExportCertData:
#     This exports two additional environment variables: SSL_CLIENT_CERT and
#     SSL_SERVER_CERT. These contain the PEM-encoded certificates of the
#     server (always existing) and the client (only existing when client
#     authentication is used). This can be used to import the certificates
#     into CGI scripts.
#   o StdEnvVars:
#     This exports the standard SSL/TLS related `SSL_*' environment variables.
#     Per default this exportation is switched off for performance reasons,
#     because the extraction step is an expensive operation and is usually
#     useless for serving static content. So one usually enables the
#     exportation for CGI and SSI requests only.
#   o StrictRequire:
#     This denies access when "SSLRequireSSL" or "SSLRequire" applied even
#     under a "Satisfy any" situation, i.e. when it applies access is denied
#     and no other module can change it.
#   o OptRenegotiate:
#     This enables optimized SSL connection renegotiation handling when SSL
#     directives are used in per-directory context.
#SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
<FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
</FilesMatch>
<Directory "C:/dev/tools/apache2/cgi-bin">
    SSLOptions +StdEnvVars
</Directory>

#   SSL Protocol Adjustments:
#   The safe and default but still SSL/TLS standard compliant shutdown
#   approach is that mod_ssl sends the close notify alert but doesn't wait for
#   the close notify alert from client. When you need a different shutdown
#   approach you can use one of the following variables:
#   o ssl-unclean-shutdown:
#     This forces an unclean shutdown when the connection is closed, i.e. no
#     SSL close notify alert is send or allowed to received.  This violates
#     the SSL/TLS standard but is needed for some brain-dead browsers. Use
#     this when you receive I/O errors because of the standard approach where
#     mod_ssl sends the close notify alert.
#   o ssl-accurate-shutdown:
#     This forces an accurate shutdown when the connection is closed, i.e. a
#     SSL close notify alert is send and mod_ssl waits for the close notify
#     alert of the client. This is 100% SSL/TLS standard compliant, but in
#     practice often causes hanging connections with brain-dead browsers. Use
#     this only for browsers where you know that their SSL implementation
#     works correctly.
#   Notice: Most problems of broken clients are also related to the HTTP
#   keep-alive facility, so you usually additionally want to disable
#   keep-alive for those clients, too. Use variable "nokeepalive" for this.
#   Similarly, one has to force some clients to use HTTP/1.0 to workaround
#   their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
#   "force-response-1.0" for this.
BrowserMatch ".*MSIE.*" \
         nokeepalive ssl-unclean-shutdown \
         downgrade-1.0 force-response-1.0

#   Per-Server Logging:
#   The home of a custom SSL log file. Use this when you want a
#   compact non-error SSL logfile on a virtual host basis.
CustomLog "C:/dev/tools/apache2/logs/ssl_request.log" \
          "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

</VirtualHost>   

error.log
Code: Select all
[Sat Mar 06 14:50:05.571164 2021] [ssl:warn] [pid 15196:tid 500] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 14:50:05.690157 2021] [ssl:warn] [pid 15196:tid 500] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 14:50:09.673898 2021] [mpm_winnt:notice] [pid 15196:tid 500] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Sat Mar 06 14:50:09.673898 2021] [mpm_winnt:notice] [pid 15196:tid 500] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Sat Mar 06 14:50:09.673898 2021] [core:notice] [pid 15196:tid 500] AH00094: Command line: 'C:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sat Mar 06 14:50:09.708398 2021] [mpm_winnt:notice] [pid 15196:tid 500] AH00418: Parent: Created child process 2568
[Sat Mar 06 14:50:10.989985 2021] [ssl:warn] [pid 2568:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 14:50:11.106324 2021] [ssl:warn] [pid 2568:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 14:50:11.171271 2021] [mpm_winnt:notice] [pid 2568:tid 576] AH00354: Child: Starting 150 worker threads.
[Sat Mar 06 15:02:41.039298 2021] [ssl:warn] [pid 14708:tid 472] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 15:02:41.209028 2021] [ssl:warn] [pid 14708:tid 472] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 15:02:41.404354 2021] [mpm_winnt:notice] [pid 14708:tid 472] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Sat Mar 06 15:02:41.404354 2021] [mpm_winnt:notice] [pid 14708:tid 472] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Sat Mar 06 15:02:41.404354 2021] [core:notice] [pid 14708:tid 472] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sat Mar 06 15:02:41.424618 2021] [mpm_winnt:notice] [pid 14708:tid 472] AH00418: Parent: Created child process 14392
[Sat Mar 06 15:02:44.024313 2021] [ssl:warn] [pid 14392:tid 532] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 15:02:44.244711 2021] [ssl:warn] [pid 14392:tid 532] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 15:02:44.349521 2021] [mpm_winnt:notice] [pid 14392:tid 532] AH00354: Child: Starting 150 worker threads.
[Sat Mar 06 16:05:23.162813 2021] [ssl:warn] [pid 16800:tid 528] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 16:05:23.419955 2021] [ssl:warn] [pid 16800:tid 528] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 16:05:24.034864 2021] [mpm_winnt:notice] [pid 16800:tid 528] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Sat Mar 06 16:05:24.034864 2021] [mpm_winnt:notice] [pid 16800:tid 528] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Sat Mar 06 16:05:24.034864 2021] [core:notice] [pid 16800:tid 528] AH00094: Command line: 'C:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sat Mar 06 16:05:24.076295 2021] [mpm_winnt:notice] [pid 16800:tid 528] AH00418: Parent: Created child process 6452
[Sat Mar 06 16:05:27.139000 2021] [ssl:warn] [pid 6452:tid 632] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 16:05:27.367347 2021] [ssl:warn] [pid 6452:tid 632] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 16:05:27.494444 2021] [mpm_winnt:notice] [pid 6452:tid 632] AH00354: Child: Starting 150 worker threads.
[Sat Mar 06 16:12:32.778672 2021] [core:error] [pid 6452:tid 1852] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13367] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=Special:%E7%94%A8%E6%88%B7%E7%99%BB%E5%BD%95&returnto=%E9%A6%96%E9%A1%B5
[Sat Mar 06 16:17:41.353307 2021] [core:error] [pid 6452:tid 1852] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13533] AH00127: Cannot map GET /wiki/index.php/ij:K HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=ij:K&action=edit&redlink=1
[Sat Mar 06 16:18:08.449034 2021] [core:error] [pid 6452:tid 1852] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13556] AH00127: Cannot map GET /wiki/index.php/Special:ChangeContentModel/ij:K HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=ij:K&action=info
[Sat Mar 06 16:24:33.268526 2021] [core:error] [pid 6452:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13727] AH00127: Cannot map GET /wiki/index.php/test:S HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=test:S&action=edit&redlink=1
[Sat Mar 06 16:25:37.634815 2021] [core:error] [pid 6452:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13790] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=test:S&action=delete
[Sat Mar 06 16:26:51.124783 2021] [core:error] [pid 6452:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13817] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210306082539&isAnon=false&action=render HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Sat Mar 06 16:26:51.193322 2021] [php:error] [pid 6452:tid 1844] [client 127.0.0.1:13817] PHP Fatal error:  Uncaught Error: Undefined constant "NS_FOO" in C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php:161\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once()\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#3 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php on line 161, referer: http://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Sat Mar 06 16:26:56.035056 2021] [php:error] [pid 6452:tid 1844] [client 127.0.0.1:13818] PHP Fatal error:  Uncaught Error: Undefined constant "NS_FOO" in C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php:161\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once()\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#3 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php on line 161, referer: http://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Sat Mar 06 16:28:26.874273 2021] [core:error] [pid 6452:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13875] AH00127: Cannot map GET /wiki/index.php/test:Frgstdn HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=Special:UserLogout&returnto=test%3AFrgstdn&returntoquery=action%3Dedit%26redlink%3D1
[Sat Mar 06 16:29:05.191259 2021] [core:error] [pid 6452:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13897] AH00127: Cannot map GET /wiki/index.php/test:Frgstdn HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=Special:UserLogin&returnto=test%3AFrgstdn
[Sat Mar 06 16:29:14.777467 2021] [core:error] [pid 6452:tid 1860] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:13915] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/test:Frgstdn
[Sun Mar 07 09:09:57.159156 2021] [ssl:warn] [pid 4420:tid 620] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 09:09:57.298338 2021] [core:warn] [pid 4420:tid 620] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Sun Mar 07 09:09:57.300367 2021] [ssl:warn] [pid 4420:tid 620] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 09:09:57.471881 2021] [mpm_winnt:notice] [pid 4420:tid 620] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Sun Mar 07 09:09:57.471881 2021] [mpm_winnt:notice] [pid 4420:tid 620] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Sun Mar 07 09:09:57.471881 2021] [core:notice] [pid 4420:tid 620] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sun Mar 07 09:09:57.482026 2021] [mpm_winnt:notice] [pid 4420:tid 620] AH00418: Parent: Created child process 11384
[Sun Mar 07 09:09:58.715569 2021] [ssl:warn] [pid 11384:tid 588] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 09:09:58.847098 2021] [ssl:warn] [pid 11384:tid 588] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 09:09:58.915919 2021] [mpm_winnt:notice] [pid 11384:tid 588] AH00354: Child: Starting 150 worker threads.
[Sun Mar 07 09:57:50.256509 2021] [php:error] [pid 11384:tid 1828] [client ::1:1196] script 'C:/xampp/apps/mediawiki/htdocs/update.php' not found or unable to stat
[Sun Mar 07 11:43:07.493768 2021] [php:error] [pid 11384:tid 1828] [client ::1:11061] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:44:26.933380 2021] [php:error] [pid 11384:tid 1844] [client ::1:11087] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:44:28.993550 2021] [php:error] [pid 11384:tid 1844] [client ::1:11087] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:46:20.464131 2021] [php:error] [pid 11384:tid 1844] [client ::1:11098] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:46:23.583836 2021] [php:error] [pid 11384:tid 1844] [client ::1:11102] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:46:24.767667 2021] [php:error] [pid 11384:tid 1844] [client ::1:11102] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:48:24.390363 2021] [php:error] [pid 11384:tid 1844] [client ::1:11117] PHP Fatal error:  Uncaught Exception: Unable to open file C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json: filemtime(): stat failed for C:\\xampp\\apps\\mediawiki\\htdocs/extensions/CheckUser/extension.json in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php:177\nStack trace:\n#0 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\GlobalFunctions.php(51): ExtensionRegistry->queue('C:\\\\xampp\\\\apps\\\\m...')\n#1 C:\\xampp\\apps\\mediawiki\\htdocs\\LocalSettings.php(169): wfLoadExtension('CheckUser')\n#2 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\Setup.php(143): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#3 C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\WebStart.php(89): require_once('C:\\\\xampp\\\\apps\\\\m...')\n#4 C:\\xampp\\apps\\mediawiki\\htdocs\\index.php(44): require('C:\\\\xampp\\\\apps\\\\m...')\n#5 {main}\n  thrown in C:\\xampp\\apps\\mediawiki\\htdocs\\includes\\registration\\ExtensionRegistry.php on line 177
[Sun Mar 07 11:53:59.437868 2021] [core:error] [pid 11384:tid 1836] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11272] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Main_Page
[Sun Mar 07 11:54:13.938192 2021] [core:error] [pid 11384:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11286] AH00127: Cannot map GET /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:SpecialPages
[Sun Mar 07 11:54:32.957877 2021] [core:error] [pid 11384:tid 1836] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11297] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 11:55:13.983704 2021] [core:error] [pid 11384:tid 1836] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11330] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 11:55:21.602602 2021] [core:error] [pid 11384:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11335] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 11:55:32.172450 2021] [core:error] [pid 11384:tid 1836] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11340] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 11:59:43.601510 2021] [core:error] [pid 11384:tid 1836] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11475] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 12:00:01.188280 2021] [core:error] [pid 11384:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11496] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 12:00:12.814302 2021] [core:error] [pid 11384:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11501] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 12:00:26.766848 2021] [core:error] [pid 11384:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11505] AH00127: Cannot map GET /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:SpecialPages
[Sun Mar 07 12:00:46.273684 2021] [core:error] [pid 11384:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11520] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 12:03:00.948887 2021] [core:error] [pid 11384:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11547] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 12:03:17.259131 2021] [core:error] [pid 11384:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11552] AH00127: Cannot map GET /wiki/index.php/Special:UserRights HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:SpecialPages
[Sun Mar 07 12:03:41.427457 2021] [core:error] [pid 11384:tid 1828] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11581] AH00127: Cannot map POST /wiki/index.php/Special:UserRights HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=Special%3AUserRights&user=admin
[Sun Mar 07 12:03:43.529239 2021] [core:error] [pid 11384:tid 1832] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11580] AH00127: Cannot map GET /wiki/index.php/Special:UserRights/admin HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php?title=Special%3AUserRights&user=admin
[Sun Mar 07 12:03:58.479090 2021] [core:error] [pid 11384:tid 1828] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11603] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:UserRights/admin
[Sun Mar 07 12:04:10.093524 2021] [core:error] [pid 11384:tid 1832] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11611] AH00127: Cannot map GET /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:SpecialPages
[Sun Mar 07 12:04:19.868951 2021] [core:error] [pid 11384:tid 1828] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:11616] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Sun Mar 07 12:06:39.342141 2021] [ssl:warn] [pid 4132:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 12:06:39.513856 2021] [core:warn] [pid 4132:tid 512] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Sun Mar 07 12:06:39.521893 2021] [ssl:warn] [pid 4132:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 12:06:39.897497 2021] [mpm_winnt:notice] [pid 4132:tid 512] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Sun Mar 07 12:06:39.897497 2021] [mpm_winnt:notice] [pid 4132:tid 512] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Sun Mar 07 12:06:39.897497 2021] [core:notice] [pid 4132:tid 512] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sun Mar 07 12:06:39.907567 2021] [mpm_winnt:notice] [pid 4132:tid 512] AH00418: Parent: Created child process 4148
[Sun Mar 07 12:06:41.849510 2021] [ssl:warn] [pid 4148:tid 588] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 12:06:42.012914 2021] [ssl:warn] [pid 4148:tid 588] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Mar 07 12:06:42.154040 2021] [mpm_winnt:notice] [pid 4148:tid 588] AH00354: Child: Starting 150 worker threads.
[Wed Mar 10 18:56:14.615159 2021] [ssl:warn] [pid 13844:tid 508] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Mar 10 18:56:14.826791 2021] [core:warn] [pid 13844:tid 508] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Wed Mar 10 18:56:14.829131 2021] [ssl:warn] [pid 13844:tid 508] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Mar 10 18:56:15.308942 2021] [mpm_winnt:notice] [pid 13844:tid 508] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Wed Mar 10 18:56:15.308942 2021] [mpm_winnt:notice] [pid 13844:tid 508] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Wed Mar 10 18:56:15.308942 2021] [core:notice] [pid 13844:tid 508] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Wed Mar 10 18:56:15.329294 2021] [mpm_winnt:notice] [pid 13844:tid 508] AH00418: Parent: Created child process 5544
[Wed Mar 10 18:56:17.563796 2021] [ssl:warn] [pid 5544:tid 572] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Mar 10 18:56:17.789148 2021] [ssl:warn] [pid 5544:tid 572] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Wed Mar 10 18:56:17.917884 2021] [mpm_winnt:notice] [pid 5544:tid 572] AH00354: Child: Starting 150 worker threads.
[Wed Mar 10 18:57:06.185097 2021] [core:error] [pid 5544:tid 1840] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:10885] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Main_Page
[Wed Mar 10 18:57:18.378402 2021] [core:error] [pid 5544:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:10892] AH00127: Cannot map GET /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:SpecialPages
[Wed Mar 10 18:57:30.695719 2021] [core:error] [pid 5544:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:10902] AH00127: Cannot map POST /wiki/index.php/Special:CheckUser HTTP/1.1 to file, referer: http://127.0.0.1/wiki/index.php/Special:CheckUser
[Thu Mar 11 17:05:08.719943 2021] [ssl:warn] [pid 2536:tid 524] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 11 17:05:08.907207 2021] [core:warn] [pid 2536:tid 524] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Mar 11 17:05:08.914159 2021] [ssl:warn] [pid 2536:tid 524] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 11 17:05:09.303578 2021] [mpm_winnt:notice] [pid 2536:tid 524] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Thu Mar 11 17:05:09.303578 2021] [mpm_winnt:notice] [pid 2536:tid 524] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Thu Mar 11 17:05:09.303578 2021] [core:notice] [pid 2536:tid 524] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Thu Mar 11 17:05:09.320465 2021] [mpm_winnt:notice] [pid 2536:tid 524] AH00418: Parent: Created child process 8680
[Thu Mar 11 17:05:11.035631 2021] [ssl:warn] [pid 8680:tid 568] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 11 17:05:11.159382 2021] [ssl:warn] [pid 8680:tid 568] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 11 17:05:11.224943 2021] [mpm_winnt:notice] [pid 8680:tid 568] AH00354: Child: Starting 150 worker threads.
[Thu Mar 11 17:06:30.316125 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:1662] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Main_Page
[Thu Mar 11 17:12:28.097249 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:1856] AH00127: Cannot map GET /wiki/index.php/%27MediaWiki:Protect-level-saved HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=%27MediaWiki:Protect-level-saved&action=edit&redlink=1
[Thu Mar 11 17:12:40.308938 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:1872] AH00127: Cannot map GET /wiki/index.php/MediaWiki:Protect-level-saved HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/%27MediaWiki:Protect-level-saved
[Thu Mar 11 17:12:56.211733 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:1886] AH00127: Cannot map GET /wiki/index.php/MediaWiki:Protect-level-saved HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=MediaWiki:Protect-level-saved&action=edit
[Thu Mar 11 17:17:27.186940 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:1934] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Main_Page&action=protect
[Thu Mar 11 17:23:13.512731 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2244] AH00127: Cannot map GET /wiki/index.php/Special:UserRights HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:SpecialPages
[Thu Mar 11 17:23:31.583714 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2266] AH00127: Cannot map POST /wiki/index.php/Special:UserRights HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Special%3AUserRights&user=admin
[Thu Mar 11 17:23:32.703039 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2273] AH00127: Cannot map GET /wiki/index.php/Special:UserRights/admin HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Special%3AUserRights&user=admin
[Thu Mar 11 17:24:45.306883 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2317] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Special:Log&page=User%3AAdmin
[Thu Mar 11 17:24:55.943254 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2324] AH00127: Cannot map GET /wiki/index.php/Special:CheckUserLog HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:SpecialPages
[Thu Mar 11 17:25:00.132085 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2329] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Special:Log&page=User%3AAdmin
[Thu Mar 11 17:25:11.329003 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2340] AH00127: Cannot map GET /wiki/index.php/Special:Import HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:SpecialPages
[Thu Mar 11 17:40:06.036470 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2565] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Main_Page&action=history
[Thu Mar 11 17:40:13.591783 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2576] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:17.279399 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2586] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:20.972702 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2589] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:24.622221 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2592] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:28.306297 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2595] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:31.988423 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2598] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:35.645206 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2611] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:39.391324 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2616] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:43.095237 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2620] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:45.796305 2021] [core:error] [pid 8680:tid 1848] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2623] AH00127: Cannot map GET /wiki/index.php/ij:K HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 17:40:46.735323 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2626] AH00127: Cannot map GET /wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2&peek=1&from=20210311094006&isAnon=false&action=render HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:RecentChanges?hidebots=1&limit=50&days=7&enhanced=1&urlversion=2
[Thu Mar 11 21:05:01.865354 2021] [core:error] [pid 8680:tid 1844] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:2362] AH00127: Cannot map GET /wiki/index.php/Special:Contributions/Admin HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Main_Page&action=edit
[Fri Mar 12 16:52:03.909996 2021] [ssl:warn] [pid 9048:tid 560] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Mar 12 16:52:04.032428 2021] [core:warn] [pid 9048:tid 560] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Mar 12 16:52:04.032428 2021] [ssl:warn] [pid 9048:tid 560] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Mar 12 16:52:04.179604 2021] [mpm_winnt:notice] [pid 9048:tid 560] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Fri Mar 12 16:52:04.179604 2021] [mpm_winnt:notice] [pid 9048:tid 560] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Fri Mar 12 16:52:04.179604 2021] [core:notice] [pid 9048:tid 560] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Fri Mar 12 16:52:04.195200 2021] [mpm_winnt:notice] [pid 9048:tid 560] AH00418: Parent: Created child process 14644
[Fri Mar 12 16:52:05.338522 2021] [ssl:warn] [pid 14644:tid 572] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Mar 12 16:52:05.441131 2021] [ssl:warn] [pid 14644:tid 572] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Mar 12 16:52:05.492063 2021] [mpm_winnt:notice] [pid 14644:tid 572] AH00354: Child: Starting 150 worker threads.
[Fri Mar 12 16:52:54.961596 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14385] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Main_Page
[Fri Mar 12 16:52:55.748122 2021] [core:error] [pid 14644:tid 1824] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14388] AH00127: Cannot map GET /wiki/index.php/Special:SpecialPages HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Main_Page
[Fri Mar 12 16:53:17.350659 2021] [core:error] [pid 14644:tid 1824] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14400] AH00127: Cannot map GET /wiki/index.php/Special:ResetTokens HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:SpecialPages
[Fri Mar 12 16:53:31.104728 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14424] AH00127: Cannot map GET /wiki/index.php/Special:ResetTokens HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php?title=Special:UserLogin&returnto=Special%3AResetTokens&returntoquery=&warning=exception-nologin-text
[Fri Mar 12 16:53:52.501373 2021] [core:error] [pid 14644:tid 1824] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14438] AH00127: Cannot map GET /wiki/index.php/Special:Preferences HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:ResetTokens
[Fri Mar 12 16:54:08.191010 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14448] AH00127: Cannot map GET /wiki/index.php/Special:ConfirmEmail HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:Preferences
[Fri Mar 12 16:54:11.421868 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14451] AH00127: Cannot map POST /wiki/index.php/Special:ConfirmEmail HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:ConfirmEmail
[Fri Mar 12 16:54:24.498839 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14458] AH00127: Cannot map POST /wiki/index.php/Special:ConfirmEmail HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:ConfirmEmail
[Fri Mar 12 16:54:37.236773 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14463] AH00127: Cannot map POST /wiki/index.php/Special:ConfirmEmail HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:ConfirmEmail
[Fri Mar 12 17:12:31.114196 2021] [core:error] [pid 14644:tid 1816] (20024)The given path is misformatted or contained invalid characters: [client 127.0.0.1:14981] AH00127: Cannot map POST /wiki/index.php/Special:ConfirmEmail HTTP/1.1 to file, referer: https://127.0.0.1/wiki/index.php/Special:ConfirmEmail
[Thu Mar 18 17:03:44.647145 2021] [ssl:warn] [pid 6504:tid 644] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 18 17:03:45.412213 2021] [core:warn] [pid 6504:tid 644] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Mar 18 17:03:45.436161 2021] [ssl:warn] [pid 6504:tid 644] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 18 17:03:46.425163 2021] [mpm_winnt:notice] [pid 6504:tid 644] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/8.0.2 configured -- resuming normal operations
[Thu Mar 18 17:03:46.425163 2021] [mpm_winnt:notice] [pid 6504:tid 644] AH00456: Apache Lounge VS16 Server built: Oct  2 2020 11:45:39
[Thu Mar 18 17:03:46.425163 2021] [core:notice] [pid 6504:tid 644] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Thu Mar 18 17:03:46.461359 2021] [mpm_winnt:notice] [pid 6504:tid 644] AH00418: Parent: Created child process 4596
[Thu Mar 18 17:03:50.388530 2021] [ssl:warn] [pid 4596:tid 592] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 18 17:03:50.671637 2021] [ssl:warn] [pid 4596:tid 592] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Mar 18 17:03:50.871556 2021] [mpm_winnt:notice] [pid 4596:tid 592] AH00354: Child: Starting 150 worker threads.
impartial just
 
Posts: 1
Joined: 18. March 2021 11:20
XAMPP version: 3.2.4
Operating System: Windows

Re: error with ssl setting

Postby Nobbie » 19. March 2021 20:15

Obviously you have problem with mediawiki. I think you have at least a bad configuration problem, all errors relate to wrong redirects. Thats not a Xampp issue, ask in mediawiki support.
Nobbie
 
Posts: 13183
Joined: 09. March 2008 13:04


Return to XAMPP for Windows

Who is online

Users browsing this forum: No registered users and 115 guests