6

wampPCにサーバーをインストールしました。次に、zend アプリケーションをインストールしました。ディレクトリ内のmedaffiliate.comディレクトリに配置しましたwww。そのディレクトリにアクセスすると、localhost/medaffiliate.comそれだけで表示されます

 The connection was reset

https://serverfault.com/questions/74313/what-c​​ould-cause-an-101-error-in-wamp-under-windows- 7 のような多くの回答を経験しました

彼らは皆、閉鎖について言っていmysql_close($connect);ます。私のApacheエラーログは私を示しています

     [Sat Jul 21 18:35:45 2012] [notice] Parent: child process exited with status 255 -- Restarting.
[Sat Jul 21 18:35:45 2012] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations
[Sat Jul 21 18:35:45 2012] [notice] Server built: Oct 24 2010 13:33:15
[Sat Jul 21 18:35:45 2012] [notice] Parent: Created child process 6768
[Sat Jul 21 18:35:45 2012] [notice] Child 6768: Child process is running
[Sat Jul 21 18:35:45 2012] [notice] Child 6768: Acquired the start mutex.
[Sat Jul 21 18:35:45 2012] [notice] Child 6768: Starting 64 worker threads.
[Sat Jul 21 18:35:45 2012] [notice] Child 6768: Starting thread to listen on port 80.
[Sat Jul 21 18:36:21 2012] [notice] Parent: child process exited with status 255 -- Restarting.
[Sat Jul 21 18:36:21 2012] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations
[Sat Jul 21 18:36:21 2012] [notice] Server built: Oct 24 2010 13:33:15
[Sat Jul 21 18:36:21 2012] [notice] Parent: Created child process 1140
[Sat Jul 21 18:36:21 2012] [notice] Child 1140: Child process is running
[Sat Jul 21 18:36:21 2012] [notice] Child 1140: Acquired the start mutex.
[Sat Jul 21 18:36:21 2012] [notice] Child 1140: Starting 64 worker threads.
[Sat Jul 21 18:36:21 2012] [notice] Child 1140: Starting thread to listen on port 80.
[Sat Jul 21 18:40:39 2012] [notice] Parent: child process exited with status 255 -- Restarting.
[Sat Jul 21 18:40:39 2012] [notice] Apache/2.2.17 (Win32) PHP/5.3.4 configured -- resuming normal operations
[Sat Jul 21 18:40:39 2012] [notice] Server built: Oct 24 2010 13:33:15
[Sat Jul 21 18:40:39 2012] [notice] Parent: Created child process 7892
[Sat Jul 21 18:40:39 2012] [notice] Child 7892: Child process is running
[Sat Jul 21 18:40:39 2012] [notice] Child 7892: Acquired the start mutex.
[Sat Jul 21 18:40:39 2012] [notice] Child 7892: Starting 64 worker threads.
[Sat Jul 21 18:40:39 2012] [notice] Child 7892: Starting thread to listen on port 80.

データベースとの接続を作成するときにこのような問題に直面している他の人を見つけました。www ディレクトリに別のプロジェクトを作成し、データベースに接続しました。それは働いています。しかし、私のプロジェクトではありません。

私は使っているos:window 7. Apache : 2.2.17, PHP:5.3.4, Mysql : 5.1.53

4

2 に答える 2

16

タイムアウトとメモリ制限を増やしても修正できない同様の問題がありました。

何時間にもわたる試行錯誤の後、私は最終的に別の投稿https://drupal.org/node/1597820に出くわし、問題を解決しました。

httpd.conf の末尾に以下を追加して、Apache スタック サイズを 8MB に増やします。

<IfModule mpm_winnt_module>
   ThreadStackSize 8388608
</IfModule>
于 2016-06-06T22:38:46.650 に答える
4

私はこのエラーを何度も経験しており、解決策は apache バイナリ (apache.exe または httpd.exe) スタック サイズを増やすことでした。そのためには Visual Studio が必要ですが、私が行ったように試用版を使用できます。オンにする必要さえありません。コマンドは次のとおりです。

C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64>editbin /STACK:8000000 "c:\Program Files (x86)\WAMP\apache\bin\apache.exe"

もちろん、環境に応じて上記のパスを変更してください。

Visual Studio ディレクトリ VC/binary/ には、editbin.exe という名前のユーティリティがいくつかあります。プラットフォームに適したものを使用するか、動作するまで 1 つずつ試してください (私が行ったように)。

于 2013-01-05T16:22:15.030 に答える