在使用会话时xampp上可能导致ERR_CONNECTION_RESET错误的原因

时间:2016-01-10 18:47:56

标签: php windows apache session xampp

我的xampp(Windows)存在问题,我的文件中有session_start();,但它就像请求下载...

当我尝试使用localhost/folder/index.php访问页面时,它可以正常工作,但是当我尝试时 external ip/folder/index.php127.0.0.1/folder/index.php[::1]/folder/index.php它只是放弃了连接(尝试了多个浏览器和chrome给ERR_CONNECTION_RESET ...我无能为力,我迫切需要帮助...... 当我从文件中删除session_start();时,它工作正常... 当我使用session_start();创建新文件时,它仍无效...

一些error.log行

[Sun Jan 10 19:33:45.805036 2016] [:error] [pid 3176:tid 1888] [client myip:50143] script 'C:/xampp/htdocs/h3x1t/i\xc2\xb4\xc2\xb4.php' not found or unable to stat
[Sun Jan 10 20:02:40.330149 2016] [ssl:warn] [pid 24588:tid 552] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:02:40.373728 2016] [mpm_winnt:notice] [pid 24588:tid 552] AH00354: Child: Starting 150 worker threads.
[Sun Jan 10 20:04:25.949925 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00428: Parent: child process 24588 exited with status 3221225477 -- Restarting.
[Sun Jan 10 20:04:26.568746 2016] [ssl:warn] [pid 29460:tid 564] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:04:26.615700 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00455: Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.1 configured -- resuming normal operations
[Sun Jan 10 20:04:26.615700 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00456: Apache Lounge VC14 Server built: Dec  9 2015 10:17:39
[Sun Jan 10 20:04:26.615700 2016] [core:notice] [pid 29460:tid 564] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sun Jan 10 20:04:26.622190 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00418: Parent: Created child process 26200
[Sun Jan 10 20:04:27.302705 2016] [ssl:warn] [pid 26200:tid 560] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:04:27.475560 2016] [ssl:warn] [pid 26200:tid 560] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:04:27.518770 2016] [mpm_winnt:notice] [pid 26200:tid 560] AH00354: Child: Starting 150 worker threads.
[Sun Jan 10 20:04:28.693791 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00428: Parent: child process 26200 exited with status 3221225477 -- Restarting.
[Sun Jan 10 20:04:29.379751 2016] [ssl:warn] [pid 29460:tid 564] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:04:29.425188 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00455: Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.1 configured -- resuming normal operations
[Sun Jan 10 20:04:29.425188 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00456: Apache Lounge VC14 Server built: Dec  9 2015 10:17:39
[Sun Jan 10 20:04:29.425188 2016] [core:notice] [pid 29460:tid 564] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Sun Jan 10 20:04:29.430191 2016] [mpm_winnt:notice] [pid 29460:tid 564] AH00418: Parent: Created child process 30668
[Sun Jan 10 20:04:30.081357 2016] [ssl:warn] [pid 30668:tid 608] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:04:30.254197 2016] [ssl:warn] [pid 30668:tid 608] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Sun Jan 10 20:04:30.297173 2016] [mpm_winnt:notice] [pid 30668:tid 608] AH00354: Child: Starting 150 worker threads.
[Sun Jan 10 20:06:24.444492 2016] [:error] [pid 30668:tid 1896] [client ::1:60405] script 'C:/xampp/htdocs/h3x1t/contracts.php' not found or unable to stat, referer: http://localhost/h3x1t/index

3 个答案:

答案 0 :(得分:7)

我有PHP7的XAMPP和同样的问题......

我在php.ini中改了: session.use_only_cookies从0到1,所有作品。

答案 1 :(得分:4)

我使用较旧的PHP版本重新安装了xampp ...

看起来罪魁祸首是PHP 7.0.0

编辑:找到可能与之相关的东西 https://community.apachefriends.org/viewtopic.php?p=248070&sid=0b7559defe15317f41699d1ce9194e3f

EDIT2:找到了这个(bitnami开发者)

  

我们一直在检查XAMPP的配置,我们发现了   问题与您可以找到的use_only_cookies变量有关   php.ini文件的Session部分。 Apache会崩溃   Session的section中的use_only_cookies变量设置为0和   如果设置为1,一切都很好。

     

http://php.net/manual/en/session.configuration.php#ini.session.use-only-cookies

     

我们还检查了use_strict_mode应该设置为1。

     

https://wiki.php.net/rfc/strict_sessions   http://php.net/manual/en/session.configuration.php#ini.session.use-strict-mode

     

我们将在PHP 7的下一版XAMPP中包含这些更改。   我们正在使用7.0.2版本构建安装程序,我们将会这样做   尽快释放它们。

答案 2 :(得分:2)

就我而言,Windows事件查看器显示了更多有用的数据。它指出VCRUNTIME140.dll不断崩溃Apache(导致控制台显示ERR_CONNECTION_RESET),所以我将库更新为https://www.microsoft.com/en-us/download/confirmation.aspx?id=52685 - 然后,它显示错误模块为php7ts.dll - 所以我已按照说明http://ibraransari.blogspot.com/2017/01/how-to-solve-apache-crash-fault-module.html我很高兴。